/* ========================================
   Hot Destinations Page Styles
   ======================================== */

.hot-destinations-main {
    background: var(--neutral-0);
}

/* Page Header */
.destinations-header-section {
    padding: 48px 0 24px;
}

.page-title {
    font-family: var(--font-noto-sans);
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -0.576px;
    color: #654597;
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
}

/* Destination Hero Cards Grid */
.destinations-hero-section {
    padding: 0 0 48px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.destination-hero-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-hero-card:hover {
    transform: translateY(-4px);
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(40, 48, 63, 0.6) 100%);
    pointer-events: none;
}

.card-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-title {
    font-family: var(--font-noto-sans);
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.144px;
    color: var(--neutral-0);
    max-width: 211px;
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
}

.card-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* Hotels Section */
.hotels-section {
    padding: 48px 0 80px;
}

.hotels-section .section-title {
    font-family: var(--font-noto-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: var(--neutral-600);
    margin-bottom: 24px;
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
}

/* Destination Tabs */
.destination-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid transparent;
}

.destination-tab {
    flex: 1;
    padding: 16px 0;
    font-family: var(--font-noto-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--neutral-500);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
    position: relative;
    margin-bottom: -2px;
}

.destination-tab:hover {
    color: var(--primary-blue);
}

.destination-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Hotel Card */
.hotel-card {
    background: var(--neutral-0);
    border: 0.5px solid var(--neutral-400);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    /* transform: translateY(-4px); */
       border-color: #6457E6 !important;

}

.hotel-image-wrapper {
    position: relative;
    width: 100%;
    height: 186px;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.heart-icon {
    width: 20px;
    height: 20px;
}

.hotel-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-name {
    font-family: var(--font-noto-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: var(--neutral-500);
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
    margin: 0;
}

.hotel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating,
.location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-icon,
.location-icon {
    width: 16px;
    height: 16px;
}

.rating-value,
.location-name {
    font-family: var(--font-noto-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--neutral-500);
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
}

.hotel-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding-top: 12px;
}

.starting-from {
    font-family: var(--font-noto-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--neutral-400);
    margin: 0 0 4px 0;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.current-price {
    font-family: var(--font-noto-sans);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-purple);
    font-variation-settings: 'CTGR' 0, 'wdth' 100;
}

.current-price .currency {
    color: var(--primary-purple);
}

.old-price {
    position: relative;
    font-family: var(--font-noto-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--neutral-400);
}

.strikethrough {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.5px;
    background: var(--neutral-400);
}

.per-night {
    font-family: var(--font-noto-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--neutral-500);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hotels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .destination-tabs {
        flex-wrap: wrap;
    }

    .destination-tab {
        flex: 0 1 auto;
        min-width: 100px;
    }

    .page-title {
        font-size: 28px;
        line-height: 36px;
    }
}


