/* Exact Copy UI based on provided video */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #111111;
    --bg-black: #000000;
    --primary-gold: #dca331; /* the orange/gold color from the video */
    --text-white: #ffffff;
    --text-muted: #a3a3a3;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--text-white);
    color: var(--bg-black);
    line-height: 1.6;
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.top-banner {
    background-color: var(--primary-gold);
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 700;
}

.navbar {
    background-color: var(--bg-black);
    color: var(--text-white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: -5px;
}
.logo p {
    font-size: 0.7rem;
    letter-spacing: 5px;
}

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

.search-bar {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    padding: 5px;
}

.search-bar i {
    color: #fff;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background: #000 url('https://images.unsplash.com/photo-1542332213-9b5a5a3fad35?auto=format&fit=crop&q=80') center/cover no-repeat;
    position: relative;
    color: #fff;
    padding: 80px 5%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    color: #aaa;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-item i { color: var(--primary-gold); font-size: 1.8rem; }
.feature-item span { font-weight: 600; font-size: 0.95rem; line-height: 1.2;}

.hero-bottom-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    padding-top: 20px;
}
.bottom-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}
.bottom-badge i { color: var(--primary-gold); font-size: 1.2rem; }

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Image Placeholders */
.image-placeholder {
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jar-placeholder {
    width: 350px;
    height: 500px;
    border-radius: 20px;
    border: 2px dashed #555;
}

.circle-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 auto 15px;
}

.timeline-img-placeholder {
    width: 100%;
    height: 300px;
    background: #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.hero-right-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 250px;
}

.hero-side-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
}
.hero-side-card i { color: var(--primary-gold); font-size: 1.5rem; }
.hero-side-card span { font-size: 0.9rem; font-weight: 600; line-height: 1.2; }

.btn-shop {
    background: var(--primary-gold);
    color: #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Benefits Circles Section */
.benefits-slider-container {
    overflow: hidden;
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 0;
    background: #fff;
}

.benefits-circles {
    display: flex;
    padding: 0;
    margin: 0;
    /* using gap is fine, but we will use fixed size items */
    gap: 34px;
}

.benefit-circle {
    text-align: center;
    /* Exactly 130px width */
    flex: 0 0 130px;
    min-width: 0;
}
.benefit-circle p {
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Product Section (White background) */
.product-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-info h3 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
}

.mrp {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
}

.discount-badge {
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    font-weight: 800;
    border-radius: 5px;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-buy {
    background: var(--primary-gold);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    flex: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-buy:hover {
    background: #c28d22;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn-cart {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    flex: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.offer-banner {
    background: #111;
    color: #fff;
    padding: 15px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}
.offer-banner .btn-buy-small {
    background: var(--primary-gold);
    color: #000;
    border: none;
    padding: 8px 15px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-buy-small:hover {
    background: #c28d22;
    transform: translateY(-2px);
}

.gold-badge {
    background: var(--primary-gold);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 800;
}

/* Reel Cards */
.reel-card {
    width: 200px;
    flex-shrink: 0;
}

.reel-placeholder {
    width: 200px;
    height: 350px;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.reel-placeholder:hover {
    border-color: var(--primary-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-features, .hero-bottom-badges {
        justify-content: center;
    }
    .hero-right-cards {
        display: none;
    }
    .ingredients-section {
        flex-direction: column;
    }
}

/* New UI Classes */
.circle-bg-1, .circle-bg-2, .circle-bg-3, .circle-bg-4, .circle-bg-5, .circle-bg-6, .circle-bg-7, .circle-bg-8 {
    background-size: cover;
    background-position: center;
}
.circle-bg-1 { background-image: url('/images/cat_1.jpg'); border-radius: 50%; }
.circle-bg-2 { background-image: url('/images/cat_2.jpg'); border-radius: 50%; }
.circle-bg-3 { background-image: url('/images/cat_3.jpg'); border-radius: 50%; }
.circle-bg-4 { background-image: url('/images/cat_4.jpg'); border-radius: 50%; }
.circle-bg-5 { background-image: url('/images/cat_5.jpg'); border-radius: 50%; }
.circle-bg-6 { background-image: url('/images/cat_6.jpg'); border-radius: 50%; }
.circle-bg-7 { background-image: url('/images/cat_7.jpg'); border-radius: 50%; }
.circle-bg-8 { background-image: url('/images/cat_8.jpg'); border-radius: 50%; }

.reel-card-new {
    width: 280px;
    height: 500px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.reel-bg {
    width: 100%;
    height: 100%;
    background-color: #222;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.reel-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.mute-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 50%;
    z-index: 2;
}
.reel-product {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
.reel-product img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.reel-product-info h4 {
    font-size: 0.6rem;
    margin: 0;
    color: #000;
}
.reel-price {
    display: flex;
    gap: 5px;
    align-items: center;
}
.r-price { color: #e74c3c; font-weight: 800; font-size: 0.7rem; }
.r-mrp { color: #888; text-decoration: line-through; font-size: 0.6rem; }

.timeline-line {
    width: 2px; 
    height: 250px; 
    background: #333; 
    position: relative;
    margin: 0 30px;
}
@media(max-width: 768px) {
    .timeline-line { display: none; }
}
.timeline-dot {
    position: absolute; 
    top: 50%; 
    left: -8px; 
    width: 18px; 
    height: 18px; 
    background: transparent; 
    border: 2px solid var(--primary-gold); 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.timeline-dot-inner {
    width: 8px; 
    height: 8px; 
    background: var(--primary-gold); 
    border-radius: 50%;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 1.2rem;
    position: absolute;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.m-icon-1 { top: 20%; left: 10%; }
.m-icon-2 { top: 50%; left: 0%; }
.m-icon-3 { bottom: 20%; left: 15%; }
.m-icon-4 { bottom: 10%; right: 20%; }

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}
.testi-card {
    min-width: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
.testi-img {
    height: 150px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}
.t-bg-1 { background-image: url('/images/strength-confidence.png'); }
.t-bg-2 { background-image: url('/images/energy-stamina-boost.png'); }
.t-bg-3 { background-image: url('/images/body-adapataion .png'); }

.testi-content {
    padding: 15px;
}
.testi-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.btn-shop-dark {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-shop-dark:hover {
    background: #333;
}

/* --- CART DRAWER STYLES --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-drawer.active {
    right: 0;
}

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

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #555;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    color: #888;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.qty-controls {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: #f9f9f9;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-checkout {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.btn-checkout:hover {
    background: #333;
}

/* Reels Container Base Styles */
.reels-container {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.reels-container::-webkit-scrollbar {
    display: none;
}
.reel-card-new {
    background-position: center;
    background-size: cover;
    width: 280px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    scroll-snap-align: center;
    flex-shrink: 0;
}

.benefit-img { width: 100%; max-width: 120px; height: auto; aspect-ratio: 1/1; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; display: block; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

@media (max-width: 768px) { .benefit-circle { flex: 0 0 calc(33.333% - 26.66px); } } @media (max-width: 480px) { .benefit-circle { flex: 0 0 calc(50% - 20px); } }

/* Better Slider */
.better-slider-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
}
.better-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.better-card {
    scroll-snap-align: center;
    flex: 0 0 100%;
}
@media (min-width: 768px) {
    .better-card {
        flex: 1;
    }
}
.ingredients-grid { display: grid; gap: 20px; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) { .ingredients-grid { grid-template-columns: repeat(3, 1fr); } }


/* =========================================================================
   MOBILE RESPONSIVE OVERRIDES (max-width: 768px)
   ========================================================================= */
@media (max-width: 768px) {
    /* 1. Global & Typography */
    body { font-size: 14px; overflow-x: hidden; }
    h1 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    h2 { font-size: 1.5rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.2rem !important; line-height: 1.3 !important; }
    h4 { font-size: 1.1rem !important; line-height: 1.3 !important; }
    
    /* 2. Header & Navbar */
    .top-banner { font-size: 0.75rem; padding: 5px; }
    .navbar { flex-direction: row !important; justify-content: space-between !important; align-items: center !important; padding: 10px 5% !important; flex-wrap: nowrap !important; }
    .logo { width: auto !important; margin: 0 !important; text-align: left !important; flex: 1 !important; display: flex !important; justify-content: flex-start !important; }
    .logo a img { height: 75px !important; max-width: 280px !important; }
    .logo h1 { font-size: 1.4rem; }
    .nav-actions { width: auto !important; justify-content: flex-end !important; margin: 0 !important; }
    .search-bar { width: 60%; }
    .search-bar input { width: 100%; font-size: 0.9rem; }
    
    /* Horizontal Scroll for Nav Links */
    .nav-links { 
        width: 100%; 
        overflow-x: auto; 
        white-space: nowrap; 
        padding-bottom: 5px; 
        gap: 20px; 
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { font-size: 0.9rem; }
    
    /* 3. Hero Section (Home Page) */
    .hero-section { padding: 40px 5% !important; background-position: left center !important; }
    .hero-main-title { font-size: 2.5rem !important; }
    .hero-subtitle { font-size: 1rem !important; margin-bottom: 20px !important; }
    .hero-features { flex-direction: column; gap: 10px !important; margin-bottom: 20px !important; }
    .feature-item span { font-size: 0.9rem !important; }
    .hero-bottom-badges { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 15px; }
    .bottom-badge { font-size: 0.8rem; }
    
    /* Hide benefits slider on mobile */
    .benefits-slider-container { display: none !important; }
    
    /* Reels Slider for Mobile */
    .reels-container {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 20px !important;
        scrollbar-width: none; /* Firefox */
        align-items: center !important;
    }
    .reels-container::-webkit-scrollbar { display: none; } /* Safari/Chrome */
    .reel-card-new {
        flex: 0 0 240px !important;
        width: 240px !important;
        scroll-snap-align: center !important;
        height: 420px !important;
    }
    
    /* Timeline Section */
    .timeline-section div {
        text-align: center !important;
    }
    
    /* How To Use Section */
    .how-to-use-section { padding: 20px 5% !important; }
    .how-to-use-container { padding: 20px 15px !important; min-height: auto !important; }
    .how-to-use-overlay { width: 100% !important; border-radius: 30px !important; background: rgba(20,15,10,0.85) !important; }
    .how-to-use-content { text-align: center !important; padding: 10px !important; }
    .how-to-use-content h2 { margin-bottom: 20px !important; }
    .step-header { flex-direction: column !important; justify-content: center !important; gap: 10px !important; margin-bottom: 5px !important; }
    .step-desc { margin-left: 0 !important; margin-top: 5px !important; font-size: 1rem !important; }
    
    /* Mission & Testimonials */
    .mission-section-card { width: 100% !important; min-width: 100% !important; flex: none !important; }
    .mission-card > div:first-child { width: 100% !important; padding: 30px 20px !important; background: linear-gradient(90deg, #fff 75%, rgba(255,255,255,0.5) 100%) !important; }
    
    /* What Makes Us Better */
    .better-container { background: none !important; box-shadow: none !important; padding: 0 !important; }
    .better-heading { color: #111 !important; margin-bottom: 30px !important; }
    .better-cards-wrapper { display: block !important; padding: 0 5px !important; }
    .better-card-item { position: sticky !important; top: 90px !important; margin: 0 auto 30px auto !important; padding: 25px 15px !important; border: 1px solid #eaeaea; width: auto !important; min-width: 0 !important; box-shadow: 0 -5px 20px rgba(0,0,0,0.1) !important; }
    
    /* Results Section */
    .results-section { background: none !important; padding: 40px 5% !important; }
    .results-heading { color: #111 !important; margin-bottom: 30px !important; }
    .results-cards-wrapper { display: block !important; padding: 0 5px !important; }
    .results-card-item { position: sticky !important; top: 90px !important; margin: 0 auto 30px auto !important; padding: 25px 15px !important; border: 1px solid #eaeaea; box-shadow: 0 -5px 20px rgba(0,0,0,0.1) !important; width: auto !important; min-width: 0 !important; }
    
    /* Health Split Image */
    .health-circle-img { width: 280px !important; height: 280px !important; margin: 0 auto; }
    
    /* 4. Products Page */
    .product-section { flex-direction: column !important; gap: 30px !important; padding: 30px 5% !important; }
    .product-section > div { width: 100% !important; max-width: 100% !important; }
    .product-info h1 { font-size: 1.8rem !important; }
    .product-title { font-size: 1.5rem !important; line-height: 1.2 !important; }
    .price { font-size: 1.6rem !important; }
    .mrp { font-size: 1rem !important; }
    
    /* Fix Product Actions Buttons */
    .product-actions { flex-direction: column !important; gap: 10px !important; }
    .btn-buy, .btn-cart { width: 100% !important; padding: 12px !important; font-size: 1rem !important; text-align: center; }

    /* Sticky footer Add to Cart */
    div[style*='position: fixed'][style*='bottom: 0'] { 
        padding: 10px 5% !important; 
        flex-direction: column !important; 
        gap: 10px !important; 
        height: auto !important; 
        text-align: center;
    }
    div[style*='position: fixed'][style*='bottom: 0'] > div { 
        width: 100% !important; 
        justify-content: center !important; 
        margin-bottom: 5px; 
    }
    div[style*='position: fixed'][style*='bottom: 0'] button { 
        width: 100% !important; 
        margin-left: 0 !important; 
    }

    /* Target grids with 1fr 1fr */
    div[style*='grid-template-columns: 1fr 1fr'] { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important; 
    }
    /* Target gap 50px containers (About us side-by-side) */
    div[style*='gap: 50px'] { 
        flex-direction: column !important; 
        gap: 20px !important; 
    }

    /* Fix large titles */
    h1[style*='font-size: 3rem'] { font-size: 2.2rem !important; }
    h2[style*='font-size: 3rem'] { font-size: 2.2rem !important; }

    /* 5. Cart Drawer */
    .cart-drawer { width: 92% !important; right: -92%; z-index: 100000 !important; }
    .cart-overlay { z-index: 99999 !important; }
    .cart-header { padding: 15px !important; }
    .cart-header h2 { font-size: 1.2rem; }
    .cart-items-container { padding: 15px !important; }
    
    .cart-item { 
        flex-direction: row !important; 
        align-items: flex-start !important; 
        text-align: left !important; 
        gap: 12px !important; 
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
    }
    .cart-item img { 
        width: 70px !important; 
        height: 70px !important; 
        margin-bottom: 0 !important; 
    }
    .cart-item-details { 
        width: 100% !important; 
        align-items: flex-start !important; 
    }
    .cart-item-title { font-size: 0.95rem !important; margin-bottom: 4px !important; }
    .cart-item-price { font-size: 0.85rem !important; }
    .cart-item-actions { 
        width: 100% !important; 
        justify-content: space-between !important; 
        margin-top: 8px !important; 
    }
    
    .remove-item { 
        position: static !important; 
        font-size: 0.85rem !important;
    }
    .qty-controls { transform: scale(0.9); transform-origin: left center; }
    
    .cart-footer { padding: 15px !important; }
    .cart-subtotal { font-size: 1.1rem !important; }
    .btn-checkout { padding: 12px !important; font-size: 1rem !important; }

    /* Container paddings */
    div[style*='padding: 80px'] { padding: 40px 5% !important; }
    div[style*='padding: 60px'] { padding: 30px 5% !important; }

    /* 8. Generic Inline Override for Side-by-Side Cards (What Makes Us Better, etc) */
    div[style*='flex-wrap: wrap'] { 
        justify-content: center !important; 
    }
    
    /* 9. Footer */
    footer { padding: 40px 2px 20px 0 !important; }
    #mobile-footer-layout { 
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; 
        gap: 15px !important; 
        text-align: center !important; 
    }
    #mobile-footer-layout .footer-logo-col, 
    #mobile-footer-layout .footer-fineprint-col, 
    #mobile-footer-layout .footer-learnmore-col, 
    #mobile-footer-layout .footer-subscribe-col {
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }
    #mobile-footer-layout .footer-logo-col { order: 1; padding-bottom: 20px !important; grid-column: 1 / -1 !important; width: 100% !important; }
    #mobile-footer-layout .footer-logo-col a { justify-content: center !important; width: 100% !important; }
    #mobile-footer-layout .footer-logo-col img { 
        margin: 0 auto !important; 
        width: 180px !important; 
        max-width: 100% !important; 
        height: auto !important; 
    }
    #mobile-footer-layout .footer-learnmore-col { order: 2; grid-column: auto !important; text-align: center !important; }
    #mobile-footer-layout .footer-fineprint-col { order: 3; grid-column: auto !important; text-align: center !important; }
    #mobile-footer-layout .footer-learnmore-col ul, #mobile-footer-layout .footer-fineprint-col ul { padding: 0 !important; margin: 0 !important; }
    #mobile-footer-layout .footer-learnmore-col ul li a, #mobile-footer-layout .footer-fineprint-col ul li a { font-size: 0.85rem !important; white-space: nowrap !important; }
    #mobile-footer-layout .footer-learnmore-col h4, #mobile-footer-layout .footer-fineprint-col h4 { font-size: 0.95rem !important; white-space: nowrap !important; }
    #mobile-footer-layout .footer-subscribe-col { order: 4; margin-top: 20px !important; grid-column: 1 / -1 !important; width: 100% !important; }
    
    #mobile-footer-layout .social-icons { justify-content: center !important; width: 100% !important; margin: 20px auto 0 !important; }
}

@media (max-width: 480px) {
    .hero-main-title { font-size: 2rem !important; }
    .product-info h1 { font-size: 1.6rem !important; }
    .price { font-size: 1.4rem !important; }
}

/* Desktop hidden state for hamburger */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
}

/* Mobile overrides for dropdown */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        position: absolute !important;
        right: 5% !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }
    .navbar {
        position: relative !important;
    }
    .nav-links {
        display: none !important; /* Hide by default */
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #111 !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px 0 !important;
        border-top: 1px solid #333 !important;
        box-shadow: 0 10px 10px rgba(0,0,0,0.5) !important;
        z-index: 9999 !important;
        white-space: normal !important;
    }
    .nav-links.show-menu {
        display: flex !important;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}

/* Desktop hidden state for bottom nav */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* Hide nav actions from header on mobile, EXCEPT the hamburger menu */
    .nav-actions .search-bar,
    .nav-actions > a {
        display: none !important;
    }
    
    /* Ensure body has padding so content doesn't hide behind fixed bottom bar */
    body {
        padding-bottom: 70px !important;
    }

    /* Style the new bottom sticky nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        padding: 12px 0;
        border-top: 1px solid #eee;
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #555;
        font-size: 0.75rem;
        text-decoration: none;
        font-weight: 500;
        flex: 1;
    }

    .mobile-bottom-nav a i {
        font-size: 1.2rem;
        margin-bottom: 4px;
        color: #222;
    }
}

@media (max-width: 768px) { .about-section-heading { font-size: 1.8rem !important; margin-bottom: 25px !important; line-height: 1.3 !important; } }

html { overflow-x: clip; width: 100%; max-width: 100vw; }
body { overflow-x: clip; width: 100%; max-width: 100vw; }
