/* ============================================
   AARHA FOODS - Premium Design System
   ============================================ */

:root {
    --green: #1FB57E;
    --green-dark: #0D4C39;
    --green-deep: #083528;
    --green-light: #3AD9A2;
    --cream: #12100B;
    --cream-dark: #1B1712;
    --gold: #F2B43C;
    --gold-light: #FFD98A;
    --brown: #B98A5C;
    --brown-light: #D4AC82;
    --chilli: #FF5147;
    --chilli-light: #FF7A6F;
    --saffron: #FFA040;
    --teal: #2BC6C9;
    --violet: #A78BFA;
    --berry: #FF6FB0;
    --white: #FFFFFF;
    --black: #0B0906;
    --text: #F5EEDF;
    --text-light: #B4A88F;
    --border: #2C2418;
    --surface: #191510;
    --surface-2: #221C14;
    --cream-text: #F5EEDC;
    --glass: rgba(25, 21, 16, 0.78);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.55);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

/* ============================================
   OFFERS STRIP
   ============================================ */

.offers-strip {
    background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
    color: var(--gold-light);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    z-index: 1002;
}

.offers-track {
    display: inline-flex;
    animation: offers-scroll 30s linear infinite;
    gap: 48px;
    padding-left: 24px;
}

.offers-track span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offers-track span i {
    color: var(--gold);
}

@keyframes offers-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 116px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(196, 152, 42, 0.22);
}

.logo-img-md {
    width: 56px;
    height: 56px;
}

.mm-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--gold);
}

/* Mobile menu logo */
.mobile-menu-header .logo-text {
    font-size: 26px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: rgba(27, 77, 62, 0.06);
}

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

.nav-action-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.nav-action-btn:hover {
    background: var(--cream-dark);
    color: var(--green);
}

.nav-action-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--chilli);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.cart-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.cart-btn.bump::after {
    animation: cart-bump 0.6s ease;
}

@keyframes cart-bump {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.4); }
    100% { opacity: 0; transform: scale(1); }
}

.nav-whatsapp {
    width: 42px;
    height: 42px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--green);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    display: none;
    border-top: 1px solid var(--border);
}

.search-overlay.active {
    display: block;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
    border-bottom: 2px solid var(--green);
    padding-bottom: 8px;
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-family: var(--font-body);
    color: var(--text);
    background: transparent;
}

.search-container button {
    border: none;
    background: none;
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
}

.search-results {
    max-width: 700px;
    margin: 12px auto 0;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--cream);
}

.search-result-item .sr-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-item .sr-thumb svg {
    width: 100%;
    height: 100%;
    display: block;
}

.search-result-item .sr-thumb .photo-canvas img.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-result-item .sr-name {
    font-weight: 500;
    font-size: 14px;
}

.search-result-item .sr-price {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--cream);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-close {
    border: none;
    background: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
}

.mobile-menu-links a {
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    background: var(--cream-dark);
    color: var(--green);
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-weight: 500;
}

.mobile-menu-contact a:first-child {
    color: var(--green);
}

.mobile-menu-contact a:last-child {
    background: #25D366;
    color: white;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(27, 77, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27, 77, 62, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: calc(100vh - 76px - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(27, 77, 62, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--cream) 0%, #FDF9F0 40%, var(--cream-dark) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.spice-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--gold);
    opacity: 0.3;
    animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    max-width: 900px;
    text-align: center;
    padding: 60px 24px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.08), rgba(201, 162, 39, 0.08));
    border: 1px solid rgba(27, 77, 62, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.08;
    color: var(--green-dark);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--chilli));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(107, 78, 61, 0.1);
}

.trust-badge i {
    color: var(--green);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.hero-scroll a {
    color: var(--green);
    font-size: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    padding: 12px 0;
    overflow: hidden;
}

.trust-strip-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: trust-scroll 25s linear infinite;
}

.trust-item {
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--gold);
}

@keyframes trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 80px 0;
    background: var(--cream);
}

.product-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.product-search {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 18px;
}

.product-search i {
    color: var(--green);
}

.product-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-family: var(--font-body);
}

.product-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.product-sort select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.products-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.products-empty i {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 16px;
}

/* Product Card */
.product-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(229, 220, 200, 0.5);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    cursor: pointer;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.5s ease;
    position: relative;
}

.product-card:hover .product-img-placeholder {
    transform: scale(1.05);
}

.product-img-placeholder.product-art {
    gap: 0;
    overflow: hidden;
    display: block;
}

.product-img-placeholder.product-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.photo-canvas {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
}

.photo-canvas img.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-price-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(12, 59, 46, 0.35);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.img-price-tag::before {
    content: '\f02b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--gold-light);
}

.product-img-placeholder i {
    font-size: 56px;
    color: rgba(27, 77, 62, 0.3);
}

.product-img-placeholder span {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--brown);
    font-weight: 600;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--chilli);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-badge.popular {
    background: var(--gold);
    color: var(--green-dark);
}

.product-badge.new {
    background: var(--green);
}

.product-card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.product-card-wishlist:hover {
    transform: scale(1.1);
}

.product-card-wishlist.active {
    color: var(--chilli);
}

.product-card-wishlist i {
    font-size: 16px;
}

.product-card-body {
    padding: 18px;
}

.product-card-category {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    cursor: pointer;
    transition: var(--transition);
}

.product-card-title:hover {
    color: var(--green-light);
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-weight-select {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.weight-option {
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--surface);
    color: var(--text);
}

.weight-option:hover {
    border-color: var(--green);
}

.weight-option.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.offer-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-tag {
    font-size: 12px;
    color: var(--chilli);
    font-weight: 600;
}

.product-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--gold);
    font-size: 13px;
}

.rating i {
    font-size: 12px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-light);
}

.product-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-qty {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.btn-qty:hover {
    background: var(--cream);
}

.product-qty-display {
    font-weight: 600;
    font-size: 14px;
    min-width: 28px;
    text-align: center;
}

.pc-btn {
    flex: 1;
    padding: 10px 8px;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-btn:hover {
    background: var(--green);
    color: white;
}

.pc-btn.fill {
    background: var(--green);
    color: white;
}

.pc-btn.fill:hover {
    background: var(--green-light);
}

.pc-btn-whatsapp {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: none;
    background: #25D366;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pc-btn-whatsapp:hover {
    transform: scale(1.08);
}

/* ============================================
   SHOWCASE SECTIONS
   ============================================ */

.showcase-section {
    padding: 80px 0;
}

.papad-showcase {
    background:
        radial-gradient(ellipse 60% 55% at 85% 15%, rgba(242, 180, 60, 0.10), transparent 60%),
        linear-gradient(135deg, var(--cream) 0%, var(--surface) 100%);
}

.showcase-gallery {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 24px 30px;
    scrollbar-width: thin;
}

.showcase-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.showcase-card {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.showcase-img {
    width: 300px;
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.showcase-img:hover .placeholder-icon {
    transform: scale(1.2) rotate(10deg);
}

.showcase-img .placeholder-icon {
    transition: transform 0.5s ease;
}

.papad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    position: relative;
}

.papad-placeholder .placeholder-icon,
.papad-placeholder span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    background: rgba(8, 42, 33, 0.35);
    padding: 6px 14px;
    border-radius: 24px;
    backdrop-filter: blur(4px);
}

.papad-placeholder i {
    font-size: 56px;
}

.papad-placeholder .papad-art {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.5s ease;
}

.showcase-img:hover .papad-art {
    transform: scale(1.06);
}

.papad-placeholder .papad-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.papad-placeholder span {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pp-1 {
    background: linear-gradient(135deg, #D4A853, #B8863B, #96682D);
}
.pp-2 {
    background: linear-gradient(135deg, #C98A3B, #A96B2A, #8B5723);
}
.pp-3 {
    background: linear-gradient(135deg, #E8C860, #D4A853, #B8863B);
}
.pp-4 {
    background: linear-gradient(135deg, #8B5E3C, #6B4E3D, #4C3729);
}
.pp-5 {
    background: linear-gradient(135deg, #F0D089, #D4A853, #B8863B);
}
.pp-6 {
    background: linear-gradient(135deg, #5C8A72, #3B6B55, #2C4E3F);
}

.masala-showcase {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(192, 57, 43, 0.06) 0%, transparent 60%),
        var(--cream);
}

.spice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.spice-card {
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.spice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.spice-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.4s ease;
}

.spice-card:hover .spice-img {
    transform: scale(1.1) rotate(10deg);
}

.spice-img svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.spice-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
}

.sp-1 { background: linear-gradient(135deg, #C0392B, #96281B); }
.sp-2 { background: linear-gradient(135deg, #E67E22, #D35400); }
.sp-3 { background: linear-gradient(135deg, #7D8C4F, #5C6B3B); }
.sp-4 { background: linear-gradient(135deg, #8B5E3C, #6B4E3D); }
.sp-5 { background: linear-gradient(135deg, #4A4A4A, #2C2C2C); }
.sp-6 { background: linear-gradient(135deg, #A0522D, #7B3F00); }
.sp-7 { background: linear-gradient(135deg, #C0392B, #8E2C1B); }
.sp-8 { background: linear-gradient(135deg, #D4A853, #B8863B); }
.sp-9 { background: linear-gradient(135deg, #8B4513, #6B3410); }
.sp-10 { background: linear-gradient(135deg, #96712C, #7A5A20); }
.sp-11 { background: linear-gradient(135deg, #5C8A72, #3B6B55); }
.sp-12 { background: linear-gradient(135deg, #F5EFE6, #D9CBBD, #B8A892); }

/* ============================================
   SPICE GALLERY SECTION
   ============================================ */

.spice-gallery-section {
    padding: 90px 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 10%, rgba(196, 152, 42, 0.06), transparent 60%),
        linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.spice-masonry {
    columns: 260px;
    column-gap: 16px;
}

.sg-tile {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sg-tile:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-md);
}

.sg-art {
    position: relative;
    overflow: hidden;
}

.sg-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sg-tile.t0 .sg-art { aspect-ratio: 4 / 5; }
.sg-tile.t1 .sg-art { aspect-ratio: 4 / 3; }
.sg-tile.t2 .sg-art { aspect-ratio: 3 / 4; }
.sg-tile.t3 .sg-art { aspect-ratio: 1 / 1; }

.sg-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 14px 12px;
    background: linear-gradient(to top, rgba(8, 42, 33, 0.88), transparent);
}

.sg-label span {
    color: var(--cream);
    font-family: var(--font-accent);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* ============================================
   COMBOS SECTION
   ============================================ */

.combos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.combos-section .section-title {
    color: var(--cream);
}

.combos-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.combos-section .section-tag {
    background: rgba(201, 162, 39, 0.15);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.combo-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.combo-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

.combo-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold), var(--chilli));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.combo-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 77, 62, 0.6);
    font-size: 64px;
}

.combo-body {
    padding: 22px;
    color: var(--cream);
}

.combo-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.combo-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.combo-count {
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

.combo-price {
    margin-bottom: 16px;
}

.combo-price .combo-original {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-right: 8px;
}

.combo-price .combo-offer {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-light);
}

.combo-price .combo-save {
    font-size: 12px;
    color: #7CFC98;
    font-weight: 600;
    margin-left: 8px;
}

/* ============================================
   WHY AARHA SECTION
   ============================================ */

.why-section {
    padding: 80px 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.why-card {
    background: var(--surface);
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(229, 220, 200, 0.5);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--green);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-8deg);
}

.why-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: 80px 0;
    background: var(--surface);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.story-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat {
    background: var(--cream);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
}

.story-visual {
    position: relative;
}

.story-image {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.story-placeholder {
    background: linear-gradient(135deg, var(--green-light), var(--green-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--cream);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.story-placeholder span {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   LOCAL SECTION
   ============================================ */

.local-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

.local-grid {
    display: flex;
    gap: 32px;
    align-items: start;
}

.local-areas {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.area-tag {
    padding: 12px 20px;
    background: var(--surface);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.area-tag:hover {
    border-color: var(--gold);
}

.area-tag.active {
    background: var(--green);
    color: white;
}

.local-info {
    flex: 1.4;
}

.local-address {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.local-address i {
    font-size: 22px;
    color: var(--chilli);
}

.local-address strong {
    display: block;
    font-size: 14px;
    color: var(--green-dark);
}

.local-address span {
    font-size: 13px;
    color: var(--text-light);
}

.local-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.map-placeholder {
    height: 260px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(47, 202, 130, 0.16), transparent 60%),
        linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
    position: relative;
}

.map-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--brown);
}

.map-inner i {
    width: 56px;
    height: 56px;
    background: var(--chilli);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
    animation: map-pin 2s ease-in-out infinite;
}

@keyframes map-pin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.map-inner span {
    font-size: 13px;
    font-weight: 500;
}

.local-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   BULK SECTION
   ============================================ */

.bulk-section {
    padding: 80px 0;
    background: var(--surface);
}

.bulk-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

.bulk-customers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.bulk-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--green-dark);
    transition: var(--transition);
}

.bulk-type i {
    color: var(--gold);
}

.bulk-type:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Forms */
.bulk-form,
.contact-form,
.franchise-form {
    background: var(--cream);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ============================================
   FRANCHISE SECTION
   ============================================ */

.franchise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark), #0F2A20);
    color: var(--cream);
}

.franchise-section .section-title {
    color: var(--cream);
}

.franchise-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 48px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.benefit-card i {
    font-size: 20px;
    color: var(--gold);
}

.benefit-card span {
    font-size: 13px;
    font-weight: 500;
}

/* Franchise Steps */
.franchise-steps {
    margin-bottom: 48px;
}

.steps-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(201, 162, 39, 0.1);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: 0.9;
}

.step-card h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.franchise-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--cream);
    margin-bottom: 24px;
}

.franchise-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cream);
}

.franchise-form .form-group label {
    color: var(--gold-light);
}

.franchise-form .form-group input,
.franchise-form .form-group select,
.franchise-form .form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--cream);
}

.franchise-form .form-group input:focus,
.franchise-form .form-group select:focus,
.franchise-form .form-group textarea:focus {
    border-color: var(--gold);
}

.franchise-form .form-group input::placeholder,
.franchise-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.franchise-form .form-group select option {
    background: var(--green-dark);
    color: var(--cream);
}

.franchise-actions {
    text-align: center;
    margin-top: 20px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #7CFC98, #00C853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    animation: success-pop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes success-pop {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--cream);
}

.form-success p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(229, 220, 200, 0.5);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    font-family: var(--font-accent);
    font-size: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review-author strong {
    display: block;
    font-size: 14px;
    color: var(--green-dark);
}

.review-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: var(--surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--cream);
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: var(--transition);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--surface);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: var(--surface);
    padding: 22px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--green);
    font-weight: 500;
}

.contact-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */

.social-section {
    padding: 60px 0;
    background: var(--green-dark);
    text-align: center;
}

.social-content h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--cream);
    margin-bottom: 8px;
}

.social-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cream);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
}

.social-link.instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-link.facebook:hover { background: #1877F2; }
.social-link.youtube:hover { background: #FF0000; }
.social-link.whatsapp:hover { background: #25D366; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand .footer-logo .logo-img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.3));
    background: var(--cream);
    padding: 4px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
}

.footer-tagline {
    font-size: 14px;
    color: var(--gold-light);
    font-style: italic;
    font-family: var(--font-accent);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cream);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--green-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-col p {
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-col p i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-col p a {
    padding: 0;
    display: inline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-overlay,
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--surface);
    z-index: 1501;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

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

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

.cart-header h3 {
    font-size: 20px;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--gold);
}

.cart-close,
.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text);
}

.cart-close:hover,
.modal-close:hover {
    background: var(--chilli);
    color: white;
    transform: rotate(90deg);
}

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

.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 12px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-art {
    width: 100%;
    height: 100%;
}

.cart-item-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cart-item-art .photo-canvas img.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--chilli);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

.cart-summary {
    margin-bottom: 14px;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    color: var(--text);
}

.cart-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.coupon-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.coupon-row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
}

.coupon-row input:focus {
    border-color: var(--green);
}

.cart-footer .btn {
    margin-top: 8px;
}

/* ============================================
   PRODUCT MODAL
   ============================================ */

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 920px;
    max-width: 95vw;
    max-height: 90vh;
    background: var(--surface);
    border-radius: var(--radius-lg);
    z-index: 1502;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.modal-body {
    max-height: 90vh;
    overflow-y: auto;
}

.pdm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pdm-gallery {
    position: relative;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(27, 77, 62, 0.4);
}

.pdm-gallery .placeholder-icon {
    font-size: 96px;
}

.pdm-main-art {
    width: 100%;
    height: 100%;
}

.pdm-main-art svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pdm-main-art .photo-canvas img.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdm-thumbs .thumb .photo-canvas img.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdm-thumbs {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.pdm-thumbs .thumb {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--green);
    transition: var(--transition);
}

.pdm-thumbs .thumb.active {
    border-color: var(--green);
}

.pdm-thumbs .thumb svg {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
}

.pdm-info {
    padding: 32px;
}

.pdm-category {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pdm-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.pdm-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pdm-rating .stars {
    color: var(--gold);
}

.pdm-rating .stars i {
    font-size: 14px;
}

.pdm-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pdm-ingredients h4,
.pdm-details h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdm-ingredients {
    margin-bottom: 16px;
}

.pdm-ingredients p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.pdm-details {
    margin-bottom: 20px;
}

.pdm-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.pdm-detail-item i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 14px;
}

.pdm-weight-select {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

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

.pdm-price .price {
    font-size: 28px;
}

.pdm-price .offer-price {
    font-size: 17px;
}

.pdm-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pdm-qty .qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pdm-qty .qty-btn:hover {
    background: var(--cream);
}

.pdm-qty .qty-display {
    font-size: 18px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.pdm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pdm-actions .btn {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-dark);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4);
}

.pdm-bulk {
    text-align: center;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.pdm-bulk p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.pdm-bulk .btn {
    font-size: 12px;
    padding: 10px 20px;
}

.pdm-reviews {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.pdm-reviews h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.pdm-review-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.pdm-review-item:last-child {
    border-bottom: none;
}

.pdm-review-item .stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 4px;
}

.pdm-review-item p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

.pdm-review-item .review-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */

.checkout-modal-content {
    width: 720px;
    max-width: 95vw;
}

.checkout-body {
    padding: 32px;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.checkout-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin: 20px 0 12px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--green);
}

.payment-option input {
    accent-color: var(--green);
}

.payment-option span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.payment-option span i {
    color: var(--green);
}

.payment-option:has(input:checked) {
    border-color: var(--green);
    background: rgba(27, 77, 62, 0.05);
}

.checkout-summary {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.checkout-summary h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.checkout-summary .cs-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
}

.checkout-summary .cs-row.total {
    font-weight: 700;
    font-size: 17px;
    color: var(--green-dark);
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
}

.checkout-success {
    text-align: center;
    padding: 40px 20px;
}

.checkout-success .success-icon {
    background: linear-gradient(135deg, #7CFC98, #00C853);
    width: 100px;
    height: 100px;
    font-size: 50px;
}

.checkout-success h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--green-dark);
    margin: 16px 0;
}

.checkout-success p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 998;
    padding: 8px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    color: var(--text-light);
    position: relative;
    font-family: var(--font-body);
}

.mbn-item i {
    font-size: 20px;
}

.mbn-item.active {
    color: var(--green);
}

.mbn-item .badge {
    position: absolute;
    top: -4px;
    right: calc(50% - 18px);
    background: var(--chilli);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Toast notification */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green-dark);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 90vw;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .local-grid {
        flex-direction: column;
    }
    .bulk-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .pdm-grid {
        grid-template-columns: 1fr;
    }
    .pdm-gallery {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 768px) {
    .offers-strip {
        display: none;
    }
    .nav-container {
        height: 84px;
        padding: 0 16px;
        gap: 12px;
    }
    .logo-img {
        width: 60px;
        height: 60px;
    }
    .logo-text {
        font-size: 26px;
    }
    .nav-logo a {
        gap: 12px;
    }
    .nav-whatsapp {
        display: none;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero {
        min-height: calc(100vh - 64px);
    }
    .mobile-bottom-nav {
        display: flex;
    }
    .whatsapp-float {
        bottom: 76px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    body {
        padding-bottom: 60px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .payment-options {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 32px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-ctas .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .spice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cart-drawer {
        width: 100%;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .product-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .product-search,
    .product-filters,
    .product-sort {
        width: 100%;
    }
    .product-filters {
        justify-content: center;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   DARK MODE - COLOURFUL ON BLACK
   ============================================ */

body {
    background-color: var(--cream);
    background-image:
        radial-gradient(700px 420px at 8% 6%, rgba(47, 202, 130, 0.09), transparent 60%),
        radial-gradient(760px 460px at 92% 16%, rgba(167, 139, 250, 0.10), transparent 62%),
        radial-gradient(720px 480px at 85% 88%, rgba(255, 111, 176, 0.08), transparent 60%),
        radial-gradient(640px 400px at 12% 94%, rgba(242, 180, 60, 0.10), transparent 60%);
    background-attachment: fixed;
    color: var(--text);
}

/* NAVBAR & CHROME */

.navbar {
    background: rgba(14, 12, 8, 0.82);
    border-bottom-color: var(--border);
}

.navbar.scrolled {
    background: rgba(10, 8, 5, 0.94);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.offers-strip {
    background: linear-gradient(90deg, #E4572E, #FFA040, #F2B43C, #1FB57E, #2BC6C9, #A78BFA, #E4572E);
    color: #0B0906;
    font-weight: 700;
}

.offers-track span i {
    color: var(--green-deep);
}

.mobile-menu {
    background: var(--cream-dark);
}

.mobile-menu-links a {
    color: var(--cream-text);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--gold);
    background: rgba(47, 202, 130, 0.10);
}

.mobile-menu-contact a {
    color: var(--cream-text);
}

.search-overlay {
    background: rgba(9, 7, 4, 0.94);
}

.logo-text {
    color: var(--gold);
}

.logo-text span {
    color: var(--green-light);
}

/* HERO */

.hero {
    min-height: calc(100vh - 116px - 35px);
    background:
        radial-gradient(ellipse 55% 45% at 80% 20%, rgba(242, 180, 60, 0.14), transparent 60%),
        radial-gradient(ellipse 60% 50% at 18% 82%, rgba(47, 202, 130, 0.16), transparent 62%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(167, 139, 250, 0.08), transparent 60%),
        radial-gradient(ellipse 90% 80% at 50% 100%, rgba(255, 81, 71, 0.10), transparent 65%),
        linear-gradient(160deg, #0E0B07 0%, #161008 45%, #0B1210 100%);
}

.hero-badge {
    background: linear-gradient(135deg, rgba(31, 181, 126, 0.14), rgba(242, 180, 60, 0.14));
    border-color: rgba(242, 180, 60, 0.25);
    color: var(--gold-light);
}

.hero-title {
    color: #FFFFFF;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--chilli), var(--violet));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-light);
}

.trust-badge {
    background: var(--glass);
    border-color: rgba(245, 238, 223, 0.12);
    color: var(--text);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* SECTION HEADINGS */

.section-tag {
    color: var(--gold-light);
}

.section-title {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-light);
}

/* PRODUCT CARDS */

.product-card {
    background: var(--surface);
    border-color: var(--border);
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.6);
}

.product-img-placeholder {
    background: var(--surface-2);
}

.product-img-placeholder i {
    color: rgba(245, 238, 223, 0.20);
}

.product-img-placeholder span {
    color: var(--brown-light);
}

.product-card-title {
    color: var(--cream-text);
}

.product-card-category {
    color: var(--gold-light);
}

.product-card-wishlist {
    background: var(--glass);
    color: var(--text);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.product-card-wishlist.active {
    background: var(--chilli);
    color: #fff;
}

.product-badge {
    background: linear-gradient(135deg, var(--chilli), var(--saffron));
}

.product-badge.popular {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--green-deep);
}

.product-badge.new {
    background: linear-gradient(135deg, var(--green), var(--teal));
}

.combo-badge {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff;
}

.photo-canvas {
    background: var(--surface-2);
}

/* SPICE CARDS + GALLERY */

.spice-card span {
    color: var(--gold-light);
}

.spice-gallery-section {
    background:
        radial-gradient(ellipse 60% 50% at 15% 10%, rgba(242, 180, 60, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 45% at 88% 90%, rgba(47, 202, 130, 0.08), transparent 60%),
        linear-gradient(180deg, var(--cream) 0%, var(--surface) 100%);
}

.sg-label {
    color: var(--cream-text);
}

/* SHOWCASE + STORY */

.showcase-gallery .showcase-img {
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
}

.story-card,
.story-box {
    background: var(--surface);
    border-color: var(--border);
}

.story-placeholder {
    color: rgba(245, 238, 223, 0.35);
}

.combo-image {
    color: rgba(245, 238, 223, 0.35);
}

.combo-image .placeholder-icon,
.combo-badge {
    color: var(--gold-light);
}

/* WHY / STATS / LOCAL */

.why-card,
.benefit-card,
.area-tag,
.local-card,
.step-card,
.process-card {
    background: var(--surface);
    border-color: var(--border);
}

.why-card h3,
.step-card h3 {
    color: var(--cream-text);
}

.stat-value {
    color: var(--gold);
}

.area-tag {
    color: var(--cream-text);
}

.local-address strong {
    color: var(--cream-text);
}

.local-address p {
    color: var(--text-light);
}

/* BULK / FRANCHISE / FORMS */

.combos-section {
    color: var(--cream-text);
}

.bulk-type {
    color: var(--gold-light);
}

.franchise-section {
    color: var(--cream-text);
}

.franchise-form-wrapper,
.form-panel {
    background: var(--surface-2);
    border-color: var(--border);
}

.form-heading {
    color: var(--gold);
    border-bottom-color: var(--border);
}

.form-group label,
.franchise-form .form-group label {
    color: var(--cream-text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(242, 180, 60, 0.18);
}

::placeholder,
textarea::placeholder {
    color: var(--text-light);
    opacity: 1;
}

/* REVIEWS / FAQ / CONTACT */

.review-card {
    background: var(--surface);
    border-color: var(--border);
}

.review-author strong {
    color: var(--gold-light);
}

.faq-question {
    color: var(--cream-text);
}

.faq-item {
    background: var(--surface);
    border-color: var(--border);
}

.faq-answer {
    color: var(--text-light);
}

.contact-card {
    background: var(--surface);
    border-color: var(--border);
}

.contact-card h4 {
    color: var(--cream-text);
}

.contact-card i {
    color: var(--gold);
}

.social-section {
    color: var(--cream-text);
}

.social-link {
    background: var(--surface);
    color: var(--cream-text);
    border-color: var(--border);
}

/* FOOTER */

.footer,
.footer-col h4,
.footer-about,
.footer-links a,
.footer-contact p,
.footer-bottom {
    color: var(--cream-text);
}

.footer-logo span {
    color: var(--gold);
}

.footer-social a {
    color: var(--cream-text);
}

/* CART DRAWER */

.cart-drawer {
    background: var(--cream-dark);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.cart-header h3 {
    color: var(--gold);
}

.cart-item {
    background: var(--surface);
    border-color: var(--border);
}

.cart-item-name {
    color: var(--cream-text);
}

.cart-item-variant,
.cart-item-price {
    color: var(--text-light);
}

.cart-row.total {
    color: var(--gold);
}

.cart-drawer .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
}

.cart-drawer .btn-outline:hover {
    background: var(--gold);
    color: var(--green-deep);
}

/* PRODUCT MODAL */

.modal-box {
    background: var(--cream-dark);
}

.modal-close {
    background: var(--glass);
    color: var(--text);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pdm-gallery {
    background:
        radial-gradient(ellipse at 50% 35%, rgba(242, 180, 60, 0.16), transparent 55%),
        linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}

.pdm-gallery .placeholder-icon {
    color: rgba(245, 238, 223, 0.30);
}

.pdm-title {
    color: var(--gold);
}

.pdm-category {
    color: var(--gold-light);
}

.pdm-details h4,
.pdm-ingredients h4,
.pdm-reviews h4 {
    color: var(--gold);
    border-bottom-color: var(--border);
}

.pdm-thumbs {
    background: var(--glass);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pdm-thumbs .thumb {
    background: rgba(245, 238, 223, 0.06);
    border-color: transparent;
}

.pdm-thumbs .thumb.active {
    border-color: var(--gold);
}

/* CHECKOUT */
.checkout-form {
    background: var(--surface);
    border-color: var(--border);
}

.checkout-body h2 {
    color: var(--gold);
}

.checkout-body h3 {
    color: var(--cream-text);
}

.checkout-summary {
    background: var(--surface-2);
    border-color: var(--border);
}

.checkout-summary h4 {
    color: var(--cream-text);
}

.checkout-summary .cs-row.total {
    color: var(--gold);
}

.checkout-success h3 {
    color: var(--gold);
}

/* TOAST */

.toast {
    background: var(--surface-2);
    color: var(--cream-text);
    border: 1px solid rgba(242, 180, 60, 0.35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.toast i {
    color: var(--green-light);
}
