@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700;800&family=Cinzel:wght@500;700;900&display=swap');

html {
    overflow-y: scroll;
}

:root {
    --bg-primary: #FDFCF9; /* Brighter, elegant cream/linen */
    --bg-secondary: #FFFFFF;
    --text-primary: #1C1917; /* Deep charcoal */
    --text-secondary: #57534E;
    --accent: #4A1C09; /* Richer, deeper cacao brown */
    --accent-light: #7A3311;
    --honey: #D97706;
    --gold: linear-gradient(135deg, #CFAD62 0%, #FDF8D1 25%, #B78929 50%, #FCF5B3 75%, #A8751A 100%);
    --gold-flat: #B78929;
    --gold-bright: #F5D061;
    --glass: rgba(253, 252, 249, 0.75);
    --shadow-sm: 0 4px 12px rgba(74, 28, 9, 0.03);
    --shadow: 0 20px 40px -10px rgba(74, 28, 9, 0.08);
    --shadow-lg: 0 35px 80px -15px rgba(74, 28, 9, 0.15);
    --shadow-glow: 0 0 20px rgba(183, 137, 41, 0.15);
    --radius: 20px;
    --radius-sm: 10px;
    --radius-lg: 28px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Dynamic CMS Properties */
    --base-font-size: 16px;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: var(--base-font-size);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease-in-out;
}

.spa-fade {
    animation: smoothPageLoad 0.4s ease-out forwards;
}

@keyframes smoothPageLoad {
    0% { opacity: 0; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

html { overflow-y: scroll; background-color: var(--bg-primary); }

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar - PREMIUM & STEADY */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: var(--glass) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(74, 28, 9, 0.03);
    transition: none; /* Prevent flicker on scroll or state changes */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1C1917;
    letter-spacing: 2px;
}

.logo-text span {
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0px;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-align: center;
    padding: 0.25rem 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 6px;
    background: transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    outline: none;
}
.nav-links a:focus {
    outline: none;
}

.nav-links a:hover {
    color: var(--accent-light);
    background: rgba(74, 28, 9, 0.06); /* Highly elegant hover color and background */
}

/* Millets facts section styling */
.millet-facts {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    text-align: center;
}

.nav-links a:active,
.nav-links a:focus {
    outline: none;
}

.nav-links li.active a {
    color: var(--accent);
    background: rgba(74, 28, 9, 0.12); /* Elegant subtle background highlight */
    font-weight: 600;
}

/* Removed active underline pseudo-element to prevent layout shift */

@keyframes scaleIn {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    flex-shrink: 0;
}

.admin-link, .track-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.admin-link:hover, .track-link:hover {
    color: var(--accent);
}

.cart-btn {
    position: relative;
    cursor: pointer;
    background: var(--accent);
    border: none;
    font-size: 1.1rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(92, 38, 17, 0.2);
    transition: var(--transition);
}

.cart-btn:hover {
    transform: scale(1.08);
    background: var(--accent-light);
    box-shadow: 0 8px 20px rgba(92, 38, 17, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}
.mobile-menu-btn:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--honey);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 12s linear;
    display: flex;
    align-items: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.7) 0%, rgba(28, 25, 23, 0.45) 60%, rgba(28, 25, 23, 0.15) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.hero-content {
    max-width: 650px;
}

.slide.active .hero-content {
    /* no transform needed - children animate individually */
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--heading-font);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.slide.active h1 {
    transform: translateY(0);
    opacity: 1;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
}

.slide.active p {
    transform: translateY(0);
    opacity: 1;
}

.hero .btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.25);
    transform: translateY(20px);
    opacity: 0;
    letter-spacing: 0.03em;
    transition: transform 0.8s ease-out 0.7s, opacity 0.8s ease-out 0.7s, background 0.3s ease, box-shadow 0.3s ease;
}

.hero .btn:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
    color: #ffffff;
}

.slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeInSmooth {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.fade-in {
    animation: fadeInSmooth 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.millet-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    background: var(--bg-secondary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--accent);
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(92, 38, 17, 0.15);
}

.btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(92, 38, 17, 0.25);
}

/* Products Section */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(74, 28, 9, 0.04);
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(183, 137, 41, 0.25);
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 280px;
    background: #f8f6f3;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.35rem;
    font-family: var(--body-font);
}

.add-to-cart {
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(92, 38, 17, 0.2);
}

.product-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(92, 38, 17, 0.1);
}

/* Compact Category Section */
.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.category-card {
    background: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: var(--accent);
    background: var(--bg-primary);
}

.category-card h3 {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.category-card span {
    display: none; /* Hide 'View All' to save space */
}

/* Footer Fix */
footer .logo {
    color: white !important;
    text-transform: uppercase;
}

footer .logo span {
    color: var(--accent);
}

footer .logo::before {
    display: none; /* Remove icon in footer to prevent scramble */
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Cart Drawer Premium Update */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: rgba(253, 252, 249, 0.85);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    z-index: 2000;
    box-shadow: -15px 0 50px rgba(74, 28, 9, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-cart {
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 28, 9, 0.04);
    transition: var(--transition);
}

.cart-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.cart-item-img {
    width: 85px;
    height: 85px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Admin Dashboard */
.admin-section {
    padding: 8rem 0;
}

.admin-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 3rem;
}

.detail-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: none;
    animation: slideUp 0.5s ease-out;
}

.admin-sidebar {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    height: fit-content;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.admin-nav-item {
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.admin-nav-item.active {
    background: var(--accent);
    color: white;
}

.admin-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
}

/* Horizontal Form Layouts */
.form-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

@media (max-width: 600px) {
    .form-side-by-side {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.reviews-display {
    background: #f8fafc;
    padding: 1.2rem 1.5rem;
    border-radius: 24px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.review-flash-container {
    height: 140px;
    position: relative;
}

.review-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.review-content {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

/* Star Rating Selector */
.rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.rating-input span {
    font-size: 1.8rem;
    cursor: pointer;
    color: #e2e8f0;
    transition: color 0.2s, transform 0.1s ease;
}

.rating-input span:hover {
    transform: scale(1.15);
}

.rating-input span.active {
    color: #f59e0b !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Connect Section - Responsive */
.connect-col-right {
    border-left: 1px solid #f1f5f9;
    padding-left: 2rem;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    .mobile-menu-btn {
        display: block;
        background: var(--accent);
        color: white;
        border: none;
        font-size: 1.4rem;
        cursor: pointer;
        padding: 0.4rem 0.8rem;
        border-radius: 8px;
        transition: all 0.2s ease;
        box-shadow: 0 4px 10px rgba(74, 28, 9, 0.15);
    }
    .mobile-menu-btn:hover {
        background: var(--accent-light);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #FDFCF9 !important;
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 0;
        box-shadow: 0 25px 50px rgba(74, 28, 9, 0.15);
        z-index: 2000 !important;
        text-align: center;
        border-bottom: 2px solid var(--accent);
    }

    .nav-links li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(74, 28, 9, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        min-width: unset;
        width: 100%;
        border-radius: 0;
    }
    .nav-links li.active a {
        background: rgba(74, 28, 9, 0.08);
        color: var(--accent);
    }

    .connect-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .connect-col-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #f1f5f9;
        padding-top: 2rem;
    }

    .usp-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem !important;
    }

    .usp-sep {
        display: none !important;
    }

    .usp-item {
        text-align: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .usp-item .usp-icon {
        margin: 0 auto 0.3rem;
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-actions .track-link, .nav-actions .admin-link {
        display: none; /* Hide on mobile to save space, move to menu if needed */
    }

    .hero {
        min-height: 55vh;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.8rem;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Mobile Menu Overlay/Backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 25, 23, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations & Interactions */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSmooth {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

.fade-in {
    animation: fadeInSmooth 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Premium Button Enhancements */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(92, 38, 17, 0.2);
}

.btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 38, 17, 0.3);
}

/* Footer */
footer {
    background: #1C1917;
    color: #FAF8F5;
    padding: 5rem 0 3rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
    border-color: transparent;
    background: var(--accent);
}

/* ==========================================================================
   PREMIUM CUSTOM STYLES (v13 OVERHAUL)
   ========================================================================== */

/* Glassmorphic Navigation Enhancements */
nav {
    background: rgba(225, 215, 205, 0.9) !important; /* darker shade glassy translucent */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Elegant Focus States for Inputs */
input:focus, textarea:focus, select:focus {
    outline: none !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(92, 38, 17, 0.15) !important;
}

/* Grouped Sidebar Admin Styles */
.admin-nav-group {
    margin-bottom: 1.5rem;
}
.admin-nav-group-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.2rem;
}
.logout-btn {
    width: 100%;
    margin-top: 1.5rem;
    background: none;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.logout-btn:hover {
    background: #ef4444;
    color: white;
}

/* Vibrant Flashing Reviews Overlay */
.reviews-display {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FED7AA 100%) !important;
    padding: 2.2rem !important;
    border-radius: 24px !important;
    height: 100% !important;
    min-height: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(251, 146, 60, 0.15) !important;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.1) !important;
}
.reviews-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 237, 213, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.reviews-display::after {
    content: '“';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 11rem;
    font-family: var(--heading-font);
    color: rgba(92, 38, 17, 0.05);
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
    z-index: 0;
}
/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
    border-top: 1px solid rgba(92, 38, 17, 0.05);
    border-bottom: 1px solid rgba(92, 38, 17, 0.05);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.review-form-container {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(92, 38, 17, 0.05);
    box-shadow: var(--shadow);
}

.review-form-title {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: var(--accent);
    font-family: var(--heading-font);
}

.review-form-sub {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 300;
}

.review-form {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.review-input {
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(92, 38, 17, 0.1);
    border-radius: var(--radius-sm);
    background: #FAF8F5;
    font-family: inherit;
    font-size: 0.95rem;
    flex: 1;
    min-width: 120px;
    width: 100%;
    transition: var(--transition);
}

.review-input-wide {
    flex: 2;
    min-width: 160px;
}

.review-submit-btn {
    padding: 0.9rem 1.5rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =============================================
   TRIBE / JOIN SECTION
   ============================================= */
.tribe-section {
    padding: 1.8rem 0;
    background: var(--bg-primary);
}

.connect-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92, 38, 17, 0.04);
}

.tribe-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: var(--heading-font);
}

.tribe-sub {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.tribe-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tribe-input {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(92, 38, 17, 0.1);
    border-radius: var(--radius-sm);
    background: #FAF8F5;
    font-family: inherit;
    flex: 1;
    min-width: 180px;
    width: 100%;
    transition: var(--transition);
}

.tribe-btn {
    padding: 1rem 2rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-flash-container {
    height: 160px !important;
    position: relative !important;
    z-index: 1;
}
.review-card {
    position: absolute !important;
    width: 100% !important;
    opacity: 0 !important;
    transform: translateY(20px) scale(0.95) !important;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    pointer-events: none !important;
}
.review-card.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}
.review-content {
    font-family: var(--heading-font) !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    color: var(--accent) !important;
    margin-bottom: 0.6rem !important;
    font-style: italic !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.review-author {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: var(--text-primary) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: wrap;
}
.review-author::after {
    content: '✓ Verified Buyer';
    font-size: 0.6rem;
    font-weight: 700;
    background: #16a34a;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Dynamic Fly-to-Cart Animation */
.cart-fly-particle {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(92, 38, 17, 0.3);
    animation: flyParticle 0.8s cubic-bezier(0.06, 0.97, 0.41, 0.98) forwards;
}
@keyframes flyParticle {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); }
    100% { transform: scale(0.5); opacity: 0.5; }
}

/* Lightbox Modal Layout */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-family: var(--heading-font);
    font-size: 1.3rem;
}
.lightbox-close {
    position: absolute;
    top: -2rem;
    right: -2rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .admin-sidebar {
        padding: 1.5rem !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 1.2rem !important;
        width: 100% !important;
    }
    .admin-nav-group {
        margin-bottom: 0 !important;
        flex: 1 1 200px !important;
    }
    .admin-nav-group-title {
        padding-left: 0 !important;
        margin-bottom: 0.4rem !important;
    }
    .admin-nav-item {
        margin-bottom: 0.3rem !important;
        font-size: 0.85rem !important;
    }
    .logout-btn {
        margin-top: 1rem !important;
        width: 100% !important;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Blog Section Visual Upgrades */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(92, 38, 17, 0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(179, 135, 40, 0.2);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8f6f3;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.read-more {
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.read-more:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

/* Gallery Section Visual Upgrades */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 380px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(92, 38, 17, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(179, 135, 40, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.85) 0%, rgba(28, 25, 23, 0.4) 50%, transparent 100%);
    color: white;
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: white;
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* --- BENEFITS PAGE --- */
.millet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}
.millet-btn {
    padding: 0.9rem 1.8rem;
    border: 1px solid rgba(74, 28, 9, 0.08);
    border-radius: 50px;
    background: #FDFCF9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 0.9rem;
}
.millet-btn:hover {
    border-color: rgba(183, 137, 41, 0.4);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 28, 9, 0.05);
}
.millet-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(74, 28, 9, 0.25);
}
.detail-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 28, 9, 0.04);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
    animation: slideUp 0.5s ease-out;
}
.detail-card.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   GLOBAL STYLES â€” Gallery, Blog, Benefits
   ============================================== */

.read-more {
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.read-more:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 380px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(92, 38, 17, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(179, 135, 40, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.85) 0%, rgba(28, 25, 23, 0.4) 50%, transparent 100%);
    color: white;
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: white;
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* --- BENEFITS PAGE --- */
.millet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}
.millet-btn {
    padding: 0.9rem 1.8rem;
    border: 1px solid rgba(74, 28, 9, 0.08);
    border-radius: 50px;
    background: #FDFCF9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 0.9rem;
}
.millet-btn:hover {
    border-color: rgba(183, 137, 41, 0.4);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 28, 9, 0.05);
}
.millet-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(74, 28, 9, 0.25);
}
.detail-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 28, 9, 0.04);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
    animation: slideUp 0.5s ease-out;
}
.detail-card.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* ==============================================
   MOBILE RESPONSIVE — max-width: 768px
   ============================================== */
@media (max-width: 768px) {

    /* Navbar & Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.4s ease;
        box-shadow: 2px 5px 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .nav-links.active {
        left: 0;
    }
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    .menu-overlay.active {
        display: block;
    }
    .nav-links li {
        width: 100%;
        justify-content: center;
        height: auto;
    }
    .nav-links a {
        font-size: 1.4rem;
        padding: 1rem;
    }
    .nav-actions .admin-link, .nav-actions .track-link {
        display: none;
    }

    /* Typography & Container */
    .container {
        padding: 0 1.25rem;
    }
    h1 {
        font-size: 2rem !important;
    }
    h2 {
        font-size: 1.75rem !important;
    }

    /* Hero — transparent text block, reduced height */
    .hero-slider {
        height: 45vh !important;
        min-height: auto !important;
    }
    .hero {
        min-height: 45vh !important;
    }
    .hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        padding: 1rem !important;
    }
    .hero h1 {
        font-size: 2rem !important;
    }
    .hero p {
        font-size: 0.95rem !important;
    }

    /* Grids */
    .gallery-grid, .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .shop-grid, #featured-products, #all-products, #bulk-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    section {
        padding: 2rem 0 !important;
    }

    /* ── Reviews Section ────────────────────── */
    .reviews-section {
        padding: 1.5rem 0 !important;
    }
    .reviews-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .reviews-display {
        min-height: 180px !important;
        padding: 1.5rem 1.2rem !important;
        text-align: center !important;
        align-items: center !important;
    }
    .reviews-display h3 {
        font-size: 1.5rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    .review-flash-container {
        height: 130px !important;
        width: 100% !important;
    }
    .review-content {
        font-size: 1rem !important;
        text-align: center !important;
    }
    .review-author {
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .review-stars {
        text-align: center !important;
    }
    .review-form-container {
        padding: 1.5rem 1.2rem !important;
        text-align: center !important;
    }
    .review-form-title {
        font-size: 1.4rem !important;
        text-align: center !important;
    }
    .review-form-sub {
        text-align: center !important;
    }
    .review-form {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.7rem !important;
    }
    .rating-input {
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 0.3rem !important;
    }
    .review-input,
    .review-input-wide {
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .review-submit-btn {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* ── Tribe / Join Section ───────────────── */
    .tribe-section {
        padding: 1.2rem 0 !important;
    }
    .connect-card {
        padding: 1.5rem !important;
        border-radius: var(--radius) !important;
    }
    .tribe-title {
        font-size: 1.6rem !important;
    }
    .tribe-form {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .tribe-input {
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
    }
    .tribe-btn {
        width: 100% !important;
        text-align: center;
    }

    /* Product Cards */
    .product-image {
        height: 130px !important;
        object-fit: cover;
    }
    .product-card {
        border-radius: 12px !important;
    }
    .product-info {
        padding: 0.8rem !important;
    }
    .product-info h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem !important;
    }
    .product-price {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }
    .product-info .btn {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    .shop-hero {
        padding: 5rem 0 3rem !important;
    }
    .shop-hero h1 {
        font-size: 2rem !important;
    }

    /* Quick View Modal — slides up from bottom */
    #quick-view-modal {
        align-items: flex-end !important;
    }
    #quick-view-modal > div {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 92vh !important;
        border-radius: 20px 20px 0 0 !important;
        flex-direction: column !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    #quick-view-modal > div > div:first-of-type {
        min-height: 220px !important;
        height: 220px !important;
        flex: 0 0 220px !important;
        width: 100% !important;
    }
    #quick-view-modal > div > div:first-of-type img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    #quick-view-modal > div > div:last-of-type {
        padding: 1.2rem 1.5rem 2rem !important;
        overflow-y: visible !important;
        flex: 1 1 auto !important;
        max-height: none !important;
    }
    #quick-view-modal > div > div:last-of-type h2 {
        font-size: 1.4rem !important;
    }
    #quick-view-modal .var-pills {
        gap: 0.5rem !important;
    }

    /* Benefits Page */
    .millet-nav {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    .millet-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.82rem;
    }
    .detail-card {
        border-radius: 20px !important;
        padding: 1.5rem !important;
    }
    .detail-card.active {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .gallery-item {
        height: 250px !important;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.6rem !important;
    }
    .section-title p {
        font-size: 0.95rem !important;
    }

    /* Footer */
    .footer-address, .footer-phone, .footer-email {
        font-size: 0.9rem;
    }
    footer .container {
        text-align: center;
    }
}