/* Featured Deals Section - Homepage Tour Cards */
.btc-featured-deals {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.btc-featured-deals__title {
    font-size: 1.55rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 32px;
    text-align: left;
}

/* Scroll Container */
.btc-featured-deals__scroll-container {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.btc-featured-deals__scroll-container::-webkit-scrollbar {
    height: 8px;
}

.btc-featured-deals__scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.btc-featured-deals__scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.btc-featured-deals__scroll-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.btc-featured-deals__track {
    display: flex;
    gap: 24px;
    padding-bottom: 16px;
    padding-top: 4px;
    align-items: stretch;
}

/* Card Styles - Light border, no shadow */
.btc-featured-deals__card {
    flex: 0 0 440px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btc-featured-deals__card:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Image Section - With internal padding and rounded corners */
.btc-featured-deals__image-wrapper {
    position: relative;
    padding: 12px 12px 0 12px;
}

.btc-private-tour__image,
.btc-featured-deals__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px !important;
    transition: transform 0.3s ease;

}


/* Badges - Positioned over image, location left, others right */
.btc-featured-deals__badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.btc-featured-deals__badges-left {
    display: flex;
    gap: 8px;
}

.btc-featured-deals__badges-right {
    display: flex;
    gap: 8px;
}

.btc-featured-deals__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.btc-featured-deals__badge svg {
    flex-shrink: 0;
}

/* Location Badge - Green icon */
.btc-featured-deals__badge--location {
    background: #ffffff;
    border-color: #e7faf1;
    color: #005DBC;
    font-size: 14px;
    font-weight: 600;
}

.btc-featured-deals__badge--location svg {
    color: #1CB47C;
}

/* Discount Badge - Yellow/orange icon with border */
.btc-featured-deals__badge--discount {
    background: #fff;
    border-color: #e2e8f0;
    color: #1a1a1a;
    border-radius: 8px;
}

.btc-featured-deals__badge--discount svg {
    color: #f59e0b;
}

/* Most Popular Badge - Red/coral icon */
.btc-featured-deals__badge--popular {
    background: #fff;
    border-color: #e2e8f0;
    color: #1a1a1a;
    border-radius: 8px;
}

.btc-featured-deals__badge--popular svg {
    color: #ef4444;
}

/* Content Section */
.btc-featured-deals__content {
    padding: 20px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.btc-featured-deals__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.btc-featured-deals__name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btc-featured-deals__arrow {
    flex-shrink: 0;
    color: #1a1a1a;
    transition: transform 0.2s ease;
}

.btc-featured-deals__card:hover .btc-featured-deals__arrow {
    transform: translateX(1px);
}

.btc-featured-deals__location {
    font-size: 0.9rem;
    color: #989898;
    margin: 0 0 16px 0;
    font-weight: 400;
}

/* Amenities - Single row with checkmarks */
.btc-featured-deals__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.btc-featured-deals__amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #475569;
}

.btc-featured-deals__amenity svg {
    color: #64748b;
    flex-shrink: 0;
}

/* Meta Section - Duration, Capacity, Price */
.btc-featured-deals__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.btc-featured-deals__meta-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btc-featured-deals__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #475569;
}

.btc-featured-deals__meta-item svg {
    flex-shrink: 0;
    color: #64748b;
}

.btc-featured-deals__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066cc;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .btc-featured-deals__meta {
        flex-direction: column;
        justify-content: flex-start;
        align-items: self-start;
    }

    .btc-featured-deals__badge--location {
        display: none;
    }

    .btc-featured-deals {
        padding: 40px 16px;
    }

    .btc-featured-deals__location {
        margin-bottom: 4px;
    }

    .btc-featured-deals__title {
        font-size: 1.5rem;
        margin-bottom: 24px;
        text-align: center;
    }

    .btc-featured-deals__scroll-container {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .btc-featured-deals__track {
        gap: 16px;
    }

    .btc-featured-deals__card {
        flex: 0 0 320px;
    }

    .btc-featured-deals__image {
        height: 220px;
    }

    .btc-featured-deals__content {
        padding: 16px 12px 20px 12px;
    }

    .btc-featured-deals__name {
        font-size: 1.1rem;
    }

    .btc-featured-deals__meta-left {
        gap: 8px;
    }

    .btc-featured-deals__meta-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btc-featured-deals__card {
        flex: 0 0 290px;
    }

    .btc-featured-deals__image-wrapper {
        padding: 8px 8px 0 8px;
    }

    .btc-featured-deals__image {
        height: 200px;
    }

    .btc-featured-deals__badges {
        top: 12px;
        left: 12px;
        right: 12px;
        gap: 6px;
    }

    .btc-featured-deals__badge {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .btc-featured-deals__amenities {
        gap: 10px;
        margin-bottom: 6px;
    }

    .btc-featured-deals__amenity {
        font-size: 0.8rem;
    }
}

/* =========================================
   Shared Section Header (Title + View All)
   ========================================= */
.btc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.btc-section-header .btc-featured-deals__title {
    margin-bottom: 0;
}

.btc-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #003066;
    /* Dark blue from design */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btc-view-all-btn:hover {
    background-color: #004085;
    color: #ffffff;
    transform: translateY(-1px);
}

.btc-view-all-btn svg {
    transition: transform 0.2s ease;
}

.btc-view-all-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .btc-section-header {
        margin-bottom: 24px;
    }

    .btc-view-all-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile View All Button Visibility */
.btc-section-footer-mobile {
    display: none;
    margin-top: 20px;
}

.btc-view-all-btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #003066;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
    width: 100%;
    justify-content: center;
}

.btc-view-all-btn-mobile:hover {
    background: #004085;
    color: #fff;
}

@media (max-width: 768px) {
    .btc-section-header .btc-view-all-btn {
        display: none !important;
    }

    .btc-section-footer-mobile {
        display: block;
    }
}