: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);
    aspect-ratio: 16/9;
}

.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(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    font-size: 14px;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0;
    /* Hidden by default */
}

.ticket-image-container:hover .ticket-nav-arrow {
    opacity: 1;
    /* Show on hover */
}

.ticket-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.ticket-nav-arrow.prev {
    left: 10px;
}

.ticket-nav-arrow.next {
    right: 10px;
}

.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;
    }
}