.destinations-page {
    background: linear-gradient(180deg, #f8f7fd 0%, #ffffff 45%);
}

.destinations-shell {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 16px;
}

.destinations-hero {
    background: url("https://enjoy-sim.b-cdn.net/assets/img/hero-destination-bg.png") center/cover no-repeat;
    padding: 72px 0 150px;
    position: relative;
}

.destinations-hero-header {
    text-align: center;
}

.destinations-hero-header h1 {
    color: #030a18;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
}

.destinations-hero-header p {
    color: #394561;
    margin-top: 14px;
}

.destinations-search-wrap {
    left: 50%;
    margin: 0 auto;
    max-width: 820px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    bottom: -36px;
    z-index: 15;
}

.destinations-search-wrap h2 {
    color: #6a2ac6;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.destinations-search-form {
    align-items: center;
    background: #fff;
    border: 1px solid #d4bef4;
    border-radius: 999px;
    display: flex;
    gap: 12px;
    padding: 8px 10px 8px 24px;
}

.destinations-search-form input {
    border: 0;
    color: #071739;
    flex: 1;
    font-size: 16px;
    outline: none;
}

.destinations-search-form button {
    align-items: center;
    background: #742eda;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.destinations-search-popup {
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 20;
}

.destinations-search-popup.hidden {
    display: none;
}

.destinations-search-popup-inner {
    background: #f9f9f9;
    border: 1px solid #e7e4ef;
    border-radius: 24px;
    margin-top: 16px;
    max-height: 320px;
    overflow-y: auto;
    padding: 16px;
    text-align: left;
}

.destinations-search-popup-title {
    color: #742eda;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.destinations-popular {
    margin-top: 88px;
}

.destinations-section-head h2 {
    color: #030a18;
    font-size: 34px;
    font-weight: 600;
}

.destinations-grid {
    display: grid;
    gap: 20px;
}

.destinations-grid-popular {
    grid-template-columns: repeat(1, minmax(0, 295px));
    justify-content: center;
    margin-top: 28px;
}

.destinations-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(34, 10, 68, 0.1);
    display: block;
    height: 295px;
    overflow: hidden;
    position: relative;
    width: 295px;
}

.destinations-card-badges {
    display: flex;
    gap: 8px;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
}

.destinations-badge {
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
}

.destinations-badge.is-hotspot {
    background: #f2f9ee;
    border: 1px solid #d5e9c6;
    color: #599827;
}

.destinations-badge.is-5g {
    background: #f1eafb;
    border: 1px solid #d4bef4;
    color: #742eda;
}

.destinations-card-cover {
    display: block;
    height: 218px;
    object-fit: cover;
    width: 100%;
}

.destinations-card-body {
    align-items: center;
    display: flex;
    gap: 12px;
    min-height: 77px;
    padding: 14px 16px;
}

.destinations-card-icon {
    height: 32px;
    object-fit: cover;
    width: 32px;
}

.destinations-card-title {
    color: #150619;
    flex: 1;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.destinations-card-arrow {
    align-items: center;
    background: #f1eafb;
    border-radius: 999px;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.destinations-all {
    margin: 56px 0 64px;
}

.destinations-grid-all {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.destinations-list-item {
    align-items: center;
    background: #e6e8eb;
    border-radius: 16px;
    color: #150619;
    display: flex;
    gap: 12px;
    padding: 16px;
    transition: background-color 0.2s ease;
}

.destinations-list-item:hover {
    background: #d6d9dd;
}

.destinations-list-item-icon {
    border-radius: 50%;
    height: 36px;
    object-fit: cover;
    width: 36px;
}

.destinations-list-item-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.destinations-list-item-text small {
    color: #2f3442;
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

.destinations-list-item-arrow {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

@media (min-width: 768px) {
    .destinations-shell {
        padding: 0 24px;
    }

    .destinations-grid-popular {
        grid-template-columns: repeat(2, minmax(0, 295px));
    }

    .destinations-grid-all {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .destinations-hero-header h1 {
        font-size: 56px;
    }

    .destinations-grid-popular {
        grid-template-columns: repeat(4, minmax(0, 295px));
    }

    .destinations-grid-all {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .destinations-hero {
        padding: 48px 0 138px;
    }

    .destinations-search-wrap {
        bottom: -30px;
    }

    .destinations-search-wrap h2 {
        font-size: 24px;
    }

    .destinations-search-form {
        padding-left: 14px;
    }

    .destinations-search-form button {
        height: 44px;
        width: 44px;
    }

    .destinations-popular {
        margin-top: 74px;
    }

    .destinations-card {
        height: auto;
        width: 100%;
    }
}
