:root {
    --primary-blue: #007bff;
    --accent-green: #28a745;
    --dark: #333;
    --white: #fff;
}

body { margin: 0; font-family: 'Arial', sans-serif; overflow-x: hidden; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: var(--white); display: flex; align-items: center;
    z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
    width: 90%; margin: auto; display: flex; 
    justify-content: space-between; align-items: center;
}
.logo img { height: 50px; }

/* Search Bar */
.search-container { position: relative; display: flex; flex: 0 1 400px; }
.search-container input {
    width: 100%; padding: 10px; border: 1px solid #ddd;
    border-radius: 20px 0 0 20px; outline: none;
}
.search-container button {
    padding: 10px 20px; background: var(--primary-blue);
    color: white; border: none; border-radius: 0 20px 20px 0; cursor: pointer;
}
.suggestions-box {
    position: absolute; top: 45px; width: 100%;
    background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 200px; overflow-y: auto; display: none;
}

/* Hero Section */
.hero {
    position: relative; height: 90vh; width: 100%;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
#hero-video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%); z-index: -1;
    object-fit: cover;
}
.hero-overlay {
    text-align: center; color: white; background: rgba(0,0,0,0.4);
    padding: 40px; border-radius: 15px;
}
.hero-overlay h1 { font-size: 3.5rem; margin-bottom: 10px; }
.btn {
    padding: 15px 30px; text-decoration: none; border-radius: 5px;
    font-weight: bold; margin: 10px; display: inline-block;
}
.primary { background: var(--primary-blue); color: white; }
.secondary { background: var(--white); color: var(--dark); }

/* Trust Bar */
.trust-bar {
    display: flex; justify-content: space-around; background: #f8f9fa;
    padding: 20px 0; border-bottom: 1px solid #eee;
}
.trust-item { font-weight: bold; color: var(--dark); }
.trust-item i { color: var(--primary-blue); margin-right: 8px; }
.section-container { width: 90%; margin: 60px auto; }
.section-title { font-size: 2.5rem; color: var(--dark); margin-bottom: 30px; text-align: center; }
.bg-light { background: #fdfdfd; padding: 40px 0; width: 100%; }

/* Category Grid: 3 or 4 columns */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.category-card {
    position: relative; height: 300px; border-radius: 15px;
    overflow: hidden; cursor: pointer; transition: transform 0.3s;
}
.category-card:hover { transform: translateY(-10px); }
.category-card img { width: 100%; height: 100%; object-fit: cover; }
.category-overlay {
    position: absolute; bottom: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white; padding: 20px; text-align: center;
}

/* Product Spotlight Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: white; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden; border: 1px solid #eee; position: relative;
}
.badge-available {
    position: absolute; top: 10px; right: 10px; background: var(--accent-green);
    color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem;
}
.product-info { padding: 20px; }
.product-price { font-size: 1.4rem; font-weight: bold; color: var(--primary-blue); }
.book-btn {
    display: block; width: 100%; padding: 12px; background: var(--primary-blue);
    color: white; text-align: center; border-radius: 5px; text-decoration: none; margin-top: 15px;
}

.video-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 200px; /* Base height */
    gap: 15px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.video-card.tall {
    grid-row: span 2; /* Spans two rows for vertical videos */
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.video-card:hover video {
    opacity: 1;
}

.video-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}
.bg-dark { background: #1a1a1a; padding: 80px 0; color: white; }
.light-text { color: white !important; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 40px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}
/* Hamburger Lines */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}
.hamburger span {
    width: 30px; height: 3px; background: var(--dark);
    transition: 0.3s; border-radius: 5px;
}

/* Mobile State */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; /* Hidden off-screen */
        width: 80%; height: 100vh; background: white;
        flex-direction: column; padding-top: 100px;
        transition: 0.4s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active { right: 0; } /* Slides in */

    /* Hamburger to 'X' animation */
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
.main-footer { background: #111; color: #fff; padding: 60px 0 20px 0; margin-top: 100px; }
.footer-container {
    width: 90%; margin: auto; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-brand p { color: #aaa; margin: 20px 0; line-height: 1.5; }
.footer-links h4, .footer-categories h4, .footer-contact h4 { margin-bottom: 20px; color: var(--primary-blue); }
.footer-links ul, .footer-categories ul { list-style: none; padding: 0; }
.footer-links li, .footer-categories li { margin-bottom: 10px; }
.footer-links a, .footer-categories a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-links a:hover, .footer-categories a:hover { color: white; padding-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; margin-top: 50px; padding-top: 20px; color: #666; font-size: 0.9rem; }
/* Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between; /* Spreads Logo, Search, and Icons */
    align-items: center;
    gap: 20px;
}

/* Logo Area */
.logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* Search Bar - Centered and Fluid */
.search-container {
    flex: 1; /* Takes up available middle space */
    max-width: 500px;
    display: flex;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 25px 0 0 25px;
    outline: none;
    transition: border-color 0.3s;
}

.search-container input:focus {
    border-color: var(--primary-blue);
}

.search-container button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

/* Nav Actions (Cart + Hamburger) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px; /* Spacing between cart and hamburger */
}

.cart-icon {
    position: relative;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* We hide these and use the hamburger menu instead */
    }
}

@media (max-width: 600px) {
    .search-container {
        display: none; /* Hide main search on very small phones to save space, or move to a toggle */
    }
}
/* Desktop Alignment Fix */
.nav-container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between; 
    align-items: center; /* This vertically centers logo, search, and icons */
    height: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Fix for Desktop: Ensure links are visible */
@media (min-width: 993px) {
    .hamburger { display: none; }
    .nav-links {
        display: flex !important; /* Forces visibility on desktop */
        list-style: none;
        gap: 25px;
    }
}

/* Mobile Side-Menu Fix */
@media (max-width: 992px) {
    .nav-links {
        display: flex; /* Change to flex so it can be seen when active */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; /* Fully hidden off-screen */
        width: 75%;
        height: 100vh;
        background: #fff;
        padding: 80px 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* This is the class the JS will toggle */
    .nav-links.active {
        right: 0; /* Slides into view */
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--dark);
        border-radius: 3px;
        transition: 0.3s;
    }
}
/* RESET & GLOBALS */
* { margin: 0; padding: 0; box-sizing: border-box; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* NAVBAR BASE */
.navbar {
    position: fixed; top: 0; width: 100%; height: 85px;
    background: #ffffff; display: flex; align-items: center;
    z-index: 2000; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-container {
    width: 92%; max-width: 1400px; margin: auto;
    display: flex; justify-content: space-between; align-items: center;
}

/* DESKTOP NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links li { position: relative; font-weight: 600; font-size: 0.95rem; }

/* CATEGORIES DROPDOWN (Desktop) */
.dropdown {
    position: absolute; top: 100%; left: 0; background: #fff;
    min-width: 200px; padding: 15px 0; border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none; /* Hidden by default */
    margin-top: 10px;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { padding: 10px 25px; display: block; transition: 0.3s; }
.dropdown li a:hover { background: #f8f9fa; color: var(--primary-blue); }

/* MOBILE MENU (The Professional Slide-out) */
@media (max-width: 992px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; 
        width: 320px; height: 100vh; background: #fff;
        flex-direction: column; align-items: flex-start;
        padding: 100px 40px; transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin-bottom: 25px; font-size: 1.2rem; }
    
    /* Hide search on mobile if it clutters */
    .search-container { display: none; } 
}

/* CLOSE BUTTON (X) - Add this to your HTML inside nav-links */
.menu-close {
    position: absolute; top: 25px; right: 25px;
    font-size: 1.8rem; cursor: pointer; display: none;
}
@media (max-width: 992px) { .menu-close { display: block; } }

/* Container ensures vertical centering for all 4 parts */
.nav-container {
    width: 94%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Search Bar Styling */
.search-container {
    flex: 0 1 400px; /* Grows to 400px, but shrinks if space is tight */
    display: flex;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 25px 0 0 25px;
    background: #f9f9f9;
    outline: none;
}

.search-container button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

/* Mobile Adjustments (Below 992px) */
@media (max-width: 992px) {
    /* Hide the desktop search to keep the mobile header clean */
    #desktopSearch {
        display: none;
    }

    /* We can move the search inside the nav-links (hamburger) for mobile */
    .nav-links .search-container {
        display: flex;
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Vertical Alignment for Icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.suggestions-box {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 3000;
    max-height: 300px;
    overflow-y: auto;
    display: none; /* Controlled by JS */
}

.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.suggestion-item:hover {
    background: #f8f9fa;
}
/* --- Desktop Search Alignment --- */
.desktop-only {
    display: flex;
    flex: 0 1 350px;
    position: relative;
    align-items: center;
}

.search-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

/* --- Mobile Menu Fix (The "Hamburger Disappearing" Fix) --- */
@media (max-width: 992px) {
    .desktop-only { display: none; } /* Hide desktop search */

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 300px; /* Thinner side-drawer is more professional */
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 60px 25px;
        transition: right 0.4s ease-in-out; /* Use 'right' for stability */
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 9999;
    }

    .nav-links.active {
        right: 0 !important; /* Slide in and STAY */
    }

    .mobile-search-item {
        margin-bottom: 25px;
        list-style: none;
    }

    .mobile-search-item .search-container {
        display: flex;
        background: #f4f7f9;
        padding: 10px;
        border-radius: 8px;
        align-items: center;
    }

    .mobile-search-item input {
        border: none;
        background: transparent;
        width: 100%;
        outline: none;
    }

    .mobile-search-icon {
        color: #007bff;
        margin-left: 10px;
    }
}
/* Layout Constants */
:root { --primary: #007bff; --dark: #222; --light: #f4f7f9; }
.container { width: 92%; max-width: 1400px; margin: auto; }

/* Store Header & Video */
.store-header {
    height: 50vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; color: white;
}
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.video-background::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.video-background video { width: 100%; height: 100%; object-fit: cover; }

/* Title & Badge */
.title-flex { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 20px; border-bottom: 2px solid #eee; }
.inventory-badge { background: var(--light); padding: 10px 20px; border-radius: 12px; text-align: center; border: 1px solid #ddd; }
.inventory-badge span { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }

/* Filter Sticky Bar */
.filter-section { position: sticky; top: 70px; background: white; z-index: 100; padding: 15px 0; border-bottom: 1px solid #eee; }
.filter-container { display: flex; gap: 20px; width: 92%; margin: auto; flex-wrap: wrap; }
.filter-group select { padding: 10px; border-radius: 8px; border: 1px solid #ccc; font-weight: 500; }

/* Product Grid */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px; padding: 40px 0;
}
.product-card {
    background: #fff; border-radius: 15px; overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.product-img-wrapper { height: 200px; overflow: hidden; position: relative; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.availability-tag { position: absolute; top: 10px; right: 10px; background: #28a745; color: white; padding: 4px 10px; border-radius: 5px; font-size: 0.7rem; }
.product-info { padding: 20px; }
.product-info h3 { margin: 0 0 10px; font-size: 1.2rem; }
.p-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
/* Layout */
.product-essential { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; margin-top: 40px; }

/* Status Pulse Badge */
.status-tag.pulse {
    background: #fff3e0; color: #ef6c00; padding: 5px 15px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; position: absolute; top: 20px; left: 20px;
}

/* Pricing Section */
.price-box { margin: 25px 0; display: flex; align-items: baseline; gap: 5px; }
.price-box .amount { font-size: 3rem; font-weight: 900; color: #007bff; }
.price-box .currency { font-size: 1.5rem; font-weight: 700; color: #007bff; }

/* Booking Button */
.btn-book-now {
    width: 100%; background: #007bff; color: #fff; padding: 20px;
    border: none; border-radius: 12px; font-size: 1.2rem; font-weight: 700;
    cursor: pointer; transition: 0.3s; margin-top: 20px;
}
.btn-book-now:hover { background: #0056b3; transform: scale(1.02); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.review-card { background: #f9f9f9; padding: 20px; border-radius: 15px; text-align: center; }
.stars { color: #ffc107; margin-bottom: 10px; }

@media (max-width: 992px) {
    .product-essential { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
}
/* Typography Reset */
.product-info-panel {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 32px; /* Uniform spacing between sections */
}

/* Category Pill */
.category-pill {
    background: #f0f7ff;
    color: #007bff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 15px 0 10px 0;
    color: #1a1a1a;
    line-height: 1.1;
}

/* Pricing Layout */
.price-container {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fafafa;
    padding: 20px;
    border-radius: 16px;
}
.price-main .amount { font-size: 3rem; font-weight: 900; color: #1a1a1a; }
.price-details p { margin: 0; line-height: 1.4; }
.period { font-weight: 700; color: #333; }
.tax-info { font-size: 0.85rem; color: #777; }

/* Specs Grid - Clean & Boxy */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.spec-box {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}
.spec-box label {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}
.spec-box span { font-weight: 600; font-size: 0.95rem; color: #333; }

/* Product Highlights */
.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.h-item {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.h-item i { color: #28a745; font-size: 0.8rem; }

/* The Description */
.description-section h3 { font-size: 1.2rem; margin-bottom: 12px; }
.description-section p {
    line-height: 1.7; /* Crucial for readability */
    color: #555;
    font-size: 1.05rem;
}

/* Button with Icon Separation */
.btn-book-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-book-now:hover { background: #0056b3; transform: translateY(-2px); }
.guarantee-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}
.review-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 20px;
    text-align: left; /* Left align looks more professional for testimonials */
    transition: 0.3s;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-blue);
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-card strong {
    color: #222;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Slick Availability Icon */
.availability-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Emerald green */
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button Refinement */
.btn-book-now {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.cart-page { background: #f4f7f9; }

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-top: 30px;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-section { margin-bottom: 30px; }
.form-section h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--dark); border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-form input, .booking-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.btn-proceed {
    width: 100%;
    padding: 20px;
    background: #28a745; /* Green for "Go" */
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.order-summary .summary-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
}

.summary-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .cart-layout { grid-template-columns: 1fr; }
}
/* --- Premium Blue Cart Styling --- */
.cart-page { background: #f8fafc; color: #1e293b; }

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.form-section h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i { color: #007bff; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
    background: #fdfdfd;
}

.booking-form input:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Updated Blue Proceed Button */
.btn-proceed {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 86, 179, 0.3);
    transition: 0.3s;
}

.btn-proceed:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(0, 86, 179, 0.4);
}

.order-summary .summary-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
}

.summary-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}
.thank-you-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    text-align: center;
}

.success-container {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 600px;
    width: 90%;
}

.success-icon {
    font-size: 5rem;
    color: #10b981; /* Success Green */
    margin-bottom: 20px;
    animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-container h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 15px;
}

.success-container p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.next-steps {
    margin: 30px 0;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-support {
    padding: 18px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-home {
    padding: 18px;
    background: transparent;
    color: #64748b;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-home:hover { background: #f1f5f9; color: #0f172a; }
/* --- Vertical Stacked Layout (Non-Sticky) --- */
.cart-page { background: #f1f5f9; padding: 40px 0; }
.cart-narrow-container { max-width: 750px; margin: auto; }

.cart-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Summary Card (Always Top, Scrolls Normally) --- */
.summary-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    /* position: sticky; REMOVED */
    /* top: 20px; REMOVED */
}

.summary-flex-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.summary-thumb {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

.item-name { font-size: 1.6rem; margin: 4px 0; color: #1e293b; }
.item-price-tag { font-size: 1.3rem; font-weight: 800; color: #007bff; }

/* --- Booking Form --- */
.booking-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.btn-proceed {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

/* --- Pulse Icon --- */
.availability-status { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pulse-icon { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse 1.5s infinite; }
.status-text { font-size: 0.75rem; font-weight: 700; color: #10b981; text-transform: uppercase; }

@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 
    100% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .summary-flex-container { flex-direction: row; gap: 15px; }
    .summary-thumb { width: 80px; height: 60px; }
    .item-name { font-size: 1.2rem; }
}
.hamburger span {
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* Hero Video Fix */
.store-header {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}
.video-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.video-background video {
    width: 100%; height: 100%; object-fit: cover;
}

/* Filter Bar Responsive */
.filter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* View More Button */
.btn-view-more {
    margin: 40px auto;
    display: block;
    padding: 15px 40px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-view-more:hover { transform: translateY(-3px); background: #0056b3; }

/* Footer */
.main-footer { background: #111; color: #eee; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.cart-icon {
    position: relative;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff4757;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none; /* Hidden by default via JS if 0 */
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: #2ed573;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}
/* ===========================
   CART ITEMS
=========================== */

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-bottom: 16px;
    align-items: center;
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

/* INFO */
.cart-info {
    flex: 1;
}

.cart-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cart-info p {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 10px;
}

/* ===========================
   QUANTITY CONTROLS
=========================== */

.qty-controls {
    display: inline-flex;
    align-items: center;
    background: #f4f6f8;
    border-radius: 30px;
    padding: 4px;
    gap: 10px;
    margin-bottom: 8px;
}

.qty-controls button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s;
}

.qty-controls button:hover {
    transform: scale(1.1);
    background: #084298;
}

.qty-controls span {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

/* ===========================
   REMOVE BUTTON
=========================== */

.remove-btn {
    display: inline-block;
    margin-top: 6px;
    background: none;
    border: none;
    color: #dc3545;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.remove-btn:hover {
    text-decoration: underline;
}

/* ===========================
   CART TOTAL
=========================== */

.cart-total {
    padding: 16px;
    border-top: 2px dashed #ddd;
    text-align: right;
    font-size: 18px;
    margin-top: 20px;
}
.cart-icon {
    position: relative;
}
/* Ensure all product images show the full item */
.product-card img, 
.product-img-wrapper img,
.main-stage img {
    width: 100%;
    height: 250px;       /* Or whatever height you prefer */
    object-fit: contain; /* This prevents the 'cutting' */
    background-color: #fff; 
    padding: 10px;       /* Adds a little breathing room around the item */
}

/* Specifically for the main image on the Product Page */
.main-stage img {
    height: auto;        /* Let the main product image be as tall as it needs to be */
    max-height: 500px;
}