/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: #f8f9fa;
    /* Very light gray */
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #eee;
}

.top-bar i {
    font-size: 12px;
    margin-left: 5px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right i {
    font-size: 16px;
    cursor: pointer;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    /* Adjust based on actual logo */
    width: auto;
}

nav {
    display: flex;
    gap: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

/* Header Actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile Side Menu Styles */
.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 2100;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.mobile-menu-header .logo {
    font-size: 18px;
    font-weight: 800;
    color: #0d4e96;
}

.close-menu {
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.mobile-links {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}

.mobile-links a.mobile-login {
    color: #0d4e96;
}

.mobile-links a.mobile-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-weight: 400;
    color: #555;
    font-size: 14px;
}

nav a {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a i {
    font-size: 10px;
    color: #333;
}

.btn-buy-now {
    background-color: #ff9e16;
    color: #fff;
    font-weight: 800;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-buy-now:hover {
    background-color: #e68e14;
}

/* Tabs */
.tabs-container {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    background: #fff;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tabs li {
    padding: 20px 0;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.5px;
}

.tabs li.active {
    color: #007bc2;
}

.tabs li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #007bc2;
}

/* Main Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Ticket List */
.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced gap */
}

.ticket-card {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 150px;
    /* Reduced height from 180px */
    transition: box-shadow 0.3s;
}

.ticket-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ticket-image {
    width: 200px;
    /* Reduced width from 240px */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-details {
    flex: 1;
    padding: 15px 20px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-blue {
    color: #007bc2;
    font-size: 14px;
}

.ticket-details h3 {
    font-size: 18px;
    /* Reduced font size from 20px */
    font-weight: 800;
    color: #333;
    margin-bottom: 4px;
}

.ticket-details .subtitle {
    color: #666;
    font-size: 12px;
    /* Slightly smaller */
    margin-bottom: 8px;
}

.ticket-details .description {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 8px;
}

.park-logos {
    margin-top: auto;
}

.ticket-action {
    width: 190px;
    /* Reduced width from 220px */
    padding: 15px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    text-align: right;
}

.info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #999;
    font-size: 14px;
    cursor: pointer;
}

.price-info {
    margin-top: auto;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 11px;
    color: #777;
    margin-bottom: 2px;
}

.price-value {
    font-size: 20px;
    /* Reduced from 22px */
    font-weight: 800;
    color: #333;
}

.price-save {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.btn-select {
    background-color: #007bc2;
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-select:hover {
    background-color: #00649e;
}

/* Annual Pass Specifics */
.ticket-image.small-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.ticket-image.small-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
}

.pay-monthly {
    margin-top: 8px;
    font-size: 12px;
    color: #555;
}

.select-box {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

/* Quantity Selector for Extras */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    font-size: 14px;
}

.quantity-input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: 700;
    color: #333;
}

.btn-add-cart {
    background-color: #007bc2;
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 100%;
    font-weight: 800;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background-color: #00649e;
}

/* ============================================
   SIDEBAR CART - PREMIUM DESIGN
   ============================================ */
.sidebar {
    position: relative;
}

.cart-box {
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 20px rgba(0, 123, 194, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-box:hover {
    box-shadow: 0 6px 24px rgba(0, 123, 194, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cart-header {
    padding: 18px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #007bc2 0%, #0095e8 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cart-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cart-box:hover .cart-header::before {
    left: 100%;
}

.cart-header::after {
    content: '🛒';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.9;
}

.cart-content {
    padding: 35px 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Empty Cart State */
.cart-content p {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
    position: relative;
}

.cart-content p::before {
    content: '🛍️';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Checkout Button Styles */
.btn-checkout {
    background: linear-gradient(135deg, #ff9e16 0%, #ffa726 100%);
    color: #fff;
    border: none;
    padding: 14px 0;
    width: 100%;
    font-weight: 800;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 158, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-checkout:hover:not([disabled]) {
    background: linear-gradient(135deg, #e68e14 0%, #ff9e16 100%);
    box-shadow: 0 6px 16px rgba(255, 158, 22, 0.4);
    transform: translateY(-2px);
}

.btn-checkout:hover:not([disabled])::before {
    left: 100%;
}

.btn-checkout:active:not([disabled]) {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(255, 158, 22, 0.3);
}

/* Disabled State */
.btn-checkout[disabled] {
    background: linear-gradient(135deg, #b8b8b8 0%, #999999 100%);
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

/* Filled Cart Styles */
.cart-content>div {
    width: 100%;
}

.cart-item {
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.2s ease;
}

.cart-item:hover {
    background: rgba(0, 123, 194, 0.02);
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
}

.cart-item-name {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    padding-right: 25px;
}

.cart-item-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
}

.cart-item-count {
    color: #007bc2;
}

.cart-item-price {
    color: #333;
    font-size: 15px;
}

.cart-remove {
    position: absolute;
    top: 15px;
    right: 0;
    color: #ccc;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.cart-remove:hover {
    color: #ff4444;
    transform: scale(1.15);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 17px;
    color: #333;
    margin: 20px 0 18px;
    padding-top: 18px;
    border-top: 2px solid #007bc2;
}

.cart-total-label {
    color: #007bc2;
}

.cart-total-value {
    color: #ff9e16;
}

/* ============================================
   FLOATING CART BUTTON - MOBILE ONLY
   ============================================ */

.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff9e16 0%, #ffa726 100%);
    border-radius: 50%;
    display: none;
    /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(255, 158, 22, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating-cart-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 158, 22, 0.5),
        0 3px 12px rgba(0, 0, 0, 0.2);
}

.floating-cart-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 16px rgba(255, 158, 22, 0.3);
}

.floating-cart-btn i {
    font-size: 26px;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: #ff4444;
    color: #fff;
    border-radius: 12px;
    display: none;
    /* Hidden when 0 */
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Cart Sidebar Overlay for Mobile */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Sidebar Active State for Mobile */
.sidebar.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0.8;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sidebar.active .cart-box {
    position: relative;
    top: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
}

.sidebar.active .cart-content {
    flex: 1;
    overflow-y: auto;
}

/* Close button for cart sidebar */
.cart-close-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: none;
    /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.sidebar.active .cart-close-btn {
    display: flex;
}

.cart-close-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.cart-close-btn:active {
    transform: scale(0.95);
}

/* ============================================
   BOTTOM CART BAR - MOBILE ONLY
   ============================================ */

.bottom-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #007bc2 0%, #0095e8 100%);
    padding: 12px 20px;
    display: none;
    /* Hidden when cart is empty */
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 123, 194, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUpBar 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpBar {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bottom-cart-bar:active {
    transform: scale(0.98);
}

.cart-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-bar-left i {
    font-size: 24px;
    color: #fff;
}

.cart-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-bar-count {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-bar-total {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.cart-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.cart-bar-right i {
    font-size: 14px;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #007bc2, #0095e8);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 123, 194, 0.4);
}

/* Footer Lists */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ff9e16;
    transform: translateX(5px);
}

/* Contact Info */
.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-column p i {
    color: #ff9e16;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff9e16;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Payment Icons */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payment span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
}

.footer-payment i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-payment i:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Booking Sidebar & Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
}

.overlay.active {
    display: block;
}

.booking-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 480px;
    height: 100vh;
    background: #fff;
    z-index: 2100;
    /* Higher than overlay */
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.booking-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-title h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #333;
}

.currency-select {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.close-sidebar {
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

/* Counters */
.ticket-counters {
    padding: 10px 30px 20px;
    background: #fff;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.counter-label {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}

.sub-label {
    display: block;
    font-size: 11px;
    color: #888;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-controls input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 30px;
    font-weight: 700;
    color: #333;
}

.btn-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #777;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #333;
}

.btn-circle.disabled {
    border-color: #ddd;
    color: #ddd;
    cursor: default;
}

/* Calendar */
.calendar-section {
    padding: 20px 30px;
    flex: 1;
    overflow-y: auto;
    background: #fff;
    /* Ensure white background */
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 15px;
    color: #333;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    row-gap: 15px;
}

.day-name {
    font-size: 12px;
    color: #777;
    font-weight: 600;
    margin-bottom: 10px;
}

.day-number {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 auto;
    border-radius: 4px;
    background: #fff;
    /* White background for days */
}

.day-number:hover:not(.disabled) {
    background-color: #e8f4f8;
}

.day-number.disabled {
    color: #ccc;
    cursor: default;
    background: #f9f9f9;
}

.day-number.selected {
    background-color: #007bc2;
    color: #fff;
    font-weight: 700;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px 30px;
    background: #f0f6fc;
    /* Light blueish background */
    border-top: 1px solid #e1e8ed;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.footer-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.selection-details {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.valid-date {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.valid-date .text-dark {
    font-weight: 700;
    color: #333;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-blue-outline {
    background: #007bc2;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Note: Screenshot shows continue shopping is also blue filled, let's match that. Wait, actually screenshot shows both blue filled. */

.btn-blue-solid {
    background: #007bc2;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-blue-solid:hover {
    background: #00649e;
}

/* ============================================
   MOBILE & RESPONSIVE DESIGN - PREMIUM EDITION
   ============================================ */

/* Tablet & Mobile - Primary Breakpoint */
@media (max-width: 900px) {

    /* === TOP BAR MOBILE === */
    .top-bar {
        padding: 6px 15px;
        font-size: 12px;
    }

    .top-bar-right {
        gap: 12px;
    }

    .top-bar-right i {
        font-size: 14px;
    }

    /* === HEADER MOBILE === */
    .main-header {
        padding: 12px 15px;
    }

    .logo {
        font-size: 16px;
        font-weight: 800;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 22px;
        transition: transform 0.2s ease;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    .btn-buy-now {
        display: none;
    }

    /* === TABS - HORIZONTAL SCROLL === */
    .tabs-container {
        margin-bottom: 20px;
    }

    .tabs {
        gap: 15px;
        padding: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .tabs li {
        white-space: nowrap;
        padding: 15px 5px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .tabs li.active::after {
        height: 3px;
    }

    /* === CONTENT LAYOUT === */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 40px;
    }

    /* === TICKET CARDS - BEAUTIFUL MOBILE LAYOUT === */
    .ticket-list {
        gap: 20px;
    }

    .ticket-card {
        height: auto;
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ticket-card:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    }

    .ticket-image {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }

    .ticket-image img {
        object-fit: cover;
    }

    .ticket-details {
        padding: 16px 18px;
        border-right: none;
        border-bottom: 1px solid #f5f5f5;
    }

    .ticket-details h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .ticket-details .subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .ticket-details .description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .ticket-action {
        width: 100%;
        padding: 16px 18px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .info-icon {
        position: static;
        order: -1;
        font-size: 16px;
        margin-right: 10px;
    }

    .price-info {
        align-items: flex-start;
        margin: 0;
        margin-right: auto;
    }

    .price-label {
        font-size: 11px;
    }

    .price-value {
        font-size: 20px;
    }

    .btn-select {
        width: auto;
        padding: 12px 24px;
        font-size: 12px;
        white-space: nowrap;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 123, 194, 0.3);
        transition: all 0.3s ease;
    }

    .btn-select:active {
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0, 123, 194, 0.3);
    }

    /* === QUANTITY SELECTOR MOBILE === */
    .quantity-selector {
        margin-bottom: 8px;
    }

    .quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    .quantity-btn:active {
        transform: scale(0.9);
        background: #f0f0f0;
    }

    .quantity-input {
        width: 50px;
        height: 36px;
        font-size: 15px;
    }

    .btn-add-cart {
        padding: 12px;
        font-size: 12px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 123, 194, 0.3);
    }

    /* === CART BOX MOBILE === */
    .sidebar .cart-box {
        position: relative;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .cart-header {
        padding: 14px 16px;
        font-size: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .cart-content {
        padding: 20px 16px;
    }

    .cart-content p {
        font-size: 13px;
    }

    .btn-checkout {
        padding: 14px;
        font-size: 14px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    /* === BOOKING SIDEBAR MOBILE (FULL SCREEN) === */
    .overlay {
        z-index: 9999;
    }

    .booking-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
        z-index: 10001;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .booking-sidebar.active {
        right: 0;
    }

    /* Sidebar Header */
    .sidebar-header {
        padding: 16px 18px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .sidebar-title h2 {
        font-size: 17px;
        line-height: 1.3;
    }

    .currency-select {
        font-size: 13px;
    }

    .close-sidebar {
        font-size: 22px;
        padding: 4px;
        transition: transform 0.2s ease;
    }

    .close-sidebar:active {
        transform: scale(0.9);
    }

    /* Ticket Counters */
    .ticket-counters {
        padding: 16px 18px 20px;
    }

    .counter-row {
        margin-bottom: 18px;
    }

    .counter-label {
        font-size: 15px;
    }

    .sub-label {
        font-size: 11px;
    }

    .btn-circle {
        width: 44px;
        height: 44px;
        font-size: 16px;
        border-radius: 50%;
        border: 2px solid #999;
        background: #fff;
        transition: all 0.2s ease;
    }

    .btn-circle:active:not(.disabled) {
        transform: scale(0.92);
        background: #f5f5f5;
    }

    .btn-circle.disabled {
        border-color: #e0e0e0;
        color: #ccc;
    }

    .counter-controls input {
        height: 44px;
        width: 60px;
        font-size: 17px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
    }

    /* Calendar Section */
    .calendar-section {
        padding: 16px 18px;
    }

    .calendar-header {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .calendar-header button {
        font-size: 16px;
        padding: 8px;
        transition: transform 0.2s ease;
    }

    .calendar-header button:active {
        transform: scale(0.9);
    }

    .calendar-grid {
        row-gap: 10px;
        column-gap: 3px;
    }

    .day-name {
        font-size: 11px;
        font-weight: 700;
        color: #888;
        margin-bottom: 8px;
    }

    .day-number {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .day-number:active:not(.disabled) {
        transform: scale(0.92);
    }

    .day-number:hover:not(.disabled) {
        background-color: #e8f4f8;
    }

    .day-number.selected {
        background-color: #007bc2;
        color: #fff;
        box-shadow: 0 2px 8px rgba(0, 123, 194, 0.4);
    }

    .day-number.disabled {
        color: #ddd;
        background: #fafafa;
    }

    /* Sidebar Footer */
    .sidebar-footer {
        padding: 18px;
        background: linear-gradient(135deg, #f0f6fc 0%, #e8f4f8 100%);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
    }

    .footer-header h3 {
        font-size: 17px;
    }

    .selection-details {
        padding-bottom: 16px;
    }

    .valid-date {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .price-row {
        font-size: 14px;
    }

    .total-row {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .footer-buttons {
        gap: 10px;
    }

    .btn-blue-outline,
    .btn-blue-solid {
        padding: 16px;
        font-size: 14px;
        border-radius: 8px;
        font-weight: 800;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 123, 194, 0.3);
    }

    .btn-blue-outline:active,
    .btn-blue-solid:active {
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0, 123, 194, 0.3);
    }

    /* === ANNUAL PASS CARDS === */
    .ticket-image.small-image {
        height: 140px;
        padding: 15px;
    }

    .pay-monthly {
        font-size: 12px;
    }

    .select-box {
        width: 28px;
        height: 28px;
    }
}

/* === EXTRA SMALL SCREENS (< 480px) === */
@media (max-width: 480px) {

    /* Mobile Header - Even Smaller */
    .logo {
        font-size: 14px;
    }

    .mobile-menu-btn {
        font-size: 20px;
    }

    /* Tabs - Smaller Fonts */
    .tabs li {
        font-size: 11px;
        padding: 12px 3px;
    }

    /* Content Wrapper */
    .content-wrapper {
        padding: 0 12px 30px;
    }

    /* Ticket Cards - Compact */
    .ticket-card {
        border-radius: 6px;
    }

    .ticket-image {
        height: 160px;
    }

    .ticket-details {
        padding: 14px 15px;
    }

    .ticket-details h3 {
        font-size: 16px;
    }

    .ticket-details .description {
        font-size: 12px;
    }

    .ticket-action {
        padding: 14px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .price-info {
        width: 100%;
    }

    .btn-select {
        width: 100%;
        padding: 14px;
        text-align: center;
        font-size: 13px;
    }

    /* Calendar - Smaller Touch Targets */
    .calendar-grid {
        gap: 4px;
        column-gap: 2px;
    }

    .day-number {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 13px;
        border-radius: 6px;
    }

    .day-name {
        font-size: 10px;
    }

    /* Sidebar Elements */
    .sidebar-header,
    .ticket-counters,
    .calendar-section,
    .sidebar-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .btn-circle {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .counter-controls input {
        width: 55px;
        height: 40px;
        font-size: 16px;
    }

    /* Footer Buttons */
    .btn-blue-outline,
    .btn-blue-solid {
        padding: 15px;
        font-size: 13px;
        border-radius: 6px;
    }
}

/* === LANDSCAPE PHONES === */
@media (max-width: 900px) and (orientation: landscape) {
    .booking-sidebar {
        overflow-y: auto;
    }

    .calendar-section {
        max-height: 40vh;
        overflow-y: auto;
    }
}

/* === FLOATING CART BUTTON VISIBILITY === */
@media (max-width: 900px) {
    .floating-cart-btn {
        display: none !important;
        /* Hide floating button, use bottom bar instead */
    }

    /* Hide desktop cart box, show only when active */
    .sidebar:not(.active) {
        display: none;
    }

    /* Show bottom cart bar on mobile */
    .bottom-cart-bar {
        display: block;
        /* Will be toggled by JS */
    }

    /* Footer Mobile */
    .footer {
        margin-top: 60px;
        padding: 40px 0 80px;
        /* Extra padding for bottom cart bar */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-left {
        align-items: center;
    }

    .footer-payment {
        justify-content: center;
    }
}


/* Adjust for small screens */
@media (max-width: 480px) {
    .floating-cart-btn {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    .floating-cart-btn i {
        font-size: 22px;
    }

    .cart-badge {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 11px;
        border-width: 2px;
    }

    .sidebar.active {
        width: 100%;
        max-width: 100%;
    }

    /* Bottom Cart Bar Small Screens */
    .cart-bar-content {
        padding: 0;
    }

    .cart-bar-left i {
        font-size: 20px;
    }

    .cart-bar-total {
        font-size: 16px;
    }

    .cart-bar-right {
        font-size: 13px;
    }

    /* Footer Small Screens */
    .footer {
        padding: 30px 0 80px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-top {
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-description,
    .footer-column p,
    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-payment i {
        font-size: 28px;
    }
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover states, add active states */
    .ticket-card:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .btn-select:hover,
    .btn-add-cart:hover {
        background-color: #007bc2;
    }

    .day-number:hover:not(.disabled) {
        background-color: #fff;
    }
}