/* ===========================================================
   Saptaashwah — Design tokens
   Palette drawn from the product itself: dried cow-dung tikki,
   turmeric, embers and temple smoke rather than a generic
   "warm cream + terracotta" template.
   =========================================================== */
:root {
    --ember:      #8A5A24;   /* primary — matches the Chandrahass logo's warm brown-gold */
    --ember-dark: #6B4419;
    --turmeric:   #D9A441;   /* accent — haldi / marigold */
    --turmeric-soft: #E9C778;
    --ash-cream:  #F4EAD8;   /* background — matches the logo's cream circle tone */
    --smoke:      #6E6357;   /* muted text — rising smoke grey */
    --charcoal:   #2B211C;   /* body text — charcoal ember */
    --clay:       #C08552;   /* secondary accent */
    --leaf:       #4C6B4E;   /* success / eco tone — matches the logo's banyan tree leaves */
    --white:      #FFFDF8;
    --line:       #E3D6BC;

    --font-display: 'Tiro Devanagari Hindi', 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Noto Sans', -apple-system, sans-serif;

    --radius: 6px;
    --shadow: 0 6px 24px rgba(43, 33, 28, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--ash-cream);
    color: var(--charcoal);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; color: var(--ember-dark); font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.hi { font-family: var(--font-body); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Top utility bar ---------- */
.topbar {
    background: var(--ember-dark);
    color: var(--turmeric-soft);
    font-size: 13px;
    padding: 6px 0;
    text-align: center;
    letter-spacing: .2px;
}

/* ---------- Header ---------- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 40;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--ember);
    letter-spacing: .3px;
    line-height: 1.1;
    white-space: nowrap;
}
.brand-sub {
    font-size: 10px;
    color: var(--smoke);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}
nav.main-nav { display: flex; gap: 30px; flex-wrap: nowrap; }
nav.main-nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}
nav.main-nav a:hover { color: var(--ember); }
nav.main-nav a.active { color: var(--ember); }
nav.main-nav a.active::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -4px;
    height: 2px; background: var(--turmeric);
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.search-toggle {
    background: none; border: none; cursor: pointer;
    display: inline-flex; align-items: center; color: var(--charcoal); font-size: 22px;
}
.search-toggle:hover { color: var(--ember); }
.search-panel {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.search-panel.open { display: block; }
.search-form {
    display: flex; align-items: center; gap: 10px;
    background: var(--ash-cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--smoke);
}
.search-form input {
    flex: 1; border: none; background: transparent; font-size: 15px; font-family: var(--font-body);
    outline: none;
}
.search-close {
    background: none; border: none; font-size: 24px; cursor: pointer; color: var(--smoke); line-height: 1;
}
.account-link {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    color: var(--charcoal);
}
.account-link:hover { color: var(--ember); }
.cart-link {
    position: relative;
    font-size: 22px;
    color: var(--charcoal);
}
.cart-link:hover { color: var(--ember); }
.cart-badge {
    position: absolute; top: -8px; right: -10px;
    background: var(--turmeric); color: var(--ember-dark);
    font-size: 11px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; font-size: 24px; background: none; border: none; cursor: pointer; color: var(--ember); }
.nav-account-mobile { display: none; }

@media (max-width: 860px) {
    nav.main-nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; gap: 0;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    nav.main-nav.open { display: flex; }
    nav.main-nav a { padding: 14px 20px; border-bottom: 1px solid var(--line); }
    .nav-account-mobile { display: block; }
    .menu-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ember); color: var(--white); }
.btn-primary:hover { background: var(--ember-dark); }
.btn-accent { background: var(--turmeric); color: var(--ember-dark); }
.btn-accent:hover { background: var(--turmeric-soft); }
.btn-outline { background: transparent; border-color: var(--ember); color: var(--ember); }
.btn-outline:hover { background: var(--ember); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Home page banner slider ---------- */
.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
}
.banner-track { position: relative; width: 100%; height: 100%; }
.banner-slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity .6s ease;
    display: flex; align-items: center;
}
.banner-slide.active { opacity: 1; visibility: visible; }
.banner-slide.has-photo { background-size: cover; background-position: center; }
.banner-slide.has-photo::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(90deg, rgba(43,33,28,.80), rgba(43,33,28,.35) 55%, rgba(43,33,28,.15));
}
.banner-slide.has-photo:has(.banner-photo-link)::before { content: none; }
.banner-photo-link { position: absolute; inset: 0; z-index: 2; }
.logo-cover {
    position: absolute; top: 0; left: 0;
    width: 20%; height: 38%;
    background: radial-gradient(ellipse at 20% 20%, rgba(15,10,7,1) 0%, rgba(15,10,7,1) 45%, rgba(15,10,7,.85) 65%, rgba(15,10,7,0) 88%);
    z-index: 1; pointer-events: none;
}
.banner-hi-caption {
    position: absolute; top: 26px; right: 5%; left: auto;
    z-index: 2; max-width: 46%;
    font-size: 15px; font-weight: 600; color: #FFF3DE;
    text-align: right;
    background: rgba(20,14,10,.55);
    padding: 10px 16px; border-radius: 8px;
}
@media (max-width: 860px) { .banner-hi-caption { font-size: 11.5px; max-width: 60%; padding: 6px 10px; top: 16px; } }
@media (max-width: 560px) { .banner-hi-caption { display: none; } }
.banner-slide.has-inset { background: linear-gradient(120deg, var(--ember-dark), var(--ember) 60%, var(--clay)); }
.banner-inset-ring {
    position: absolute; width: 240px; height: 240px; border-radius: 50%;
    border: 2px dashed rgba(255,255,255,.18);
    top: -90px; left: 42%; z-index: 0;
}
.banner-inset-img {
    position: absolute; right: 7%; top: 50%; transform: translateY(-50%);
    width: 34%; max-width: 300px; aspect-ratio: 1/1;
    border-radius: 50%; overflow: hidden; z-index: 1;
    box-shadow: 0 10px 34px rgba(0,0,0,.35);
    border: 6px solid rgba(255,253,248,.15);
}
.banner-inset-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .banner-inset-img { display: none; } }
.banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.banner-content { position: relative; z-index: 1; max-width: 620px; padding: 0 8%; color: var(--white); }
.banner-content .hero-eyebrow {
    display: inline-block;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 14px;
}
.banner-content h1 { font-size: 42px; line-height: 1.15; margin-bottom: 16px; color: var(--white); }
.banner-content .lead { font-size: 17px; max-width: 480px; margin-bottom: 0; }
.banner-content .hero-cta { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.banner-dots {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 2;
}
.banner-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer; padding: 0;
}
.banner-dot.active { background: var(--white); }
@media (max-width: 860px) {
    .banner-slider { aspect-ratio: 16/9; }
    .banner-slide.has-photo { background-position: left center !important; }
    .banner-content h1 { font-size: 28px; }
    .banner-content .lead { font-size: 14px; }
}



/* ---------- Section headings ---------- */
.section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .eyebrow {
    display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--clay); font-weight: 700; margin-bottom: 8px;
}
.section-head h2 { font-size: 32px; }
.section-alt { background: var(--white); }

/* ---------- Product grid / cards ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
    display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--turmeric-soft), var(--clay));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb .ph-icon { display: flex; align-items: center; justify-content: center; color: var(--clay); opacity: .55; }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-size: 20px; margin-bottom: 0; }
.product-body .hi-name { font-size: 13px; color: var(--smoke); }
.product-body .desc { font-size: 14px; color: var(--smoke); flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 4px 0; }
.price { font-size: 20px; font-weight: 700; color: var(--ember); }
.mrp { font-size: 14px; color: var(--smoke); text-decoration: line-through; }
.badge {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .5px;
    background: var(--leaf); color: var(--white); padding: 3px 9px; border-radius: 20px;
    text-transform: uppercase; width: fit-content;
}
.card-action-row { display: flex; gap: 8px; }
.card-action-row .btn { flex: 1; padding-left: 10px; padding-right: 10px; }
.btn-cart-pill {
    background: var(--white); color: var(--ember-dark);
    border: 2px solid var(--ember); border-radius: 30px;
}
.btn-cart-pill:hover { background: var(--ember); color: var(--white); }
.btn-cart-pill[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ---------- Why us / trust strip ---------- */
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.ingredient-preview-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 860px) { .ingredient-preview-grid { grid-template-columns: repeat(2, 1fr); } }
.ingredient-preview-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
}
.ingredient-preview-item .icon { color: var(--ember); display: flex; justify-content: center; margin-bottom: 10px; }
.ingredient-preview-item h4 { font-size: 14px; margin: 0; }
.trust-item { text-align: center; padding: 20px 12px; }
.trust-item .icon { font-size: 30px; margin-bottom: 10px; }
.trust-item h4 { font-size: 15px; margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--smoke); margin: 0; }

/* ---------- Feature list (used in "Why Saptaashwah" split section) ---------- */
.feature-list { list-style: none; margin: 22px 0 26px; padding: 0; }
.feature-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.feature-row:first-child { padding-top: 0; }
.feature-row:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon {
    width: 48px; height: 48px;
    background: var(--ash-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ember);
    flex-shrink: 0;
}
.feature-row h4 { margin: 0 0 4px; font-size: 15.5px; }
.feature-row p { margin: 0; font-size: 13.5px; color: var(--smoke); }

/* ---------- Product detail ---------- */
.pd-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start;
}
@media (max-width: 860px) { .pd-grid { grid-template-columns: 1fr; } }
.pd-gallery-main {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--turmeric-soft), var(--clay));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumbs img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; border: 2px solid var(--line); cursor: pointer; }
.pd-thumbs img.active { border-color: var(--ember); }
.pd-info h1 { font-size: 30px; margin-bottom: 2px; }
.pd-info .hi-name { font-size: 16px; color: var(--smoke); margin-bottom: 14px; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); width: fit-content; }
.qty-selector button { background: var(--ash-cream); border: none; width: 38px; height: 38px; font-size: 18px; cursor: pointer; }
.qty-selector input { width: 48px; text-align: center; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); height: 38px; font-size: 15px; }
.pd-actions { display: flex; gap: 12px; margin: 22px 0; flex-wrap: wrap; }
.pd-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin: 30px 0 18px; }
.pd-tab-btn { padding: 10px 20px; font-weight: 600; font-size: 14px; color: var(--smoke); border-bottom: 2px solid transparent; cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; }
.pd-tab-btn.active { color: var(--ember); border-bottom-color: var(--ember); }
.pd-tab-panel { display: none; font-size: 15px; color: var(--charcoal); }
.pd-tab-panel.active { display: block; }
.pd-tab-panel ul { padding-left: 20px; }

/* ---------- Cart & Checkout ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.cart-table th, .cart-table td { padding: 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.cart-table th { background: var(--ash-cream); color: var(--ember-dark); text-transform: uppercase; font-size: 12px; letter-spacing: .5px; }
.cart-prod { display: flex; align-items: center; gap: 12px; }
.cart-prod img { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; }
.cart-remove { color: var(--ember); font-size: 13px; font-weight: 600; }
.cart-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--smoke); }
.summary-row.total { font-size: 18px; font-weight: 700; color: var(--charcoal); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: flex-start; }
@media (max-width: 860px) { .checkout-layout { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ember-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 14px; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: 3px solid var(--turmeric-soft); border-color: var(--ember);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.payment-options { display: flex; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.payment-option {
    border: 2px solid var(--line); border-radius: var(--radius); padding: 14px 18px; cursor: pointer; flex: 1; min-width: 160px;
}
.payment-option.selected { border-color: var(--ember); background: #FBF3E4; }
.payment-option input { margin-right: 8px; }

/* ---------- Alerts / flash ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #E4EDE4; color: var(--leaf); border: 1px solid #bcd3bd; }
.alert-error { background: #F8E4E0; color: var(--ember-dark); border: 1px solid #edc0b7; }
.alert-info { background: #FBF0DA; color: var(--clay); border: 1px solid var(--turmeric-soft); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ember-dark); color: var(--ash-cream); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 50px 0 30px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand-head { justify-content: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
}
.footer-grid h4 { color: var(--turmeric-soft); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-grid a:hover { color: var(--turmeric-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); text-align: center; padding: 16px 0; font-size: 13px; color: var(--turmeric-soft); }
@media (max-width: 600px) {
    .footer-bottom { padding: 16px 70px; }
}
.footer-brand p { font-size: 14px; color: #E8DCC4; max-width: 320px; }
.footer-brand-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo { width: 40px; height: 40px; object-fit: contain; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 50;
    background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    box-shadow: var(--shadow);
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-q { font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
.faq-a { display: none; padding-top: 10px; color: var(--smoke); font-size: 14px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.chevron { transition: transform .2s ease; }

/* ---------- Track order ---------- */
.track-steps { display: flex; justify-content: space-between; margin: 30px 0; position: relative; }
.track-steps::before { content: ''; position: absolute; top: 16px; left: 5%; right: 5%; height: 3px; background: var(--line); z-index: 0; }
.track-step { text-align: center; flex: 1; position: relative; z-index: 1; }
.track-step .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--line); color: var(--smoke); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-weight: 700; }
.track-step.done .dot { background: var(--ember); color: white; }
.track-step span { font-size: 12px; color: var(--smoke); }
.track-step.done span { color: var(--ember-dark); font-weight: 600; }

/* ---------- Policy pages ---------- */
.policy-content h2 { font-size: 20px; margin-top: 26px; }
.policy-content p, .policy-content li { color: var(--smoke); }

/* ---------- Generic page header ---------- */
.page-header { background: var(--white); border-bottom: 1px solid var(--line); padding: 34px 0; text-align: center; }
.page-header h1 { font-size: 30px; margin-bottom: 4px; }
.page-header p { color: var(--smoke); margin: 0; }

/* ---------- Why Choose Us / Our Story banner ---------- */
.why-banner {
    background: linear-gradient(135deg, var(--ember-dark), var(--ember) 60%, var(--clay));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.why-banner .hero-eyebrow { color: var(--turmeric-soft); }
.why-banner h1 { color: var(--white); font-size: 38px; margin: 14px 0; }
.why-banner .lead { color: #F0E4C8; max-width: 640px; margin: 0 auto; font-size: 17px; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr !important; } }
.why-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}
.why-icon { color: var(--ember); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
.why-item h3 { font-size: 18px; margin-bottom: 10px; }
.why-item p { color: var(--smoke); font-size: 14px; margin: 0; }

/* ---------- Know Your Ingredients page ---------- */
.ingredient-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.ingredient-row:last-child { border-bottom: none; }
.ingredient-icon {
    width: 70px; height: 70px;
    background: var(--ash-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ember);
}
.ingredient-row h3 { margin-bottom: 6px; }
.ingredient-row p { color: var(--smoke); margin: 0; }
.ingredients-banner {
    background: linear-gradient(135deg, var(--leaf), #3A5A3C);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}
.ingredients-banner h1 { color: var(--white); font-size: 38px; margin: 14px 0; }
.ingredients-banner .lead { color: #E4EFE0; max-width: 640px; margin: 0 auto; font-size: 17px; }
.ingredients-banner .hero-eyebrow { color: #C8E0C8; }

/* ---------- Banner with photo background (Our Story / Why Choose Us / Ingredients) ---------- */
.photo-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.photo-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(107,68,25,.88), rgba(138,90,36,.72));
}
.photo-banner.tone-leaf::before { background: linear-gradient(135deg, rgba(58,90,60,.88), rgba(76,107,78,.72)); }
.photo-banner.tone-clay::before { background: linear-gradient(135deg, rgba(89,31,23,.88), rgba(192,133,82,.68)); }
.photo-banner.tone-clear::before { background: linear-gradient(135deg, rgba(40,28,18,.42), rgba(40,28,18,.22)); }
.photo-banner.plain { padding: 0; aspect-ratio: 2.4/1; }
.photo-banner.plain::before { content: none; }
@media (max-width: 700px) { .photo-banner.plain { aspect-ratio: 4/3; } }
.photo-banner > .container { position: relative; z-index: 1; }
.photo-banner .hero-eyebrow { color: var(--turmeric-soft); }
.photo-banner h1 { color: var(--white); font-size: 38px; margin: 14px 0; }
.photo-banner .lead { color: #F5EBD4; max-width: 640px; margin: 0 auto; font-size: 17px; }

/* ---------- Split image + text rows (Our Story / Why Choose Us / Ingredients) ---------- */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin: 80px 0;
}
.split-row.reverse .split-media { order: 2; }
.split-row.reverse .split-text { order: 1; }
@media (max-width: 860px) {
    .split-row { grid-template-columns: 1fr; margin: 48px 0; gap: 28px; }
    .split-row.reverse .split-media, .split-row.reverse .split-text { order: 0; }
}
.split-media {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--turmeric-soft), var(--clay));
}
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-text { padding: 0 6px; }
.split-text .eyebrow { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--clay); font-weight: 700; margin-bottom: 14px; }
.split-text h2 { font-size: 30px; line-height: 1.25; margin-bottom: 20px; }
.split-text p { color: var(--smoke); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.split-text p:last-of-type { margin-bottom: 0; }

/* ---------- Team cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 8px; }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.team-avatar {
    width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--turmeric-soft), var(--clay));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: var(--font-display); font-size: 24px; font-weight: 700;
}
.team-card h4 { margin: 0 0 2px; font-size: 16px; }
.team-card span { font-size: 12px; color: var(--clay); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.team-card p { margin-top: 8px; font-size: 13px; color: var(--smoke); }

/* ---------- Value / commitment checklist strip ---------- */
.value-strip { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 20px; }
.value-strip h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; list-style: none; padding: 0; margin: 0; }
@media (max-width: 600px) { .value-list { grid-template-columns: 1fr; } }
.value-list li { padding-left: 26px; position: relative; font-size: 14px; color: var(--smoke); }
.value-list li::before { content: '✓'; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }

/* ---------- Mini ingredient photo cards (used on home + ingredients page) ---------- */
.ingredient-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .ingredient-photo-grid { grid-template-columns: 1fr; } }
.ingredient-photo-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; }
.ingredient-photo-card .media { aspect-ratio: 4/3; overflow: hidden; }
.ingredient-photo-card .media img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-photo-card .body { padding: 18px; }
.ingredient-photo-card h4 { margin: 0 0 6px; font-size: 15px; }
.ingredient-photo-card p { margin: 0; font-size: 13px; color: var(--smoke); }
