:root {
    --primary-color: #000000;
    --text-color: #333333;
    --white: #ffffff;
    --orange-badge: #FF9900;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header */
.main-header {
    background: var(--white);
    position: relative;
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-right: -8px;
    /* Tweak spacing */
}

.logo-icon svg {
    width: 38px;
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-dubai {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-tickets {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.8px;
    color: var(--primary-color);
    margin-top: 2px;
}

.badge {
    background: linear-gradient(90deg, #FFAA00 0%, #FFD700 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.9;
    box-shadow: 0 2px 5px rgba(255, 165, 0, 0.3);
}

.badge-count {
    font-size: 15px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.badge-label {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
}

.divider {
    height: 15px;
    width: 1px;
    background: #ddd;
}

.lang-currency {
    text-decoration: none;
    color: var(--text-color);
}

.main-nav {
    border-top: 1px solid #f0f0f0;
    padding: 0 5%;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    padding: 15px 0;
    display: block;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Mega Menu Styles */
.has-dropdown {
    position: relative;
}

.main-nav .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    flex-direction: column;
    gap: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.has-dropdown:hover .mega-menu {
    display: flex;
}

.mega-menu>li {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.mega-menu>li:last-child {
    border-bottom: none;
}

.mega-menu>li>a {
    padding: 16px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.mega-menu>li>a:hover {
    background: #fafafa;
    color: var(--primary-color);
}

.chevron {
    color: #999;
    font-size: 18px;
    margin-left: 20px;
    transition: transform 0.2s ease;
}

.mega-menu>li>a:hover .chevron {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* Submenu Panel Styles */
.has-submenu {
    position: relative;
}

.submenu-panel {
    display: none;
    position: absolute;
    left: 100%;
    top: -8px;
    background: white;
    min-width: 660px;
    max-width: 660px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-left: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.has-submenu:hover>.submenu-panel {
    display: flex;
}

/* Product Mini Card Styles */
.product-mini-card {
    display: flex;
    flex-direction: column;
    width: 195px;
    padding: 0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    overflow: hidden;
    background: white;
    box-sizing: border-box;
}

.product-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.product-mini-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-card-info {
    padding: 14px;
    flex: 1;
}

.mini-card-info h4 {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.mini-card-info p {
    margin: 0;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    margin-right: 5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align text to bottom lefftish */
    padding: 0 5% 60px 5%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Ensures video covers the area */
}

/* Use a simple overlay to ensure text readability if needed, though the ref looks clean */
.hero-overlay {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: -1; */
}

.hero-content {
    color: white;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 5px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-content h3 {
    font-size: 32px;
    font-weight: 600;
    opacity: 0.9;
}

/* YouTube Iframe Fixes */
#player {
    width: 100%;
    height: 100%;
}

/* Top Attractions Section */
.top-attractions {
    padding: 60px 0;
    background: #fdfbff;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #b000b0;
    background: linear-gradient(90deg, #dd00dd 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.see-all {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.nav-btn:hover {
    border-color: #ddd;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.attractions-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    /* Space for shadow/scroll */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.attractions-grid::-webkit-scrollbar {
    display: none;
}

.attraction-card {
    flex: 0 0 calc(20% - 16px);
    /* 5 cards per view approx */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.attraction-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.card-content p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .attraction-card {
        flex: 0 0 calc(25% - 15px);
        /* 4 cards */
    }
}

@media (max-width: 900px) {
    .attraction-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 cards */
    }
}

@media (max-width: 600px) {
    .attraction-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 cards */
    }
}

/* Deals Section */
.deals-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Add some coin decorations (CSS placeholders if pngs missing) */
.deals-section::before,
.deals-section::after {
    content: '$';
    position: absolute;
    font-size: 80px;
    font-weight: bold;
    color: rgba(255, 200, 0, 0.2);
    transform: rotate(15deg);
    z-index: 0;
    pointer-events: none;
    font-family: serif;
    background: gold;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.deals-section::before {
    top: 40px;
    left: -30px;
}

.deals-section::after {
    bottom: 40px;
    right: -30px;
    transform: rotate(-15deg);
}

.combos-section::before,
.combos-section::after {
    display: none;
    /* No coins for this section */
}

.deals-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.deals-grid::-webkit-scrollbar {
    display: none;
}

.deal-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards per row */
    text-decoration: none;
    color: #333;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid #f0f0f0;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.deal-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.deal-card:hover .deal-image img {
    transform: scale(1.05);
}

.deal-content {
    padding: 15px;
}

.deal-rating {
    font-size: 13px;
    color: #d0021b;
    /* Pinkish red from screenshot */
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.deal-rating .star {
    font-size: 14px;
}

.deal-rating .count {
    color: #999;
    font-weight: 400;
}

.deal-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    /* Fixed height for alignment */
}

.deal-price-block {
    display: flex;
    gap: 5px;
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.old-price {
    text-decoration: line-through;
}

.price-final {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.save-badge {
    background: #008a3c;
    /* Green badge */
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Responsive Deals */
@media (max-width: 1100px) {
    .deal-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 800px) {
    .deal-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 500px) {
    .deal-card {
        flex: 0 0 calc(85%);
        /* Peeking card */
    }
}

/* Categories Section */
.categories-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 calc(20% - 16px);
    /* 5 cards per row approx */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    /* Square cards as per screenshot */
    text-decoration: none;
    color: white;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.category-overlay h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1100px) {
    .category-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 800px) {
    .category-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 500px) {
    .category-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Layout adjustments for sections */
.explore-section {
    padding-top: 40px;
    /* Specific tweak for Explore section */
    padding-bottom: 20px;
    /* Reduced bottom padding since Theme Parks follows */
}

.theme-parks-section {
    padding-bottom: 20px;
    /* Reduced since Landmarks follows */
    padding-top: 0;
    /* Tighter layout with Explore section */
}

.landmarks-section {
    padding-bottom: 20px;
    /* Reduced since Water Parks follows */
    padding-top: 0;
}

.water-parks-section {
    padding-bottom: 20px;
    /* Reduced since Dinner Cruise follows */
    padding-top: 0;
}

.dinner-cruise-section {
    padding-bottom: 80px;
    padding-top: 0;
}

/* Explore Section */
.explore-section .section-title {
    color: #333;
    /* Dark text for this section */
    background: none;
    -webkit-text-fill-color: initial;
    margin-bottom: 20px;
    /* Space between "Explore Dubai" and "Tickets" */
}

.categories-section .section-title {
    color: #333;
    background: none;
    -webkit-text-fill-color: initial;
}

.subsection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 20px;
    font-weight: 700;
}

.see-all-link {
    color: #333;
    text-decoration: underline;
    font-size: 14px;
    margin-right: 15px;
    font-weight: 500;
}

.explore-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.explore-grid::-webkit-scrollbar {
    display: none;
}

.explore-card {
    flex: 0 0 calc(16.666% - 17px);
    /* 6 cards per row approx */
    text-decoration: none;
    color: #333;
}

.explore-image {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square images */
    border-radius: 8px;
    /* Slightly rounded */
    overflow: hidden;
    margin-bottom: 10px;
}

.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.explore-card:hover .explore-image img {
    transform: scale(1.05);
}

.explore-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .explore-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 800px) {
    .explore-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 500px) {
    .explore-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Guide Section */
.guide-section {
    padding-bottom: 80px;
}

.guide-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.guide-text-content {
    max-width: 600px;
}

.guide-text-content .section-title {
    margin-bottom: 15px;
}

.section-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.guide-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-guide-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    background: #fff;
    white-space: nowrap;
}

.view-guide-btn:hover {
    border-color: #333;
    background: #f9f9f9;
}

.guide-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 20px 5px;
    /* Bottom padding for shadow */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.guide-grid::-webkit-scrollbar {
    display: none;
}

.guide-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.guide-icon {
    margin-bottom: 20px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #333;
}

.guide-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 900px) {
    .guide-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .guide-header-wrapper {
        flex-direction: column;
    }

    .guide-controls {
        width: 100%;
        justify-content: space-between;
    }

    .guide-card {
        flex: 0 0 calc(85% - 10px);
        /* Suggest carousel on mobile */
    }
}

/* Footer Section */
footer {
    border-top: 1px solid #eee;
    padding: 60px 0 30px;
    margin-top: 40px;
    font-family: 'Roboto', sans-serif;
    /* Ensuring consistency */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
    /* Slightly wider */
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.logo-dubai {
    color: #000;
}

.logo-tickets {
    color: #000;
    margin-left: 4px;
}

.logo-divider {
    color: #ddd;
    margin: 0 10px;
    font-weight: 300;
    font-size: 24px;
}

.logo-headout {
    color: #8e44ad;
    font-family: 'Outfit', sans-serif;
}

.app-download-box {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 250px;
}

.qr-code {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.app-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #666;
}

.app-text strong {
    color: #333;
    font-size: 14px;
    margin-top: 2px;
}

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #8e44ad;
}

.footer-links svg {
    margin-right: 8px;
    color: #999;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-icons img {
    height: 24px;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
    color: #999;
    font-size: 12px;
}

.copyright {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #999;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #333;
}

@media (max-width: 800px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

/* Category Page Specific Styles */
.category-page-header {
    padding-top: 120px;
    /* Account for fixed header */
    padding-bottom: 40px;
    text-align: center;
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.category-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

/* Reuse existing card styles but remove carousel constrains if any */
.category-grid .explore-card {
    flex: unset;
    /* Remove flex sizing from carousel */
    min-width: unset;
    width: 100%;
}

/* Product Page Styles */
/* Product Page Sub-Nav */
.product-sub-nav {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 40px;
}

.product-sub-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #666;
}

.product-sub-nav li {
    cursor: pointer;
    font-weight: 500;
}

.product-sub-nav li:first-child {
    color: #333;
    font-weight: 600;
}

/* Product Split Hero (Text Left, Video Right) */
.product-split-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.product-hero-text {
    flex: 1;
    max-width: 500px;
}

.product-hero-media {
    flex: 1.2;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 320px;
}

.product-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-title-main {
    font-size: 38px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #E91E63;
    /* Pinkish color from screenshot */
    margin-bottom: 20px;
    font-weight: 600;
}

.product-hero-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .product-split-hero {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .product-hero-media {
        width: 100%;
    }
}

/* Original Product styles below adapted */
.product-breadcrumb {
    padding: 100px 0 20px;
    /* Account for fixed header */
    color: #666;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.product-breadcrumb span {
    margin: 0 5px;
    color: #ccc;
}

.product-content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.product-info-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}

.product-description {
    line-height: 1.6;
    color: #444;
    font-size: 16px;
    margin-bottom: 30px;
}

.product-highlights ul {
    list-style: none;
    padding: 0;
}

.product-highlights li {
    background: #f9f9f9;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.product-highlights li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

/* Sticky Booking Widget */
.booking-widget {
    background: white;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    /* Stick below header */
}

.widget-price {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.widget-price strong {
    font-size: 28px;
    color: #000;
    font-weight: 800;
}

.booking-btn {
    width: 100%;
    padding: 15px;
    background: #FFD700;
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
}

.booking-btn:hover {
    background: #ffcc00;
}

@media (max-width: 800px) {
    .product-content-layout {
        grid-template-columns: 1fr;
    }

    .product-hero {
        height: 250px;
    }
}

/* Ticket List/Options Section */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.ticket-card {
    display: flex;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
    gap: 24px;
}

.ticket-image-container {
    flex: 0 0 260px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    /* Ensure container has height. Flex usually stretches so height 100% of parent,
       but if parent height is auto, we might need min-height or aspect ratio.
       Let's stick to flex stretch but ensure images fill it. */
}

.ticket-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.ticket-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

.ticket-images img.active {
    opacity: 1;
    z-index: 2;
}

.ticket-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
}

.ticket-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    /* Enable clicking */
    transition: background 0.2s;
}

.ticket-dots span.active {
    background: white;
    transform: scale(1.2);
    /* Slight pop for active dot */
}

/* Carousel Navigation Arrows */
.ticket-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #333;
    z-index: 10;

    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0;
    /* Hidden by default, shown on container hover */
}

.ticket-image-container:hover .ticket-nav-arrow,
.horizontal-image-container:hover .ticket-nav-arrow {
    opacity: 1;
}

.ticket-nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: var(--primary-color, #E91E63);
}

.ticket-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.ticket-nav-arrow.prev {
    left: 12px;
}

.ticket-nav-arrow.next {
    right: 12px;
}

.ticket-details {

    flex: 1;
}

.ticket-tag {
    font-size: 12px;
    font-weight: 700;
    color: #DAA520;
    /* Gold/Mustard color */
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ticket-rating {
    font-size: 13px;
    color: #E91E63;
    font-weight: 600;
    margin-left: 5px;
}

.ticket-title {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 15px;
    color: #333;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.ticket-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.ticket-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #888;
}

.ticket-more-link {
    display: inline-block;
    color: #E91E63;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.ticket-pricing {
    flex: 0 0 220px;
    border-left: 1px solid #eee;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0 15px;
}

.price-value-discount {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.discount-badge {
    background-color: #008a3c;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.price-label {

    font-size: 12px;
    color: #666;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 5px 0 15px;
}

.check-availability-btn {
    background-color: #9C27B0;
    /* Purple color from screenshot */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    margin-bottom: 15px;
    transition: background 0.2s;
}

.check-availability-btn:hover {
    background-color: #7B1FA2;
}

.ticket-footer-info {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 900px) {
    .ticket-card {
        flex-direction: column;
    }

    .ticket-pricing {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .ticket-image-container {
        height: 200px;
    }
}

/* Top Attractions Section */
.top-attractions {
    padding: 60px 0 30px;
    background: #fff;
}

.attractions-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    padding-left: 5%;
    /* Align with container */
    padding-right: 5%;
}

.attractions-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari/Opera */
}

.attraction-card {
    flex: 0 0 220px;
    /* Fixed width per screenshot */
    height: 300px;
    /* Portrait aspect ratio */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.card-content h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

/* Section Header Styles if not already present */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5%;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Controls */
.section-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.see-all {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 500;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.nav-btn:hover {
    border-color: #ddd;
    background-color: #f9f9f9;
}

/* MOBILE NAVIGATION OVERRIDE */
@media (max-width: 768px) {
    body {
        background: #ffffff !important;
    }

    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        max-width: 280px !important;
        height: 100vh !important;
        background: #ffffff !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        padding: 80px 0 0 0 !important;
        overflow-y: auto !important;
        border-top: none !important;
        border: none !important;
        opacity: 1 !important;
    }

    .main-nav.active {
        right: 0 !important;
    }

    .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
        width: 100% !important;
    }

    .main-nav>ul>li {
        border-bottom: 1px solid #f0f0f0 !important;
        background: #ffffff !important;
        width: 100% !important;
    }

    .main-nav>ul>li>a {
        padding: 16px 20px !important;
        display: block !important;
        color: #333 !important;
        font-weight: 500 !important;
        background: #ffffff !important;
    }
}

/* Inclusions Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.modal-close {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #eee;
    color: #333;
}

.modal-body {
    padding: 24px;
}

.modal-section {
    margin-bottom: 24px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section h4 svg {
    color: var(--primary-color);
}

.modal-section ul {
    list-style: none;
    padding: 0;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
}

.modal-section li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.modal-section li:last-child {
    margin-bottom: 0;
}


/* Standalone Booking Page Styles */
.booking-page-body {
    background-color: #f5f7fa;
    /* Slightly darker for contrast */
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
}

.booking-page-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.booking-page-main {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.booking-page-header-row h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}


.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary-color);
}

.booking-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.booking-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-sidebar-col {
    width: 380px;
    flex-shrink: 0;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.total-price-display {
    font-size: 20px;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .booking-layout {
        flex-direction: column;
    }

    .booking-sidebar-col {
        width: 100%;
        order: -1;
    }

    .summary-card {
        top: 20px;
        position: static;
    }
}


/* Step Card Styles */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #eee;
    /* Softer border */
    margin-bottom: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
    /* Inactive state */
    pointer-events: none;
    /* Prevent clicks */
}

.step-card.active {
    opacity: 1;
    pointer-events: auto;
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    /* Nice shadow */
    transform: translateY(-2px);
}

.step-card.completed {
    opacity: 1;
    border-color: #4CAF50;
    /* Green border for done */
    background: #f9fff9;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    /* Remove margin if content is empty */
}

.step-card.active .step-header {
    margin-bottom: 20px;
    /* Restore margin when active */
}

.step-number {
    width: 32px;
    height: 32px;
    background: #eee;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-card.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-card.completed .step-number {
    background: #4CAF50;
    color: white;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex: 1;
}

.step-check-icon {
    font-size: 20px;
    color: #4CAF50;
    font-weight: 900;
}

/* Date Pills */
.date-selector-container h4,
.time-selector-container h4,
.pax-selector-container h4 {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.date-scroll-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 15px;
    /* Scrollbar space */
    scrollbar-width: thin;
}

.date-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.date-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.date-pill {
    min-width: 90px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.date-pill:hover {
    border-color: var(--primary-color);
    background: white;
}

.date-pill.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 68, 0, 0.3);
    /* Orange glow */
}

.date-pill .day-name {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.date-pill .day-num {
    font-size: 20px;
    font-weight: 800;
    margin: 4px 0;
}

.date-pill .price-tag {
    font-size: 11px;
    opacity: 0.8;
}

/* Time & Pax Controls */
.time-dropdown {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    background: white;
    /* Ensure white bg */
}

.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pax-row:last-child {
    border-bottom: none;
}

.pax-info h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.pax-info p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

.pax-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pax-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pax-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pax-count-display {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 20px;
    position: sticky;
    top: 90px;
}

.summary-header img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

.summary-header {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    align-items: center;
    height: auto;
}

.summary-title-block {
    padding: 0;
    background: none;
    color: #333;
    width: auto;
    margin-left: 0;
}

.summary-title-block h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: none;
    color: #333;
}

.summary-subtitle {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    min-height: 100px;
    padding: 0;
    border-bottom: none;
}

.summary-item {
    padding: 0;
    border: none;
    margin-bottom: 0;
}

.summary-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.summary-item-detail {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-item-detail.filled {
    color: #333;
}

.summary-item.completed .check-icon {
    color: #4CAF50;
    font-weight: bold;
}

.booking-action-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 15px;
}

.booking-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
}

/* =========================================
   MODAL STYLES (Added Fix)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    /* Increased z-index */
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex !important;
    /* Force display */
    opacity: 1;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.modal-section h4 svg {
    color: var(--primary-color);
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

.modal-section li svg {
    flex-shrink: 0;
    color: #10b981;
    /* Green check */
    margin-top: 2px;
}

.modal-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Final Fix for Inclusions Link */
.ticket-more-link {
    color: #E91E63 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.ticket-more-link:hover {
    color: #1d4ed8 !important;
    text-decoration: underline !important;
}

/* Horizontal Ticket Card - Headout Style */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.ticket-card-horizontal {
    display: flex;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ticket-card-horizontal:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.horizontal-image-container {
    width: 320px;
    min-height: 240px;
    position: relative;
    flex-shrink: 0;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.horizontal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ticket-card-horizontal:hover .horizontal-image-container img {
    transform: scale(1.05);
}

.horizontal-content {
    flex: 1;
    padding: 24px;
    border-right: 1px dashed #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.horizontal-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.horizontal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.horizontal-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bullet list style from screenshots */
.horizontal-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horizontal-highlights li {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.horizontal-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
}

/* Rating in Horizontal Card */
.h-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #db2777;
    /* Pink */
    margin-bottom: 8px;
}

.h-rating .star {
    fill: currentColor;
    width: 14px;
    height: 14px;
}

.h-review-count {
    color: #6b7280;
    font-weight: 400;
    text-decoration: underline;
}

.horizontal-pricing {
    width: 280px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.h-price-tag {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.h-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.h-price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 14px;
}

.h-price-current {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.h-discount-badge {
    background: #065f46;
    /* Dark Green */
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.btn-check-availability {
    background: #a855f7;
    /* Purple */
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 16px;
}

.btn-check-availability:hover {
    background: #9333ea;
}

.h-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
}

.h-feature svg {
    color: #6b7280;
    width: 16px;
    height: 16px;
}


/* Responsive */
@media (max-width: 900px) {
    .ticket-card-horizontal {
        flex-direction: column;
    }

    .horizontal-image-container {
        width: 100%;
        height: 220px;
    }

    .horizontal-content {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
    }

    .horizontal-pricing {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        background: #fdfdfd;
    }

    .h-price-wrapper {
        margin-bottom: 0;
    }

    .btn-check-availability {
        width: auto;
        margin-bottom: 0;
        padding: 10px 24px;
    }

    .h-features {
        display: none;
        /* Hide features on mobile to save space */
    }
}

/* ========================================
   REVIEWS SECTION STYLES
   ======================================== */

.reviews-section {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
}

.reviews-section .reviews-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.reviews-section .reviews-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.reviews-section .review-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff0f3;
    color: #e91e63;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.reviews-section .review-badge svg {
    fill: #e91e63;
}

.reviews-section .trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00b67a;
    font-size: 14px;
    font-weight: 500;
}

.reviews-section .trustpilot-rating .trustpilot-star {
    width: 18px;
    height: 18px;
    fill: #00b67a;
}

.reviews-section .reviews-nav {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.reviews-section .nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.reviews-section .nav-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.reviews-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px;
    transition: box-shadow 0.2s ease;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.user-avatar.yellow {
    background: linear-gradient(135deg, #f5af19, #f12711);
}

.user-avatar.green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.user-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 2px 0;
}

.user-location {
    font-size: 12px;
    color: #888;
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-stars span {
    color: #333;
    font-weight: 500;
    margin-left: 4px;
}

.review-images {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.review-images img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-ticket-info {
    font-size: 12px;
    color: #666;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.review-ticket-info strong {
    color: #333;
}

/* Mobile Reviews */
@media (max-width: 768px) {
    .reviews-section .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .reviews-section .reviews-nav {
        margin-left: 0;
    }

    .review-card {
        flex: 0 0 280px;
    }
}

/* --- All Attractions Page Redesign (Reference Style) --- */

/* Page Header & Breadcrumbs */
.category-page-header {
    background-color: #fdfbff;
    /* Gentle white/purple tint */
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumbs a {
    text-decoration: none;
    color: #6200ea;
    /* Purple accent */
}

.breadcrumbs span {
    margin: 0 5px;
    color: #ccc;
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    color: #6200ea;
    /* Strong purple matching Headout/Reference */
    margin: 0;
}

/* Filter Pills */
.filter-scroll-container {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 900;
    /* Below header z-index */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.filter-pills {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    /* Space for scrollbar if any */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.filter-pill:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.filter-pill.active {
    background: #fdfbff;
    border-color: #bd00ff;
    /* Active purple border */
    color: #6200ea;
}

.filter-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.7;
}

/* Section Title */
.attractions-section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #333;
}

/* V2 Attraction Card (Reference Style) 
   - Vertical Rectangle
   - Full Image
   - Gradient Overlay Bottom
   - Badge Top Left
   - Category Tag Bottom Left
   - Title & Price Bottom Left
*/
/* Carousel Header Layout */
.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 20px;
}

.carousel-nav-buttons {
    display: flex;
    gap: 10px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Scrollable Grid */
.attraction-grid-v2 {
    display: flex;
    gap: 20px;
    padding: 10px 5px 60px;
    /* Adjusted padding */
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    width: 100%;
}

.attraction-grid-v2::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.attraction-card-v2 {
    flex: 0 0 240px;
    /* Fixed width for carousel items */
    min-width: 240px;
}

/* Carousel Buttons */
.carousel-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: static;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    color: #333;
}

.carousel-btn:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.prev-btn {
    left: auto;
}

.next-btn {
    right: auto;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
        /* Hide buttons on mobile, allow touch scroll */
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}

.attraction-card-v2 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 2/3;
    /* Taller card */
    text-decoration: none;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.attraction-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card-v2:hover img {
    transform: scale(1.05);
    /* Slight zoom */
}

/* Gradients & Overlay */
.card-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0) 20%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

/* Ranking Badge (Top Left) (Use class rank-badge from before if available, else new style) */
.rank-badge-v2 {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #6200ea;
    /* Vivid Purple */
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    /* Slightly rounded square */
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Category Badge (Bottom Left, translucent) */
.category-badge-v2 {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Title & Price */
.card-info-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-info-v2 p {
    font-size: 14px;
    color: #eee;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .attraction-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .category-title {
        font-size: 24px;
    }

    .card-info-v2 h3 {
        font-size: 16px;
    }
}

/* Detailed Attraction Card (V3) for Category Sections */
.category-section {
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 5%;
}

.category-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.see-all-link {
    font-size: 14px;
    color: #555;
    text-decoration: underline;
    font-weight: 500;
}

.detailed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns by default */
    gap: 20px;
    padding: 0 5%;
}

/* Detailed Carousel (Horizontal Scroll) */
.detailed-carousel {
    display: flex;
    gap: 20px;
    padding: 10px 5px 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

.detailed-carousel::-webkit-scrollbar {
    display: none;
}

.detailed-carousel .detailed-card {
    flex: 0 0 280px;
    /* Fixed width for carousel */
    min-width: 280px;
    height: auto;
    /* Allow height to fit content */
}

.detailed-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    position: relative;
    height: 100%;
}

.detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.detailed-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    /* Slightly wider than square */
    overflow: hidden;
}

.detailed-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.detailed-card:hover .detailed-card-image img {
    transform: scale(1.05);
}

.detailed-rank {
    position: absolute;
    top: 0;
    left: 0;
    background: #8e2de2;
    /* Purple gradient start */
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.detailed-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detailed-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 42px;
    /* 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detailed-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.detailed-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #e91e63;
    /* Pink star/text */
    font-weight: 600;
}

.detailed-meta-divider {
    color: #ddd;
}

.detailed-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.detailed-tag {
    background: #f5f5f5;
    color: #555;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.detailed-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    /* Pushes button down */
}

.detailed-btn {
    background: #8E2DE2;
    /* Fallback */
    background: linear-gradient(90deg, #aa00ff 0%, #7e00ff 100%);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
    margin-top: auto;
    width: 100%;
    display: block;
}

.detailed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 0, 255, 0.3);
}

/* Responsive */
@media (max-width: 1100px) {
    .detailed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .detailed-grid {
        grid-template-columns: 1fr;
    }

    .attraction-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Filter Pills (Top Menu) Scroll Fix & Design
   ======================================== */
.filter-scroll-container {
    width: 100%;
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.relative-container {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 5px 50px 5px 0;
    /* Right padding for scroll button */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: -10px;
    padding-bottom: 15px;
    width: 100%;
}

/* Hide scrollbar */
.filter-pills::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    /* Bold text like screenshot */
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.filter-pill:hover {
    background: #f9f9f9;
    border-color: #ddd;
    color: #000;
}

/* Style for the "All" button specifically */
.filter-pill[data-target="top"] {
    padding: 10px 18px;
    /* Slightly smaller horizontal padding for circle-ish look */
}

/* Active State (Purple Style) */
.filter-pill.active {
    background: rgba(147, 51, 234, 0.1);
    /* Light purple bg */
    color: #9333ea;
    /* Purple text */
    border-color: #9333ea;
    box-shadow: none;
}

.filter-pill.active[data-target="top"] {
    background: #9333ea;
    /* Solid purple for "All" */
    color: #fff;
}

.filter-pill.active .filter-icon {
    fill: #9333ea;
    stroke: #9333ea;
}

.filter-pill.active[data-target="top"] .filter-icon {
    display: none;
    /* No icon for All usually */
}

.filter-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: all 0.2s;
    opacity: 0.7;
}

.filter-pill:hover .filter-icon {
    opacity: 1;
}

/* Scroll Arrow Button */
.scroll-arrow-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Center vertically */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -5px 0 15px rgba(255, 255, 255, 1), 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Left white shadow to fade content */
    z-index: 10;
    color: #666;
    transition: all 0.2s;
    margin-top: -5px;
    /* Adjust for padding offset */
}

.scroll-arrow-btn.left {
    right: auto;
    left: 0;
    box-shadow: 5px 0 15px rgba(255, 255, 255, 1), 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Right white shadow */
}

/* Add left padding to container to accommodate left button if needed, 
   but usually we just want it to float over */

.scroll-arrow-btn:hover {
    background: #fdfdfd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #333;
}

.scroll-arrow-btn svg {
    width: 20px;
    height: 20px;
}

/* Ensure section container inside doesn't constrain width too much if used */
.filter-scroll-container .section-container {
    width: 100%;
    max-width: 1400px;
    /* Match main layout */
    margin: 0 auto;
    padding: 0 5%;
}