:root {
  --green-950: #0c2a18;
  --green-900: #123a22;
  --green-800: #194829;
  --green-700: #235c35;
  --green-100: #e8efe6;
  --cream: #fffaf0;
  --ivory: #fffdf8;
  --sand: #f4ead8;
  --sand-2: #ead8bd;
  --gold: #c58a2b;
  --gold-soft: #e6bb69;
  --terracotta: #a94628;
  --terracotta-dark: #7d2c19;
  --brown: #3d271b;
  --ink: #1d251e;
  --muted: #667064;
  --line: #e5d6bd;
  --white: #fff;
  --shadow-sm: 0 7px 24px rgba(51, 38, 20, .07);
  --shadow-md: 0 18px 48px rgba(51, 38, 20, .12);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1380px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --devanagari: Mukta, "Noto Sans Devanagari", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.drawer-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { color: var(--brown); }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.025em; line-height: 1.06; }
h1 { font-size: clamp(2.8rem, 5.7vw, 6rem); }
h2 { font-size: clamp(2rem, 3.1vw, 3.55rem); }
h3 { line-height: 1.25; }
main { min-height: 55vh; overflow: clip; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.sr-only, .hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; border-radius: 12px; color: var(--white); background: var(--green-900); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mobile-only { display: none !important; }

/* Buttons */
.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border: 1px solid transparent; border-radius: 20px; font-size: .82rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(197, 138, 43, .42); outline-offset: 3px; }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--green-800), var(--green-950)); border-color: var(--green-900); }
.btn--primary:hover { background: var(--green-700); }
.btn--outline, .btn--ghost { color: var(--green-900); background: rgba(255,255,255,.72); border-color: var(--green-800); }
.btn--cream { color: var(--green-950); background: var(--cream); border-color: var(--cream); }
.btn--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-800); font-weight: 800; font-size: .85rem; }
.text-link:hover { color: var(--terracotta); }

/* Header */
.utility-bar { color: #fff8df; background: linear-gradient(90deg, #123817, #254b17, #123817); border-bottom: 1px solid rgba(255,255,255,.12); }
.utility-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 96px); font-size: .75rem; font-weight: 700; letter-spacing: .02em; }
.utility-bar__inner span { display: inline-flex; align-items: center; gap: 8px; }
.site-header { position: relative; z-index: 40; background: rgba(255,253,248,.97); box-shadow: 0 1px 0 var(--line); }
.header-main { min-height: 104px; display: grid; grid-template-columns: 260px minmax(360px, 1fr) auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 240px; height: auto; max-height: 74px; object-fit: contain; object-position: left center; }
.header-search { height: 52px; display: grid; grid-template-columns: 1fr 150px 56px; border: 1px solid #d9c5a5; border-radius: 20px; overflow: hidden; background: #fffefa; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.header-search input, .header-search select { min-width: 0; border: 0; color: var(--ink); background: transparent; }
.header-search input { padding: 0 20px; }
.header-search select { padding: 0 16px; border-left: 1px solid var(--line); color: #5d564c; }
.header-search button { border: 0; color: var(--white); background: var(--green-900); display: grid; place-items: center; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.header-action { position: relative; display: flex; align-items: center; gap: 9px; padding: 0; border: 0; color: var(--green-950); background: transparent; text-align: left; }
.header-action span { display: grid; line-height: 1.2; white-space: nowrap; }
.header-action strong { font-size: .78rem; }
.header-action small { color: var(--muted); font-size: .63rem; }
.header-action b { position: absolute; top: -8px; left: 18px; min-width: 18px; height: 18px; padding-inline: 4px; display: grid; place-items: center; color: var(--white); background: var(--green-800); border: 2px solid var(--ivory); border-radius: 99px; font-size: .58rem; }
.nav-strip { border-top: 1px solid rgba(229,214,189,.8); background: #fffdf8; }
.primary-nav { min-height: 51px; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 43px); }
.primary-nav a { position: relative; display: inline-flex; align-items: center; gap: 4px; padding-block: 15px; color: #29251f; font-size: .75rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 2px; border-radius: 99px; background: var(--terracotta); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.icon-button { width: 44px; height: 44px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 18px; background: var(--ivory); }

/* Mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 100; display: flex; justify-content: flex-start; background: rgba(12,42,24,.58); opacity: 0; visibility: hidden; transition: .25s ease; }
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__panel { width: min(92vw, 430px); height: 100%; padding: 22px; background: var(--cream); transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto; }
.mobile-drawer.is-open .mobile-drawer__panel { transform: none; }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-drawer__head .brand img { width: 205px; }
.mobile-search { height: 48px; margin: 20px 0; display: grid; grid-template-columns: 1fr 48px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.mobile-search input, .mobile-search button { border: 0; background: transparent; }
.mobile-search input { padding-inline: 15px; }
.mobile-search button { color: var(--white); background: var(--green-900); }
.mobile-nav-links { display: grid; }
.mobile-nav-links a { padding: 14px 4px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-drawer__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }

/* Homepage hero */
.home-hero { position: relative; min-height: 610px; background: #f6e8cc url("../images/hero/traditional-pickles-spices-hero.webp") center / cover no-repeat; border-bottom: 1px solid var(--line); }
.home-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,250,240,.98) 0%, rgba(255,250,240,.91) 27%, rgba(255,250,240,.18) 55%, rgba(255,250,240,0) 76%); }
.home-hero__inner { position: relative; z-index: 1; min-height: 610px; display: flex; align-items: center; }
.home-hero__copy { width: min(620px, 50%); padding: 54px 0; }
.home-hero__eyebrow { margin-bottom: 13px; display: inline-flex; align-items: center; gap: 8px; color: var(--terracotta); font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.home-hero h1 { margin-bottom: 20px; color: var(--green-950); font-size: clamp(3.3rem, 5.7vw, 6.2rem); }
.home-hero h1 em { color: var(--terracotta); font-style: normal; }
.home-hero__copy > p { max-width: 520px; margin-bottom: 24px; color: #3d473f; font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proofs { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-proof { display: flex; align-items: center; gap: 8px; max-width: 145px; color: var(--green-950); font-size: .72rem; font-weight: 700; line-height: 1.35; }
.hero-proof img { width: 27px; height: 27px; object-fit: contain; }

/* Category rail */
.category-section { position: relative; z-index: 2; margin-top: -24px; }
.category-rail { padding: 17px 20px; display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 8px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,253,248,.96); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.category-tile { min-width: 0; padding: 4px 3px 8px; display: grid; justify-items: center; gap: 8px; border-radius: 20px; text-align: center; transition: background .2s ease, transform .2s ease; }
.category-tile:hover { background: var(--sand); transform: translateY(-3px); }
.category-tile__image { width: 74px; height: 74px; padding: 5px; display: grid; place-items: center; border: 1px solid #e8d2ae; border-radius: 50%; background: #fff9ec; }
.category-tile__image img { width: 100%; height: 100%; object-fit: contain; }
.category-tile strong { font-family: var(--serif); font-size: .82rem; line-height: 1.2; }

/* Sections */
.section { padding: 72px 0; }
.section--compact { padding: 44px 0; }
.section--sand { background: #f7efdf; }
.section--green { color: var(--white); background: var(--green-950); }
.section-heading { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-heading h2 { margin: 3px 0 0; font-size: clamp(2rem, 2.8vw, 3.1rem); }
.section-heading p { max-width: 620px; margin: 8px 0 0; color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--terracotta); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.section-title--ornament { display: flex; align-items: center; gap: 15px; }
.section-title--ornament::before, .section-title--ornament::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.section-title--ornament::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.section-title--ornament h2 { margin: 0; white-space: nowrap; text-align: center; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid--six { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.94); box-shadow: 0 4px 12px rgba(67,43,23,.045); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #d3b889; box-shadow: var(--shadow-md); }
.product-card__media { position: relative; min-height: 260px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 38%, #fff 0, #f9f0df 55%, #f3e5cf 100%); }
.product-card__media img { width: 88%; height: 260px; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__badge { position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 12px; color: var(--white); background: var(--terracotta); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card__heart { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(61,39,27,.14); border-radius: 50%; color: var(--brown); background: rgba(255,255,255,.9); }
.product-card__body { padding: 16px; }
.product-card__category { margin-bottom: 4px; color: var(--terracotta); font-size: .61rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.product-card h3 a:hover { color: var(--green-700); }
.product-card__desc { min-height: 44px; margin-bottom: 10px; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.product-card__tags { min-height: 25px; display: flex; flex-wrap: wrap; gap: 5px; }
.product-card__tags span { padding: 3px 8px; border: 1px solid #dfc9a7; border-radius: 12px; color: #685644; background: #fffaf0; font-size: .58rem; line-height: 1.2; }
.product-card__price-row { min-height: 30px; margin: 10px 0; display: flex; align-items: center; gap: 8px; }
.product-card__price-row strong { color: var(--brown); font-size: 1.06rem; }
.product-card__price-row del { color: #948d83; font-size: .7rem; }
.product-card__price-row b { margin-left: auto; color: var(--green-700); font-size: .62rem; }
.product-card__buy-row { display: grid; grid-template-columns: 92px 1fr; gap: 8px; }
.product-card__buy-row select { width: 100%; min-width: 0; padding: 8px 8px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: var(--white); font-size: .7rem; }
.product-card__buy-row button { min-height: 37px; display: flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--green-950); border-radius: 14px; color: var(--white); background: var(--green-900); font-size: .68rem; font-weight: 800; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.product-card__buy-row button:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-1px); }
.product-grid--six .product-card__media { min-height: 210px; }
.product-grid--six .product-card__media img { height: 205px; }
.product-grid--six .product-card__body { padding: 13px; }
.product-grid--six .product-card__desc { display: none; }
.product-grid--six .product-card__tags { display: none; }
.product-grid--six .product-card__buy-row { grid-template-columns: 1fr; }
.product-grid--six .product-card__buy-row select { display: none; }

/* Homepage merchandising */
.merch-grid { display: grid; grid-template-columns: 1fr 1.22fr; gap: 18px; }
.merch-card { position: relative; min-height: 310px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #f7ead6; }
.merch-card__content { position: relative; z-index: 2; max-width: 46%; padding: 32px; }
.merch-card h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 2rem; }
.merch-card p { color: var(--muted); }
.merch-card__visual { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.merch-card--spices::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff8eb 2%, rgba(255,248,235,.9) 35%, rgba(255,248,235,.12) 67%); }
.merch-card--combo { color: var(--white); background: var(--green-950); }
.merch-card--combo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,42,24,.96), rgba(12,42,24,.72) 38%, rgba(12,42,24,.05) 75%); }
.merch-card--combo h3 { color: var(--gold-soft); font-size: 2.3rem; }
.merch-card--combo p { color: rgba(255,255,255,.78); }

.trust-strip { padding: 18px 22px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.trust-item { min-height: 58px; padding: 4px 16px; display: flex; align-items: center; justify-content: center; gap: 10px; border-right: 1px solid var(--line); text-align: left; }
.trust-item:last-child { border-right: 0; }
.trust-item img { width: 32px; height: 32px; object-fit: contain; }
.trust-item strong { display: block; color: var(--green-950); font-size: .72rem; line-height: 1.3; }

.story-process { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.story-panel, .process-panel { min-height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--ivory); }
.story-panel { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--green-950); }
.story-panel__copy { position: relative; z-index: 2; padding: 38px; color: var(--white); background: linear-gradient(115deg, rgba(12,42,24,.98), rgba(12,42,24,.88)); }
.story-panel__copy h2 { color: var(--white); font-size: 2.7rem; }
.story-panel__copy p { color: rgba(255,255,255,.76); }
.story-panel__image { width: 100%; height: 100%; object-fit: cover; }
.process-panel { padding: 34px; }
.process-panel h2 { font-size: 2.15rem; }
.process-list { display: grid; gap: 16px; margin-top: 24px; }
.process-row { display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: center; }
.process-row img { width: 50px; height: 50px; padding: 9px; border: 1px solid var(--line); border-radius: 18px; background: #fff9ee; }
.process-row strong { display: block; color: var(--green-950); font-family: var(--serif); font-size: 1.05rem; }
.process-row span { color: var(--muted); font-size: .72rem; }

.taste-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.taste-card { min-height: 260px; display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.taste-card img { width: 100%; height: 100%; object-fit: cover; }
.taste-card__copy { padding: 24px; }
.taste-card h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 1.35rem; }
.taste-card__levels { margin: 13px 0; display: grid; gap: 7px; }
.taste-card__level { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .68rem; }
.taste-card__icons { color: var(--terracotta); letter-spacing: 3px; }

.testimonial-journal { display: grid; grid-template-columns: .92fr 2.08fr; gap: 18px; }
.testimonial-card { padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.testimonial-card blockquote { margin: 14px 0 24px; color: var(--brown); font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--terracotta); font-weight: 800; }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-person small { color: var(--muted); }
.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.recipe-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--ivory); transition: transform .2s ease, box-shadow .2s ease; }
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recipe-card__image { display: block; aspect-ratio: 1.55; overflow: hidden; }
.recipe-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.recipe-card:hover img { transform: scale(1.04); }
.recipe-card__body { padding: 17px; }
.recipe-card__meta { margin-bottom: 7px; color: var(--terracotta); font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.recipe-card h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 1.18rem; }
.recipe-card p { color: var(--muted); font-size: .72rem; }
.recipe-grid--home { grid-template-columns: repeat(3, 1fr); }

/* Newsletter and footer */
.newsletter-bar { background: linear-gradient(100deg, #1a4828, #0d301b); color: var(--white); }
.newsletter-bar__inner { min-height: 105px; display: grid; grid-template-columns: 1fr minmax(430px, .85fr); align-items: center; gap: 40px; }
.newsletter-copy { display: flex; align-items: center; gap: 18px; }
.newsletter-copy strong, .newsletter-copy span { display: block; }
.newsletter-copy strong { font-family: var(--serif); font-size: 1.35rem; }
.newsletter-copy span { color: rgba(255,255,255,.7); font-size: .73rem; }
.newsletter-form { height: 48px; display: grid; grid-template-columns: 1fr 126px; overflow: hidden; border-radius: 18px; background: var(--white); }
.newsletter-form input, .newsletter-form button { border: 0; }
.newsletter-form input { min-width: 0; padding-inline: 18px; }
.newsletter-form button { color: var(--white); background: var(--terracotta); font-weight: 800; text-transform: uppercase; font-size: .72rem; }
.site-footer { position: relative; color: rgba(255,255,255,.76); background: #102c1a url("../images/backgrounds/grain-pattern.svg") right bottom / 450px auto no-repeat; }
.footer-grid { padding: 54px 0 40px; display: grid; grid-template-columns: 1.45fr repeat(4, 1fr); gap: 48px; }
.footer-brand .brand img { width: 240px; max-height: 86px; }
.footer-brand p { max-width: 310px; margin: 16px 0; font-size: .75rem; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.footer-column { display: grid; align-content: start; gap: 7px; }
.footer-column h3 { margin-bottom: 8px; color: var(--gold-soft); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a, .footer-column span { font-size: .7rem; }
.footer-column a:hover { color: var(--gold-soft); }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 7px; }
.payment-badges { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.payment-badges b { padding: 5px 8px; border-radius: 7px; color: #20321f; background: var(--white); font-size: .55rem; }
.footer-bottom { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.15); font-size: .66rem; }
.footer-bottom div { display: flex; gap: 18px; }

/* Internal page hero */
.page-hero { padding: 76px 0 58px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f7ead4, #fffaf0); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 48px; align-items: center; }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(3rem, 5.6vw, 5.6rem); }
.page-hero__aside { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.64); }
.lede { color: #4c574d; font-size: 1.03rem; line-height: 1.75; }
.breadcrumb { margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .7rem; text-transform: capitalize; }
.breadcrumb a:hover { color: var(--terracotta); }
.section-head { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-head__copy { max-width: 780px; }
.section-head h2 { margin: 5px 0 8px; }
.section--tight { padding: 44px 0; }

/* Shop */
.shop-toolbar { margin-bottom: 24px; padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 1px solid var(--line); border-radius: 20px; background: var(--ivory); }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 9px 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); font-size: .72rem; font-weight: 800; }
.filter-btn.is-active { color: var(--white); border-color: var(--green-900); background: var(--green-900); }

/* Product detail */
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); gap: 54px; align-items: start; }
.product-gallery__main { min-height: 590px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle, #fff 0, #f7ecda 75%); }
.product-gallery__main img { width: 85%; height: 570px; object-fit: contain; }
.product-gallery__thumbs { margin-top: 12px; display: flex; gap: 10px; }
.product-gallery__thumbs button { width: 86px; height: 86px; padding: 5px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.product-gallery__thumbs button.is-active { border-color: var(--green-800); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-info { position: sticky; top: 22px; }
.product-info__category { color: var(--terracotta); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-info h1 { margin: 8px 0; font-size: clamp(2.6rem, 4vw, 4.4rem); }
.product-info__hi { color: var(--green-700); font-family: var(--devanagari); font-size: 1.25rem; }
.product-info__price { margin: 20px 0; display: flex; align-items: center; gap: 12px; }
.product-info__price strong { color: var(--brown); font-size: 1.8rem; }
.product-info__price del { color: var(--muted); }
.product-info__price span { padding: 4px 9px; border-radius: 10px; color: var(--green-800); background: var(--green-100); font-size: .68rem; font-weight: 800; }
.option-label { display: block; margin-bottom: 8px; color: var(--brown); font-size: .75rem; font-weight: 800; }
.variant-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.variant-chip { min-width: 90px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); font-weight: 800; }
.variant-chip.is-active { color: var(--white); border-color: var(--green-900); background: var(--green-900); }
.purchase-row { margin: 20px 0 12px; display: grid; grid-template-columns: 140px 1fr; gap: 10px; }
.qty-control { min-height: 46px; display: grid; grid-template-columns: 42px 1fr 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.qty-control button, .qty-control input { min-width: 0; border: 0; background: transparent; text-align: center; }
.micro-proof { margin-top: 20px; padding: 16px 0; display: grid; gap: 9px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.micro-proof span { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .74rem; }
.product-detail-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.detail-block { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.detail-block h2 { margin: 8px 0 18px; font-size: 2rem; }
.ingredient-list { columns: 2; margin: 0; padding-left: 20px; color: var(--muted); }
.taste-list { display: grid; gap: 12px; }
.taste-row { display: grid; grid-template-columns: 100px 1fr 38px; align-items: center; gap: 12px; font-size: .75rem; }
.taste-dots { display: flex; gap: 5px; }
.taste-dot { width: 12px; height: 12px; border: 1px solid #d0b98e; border-radius: 50%; background: #f5ead7; }
.taste-dot.is-active { border-color: var(--green-700); background: var(--green-700); }

/* Cart / Checkout */
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; align-items: start; }
.cart-list { display: grid; gap: 13px; }
.cart-item { padding: 16px; display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: 20px; background: var(--ivory); }
.cart-item__image { height: 116px; display: grid; place-items: center; border-radius: 16px; background: #f7ecda; }
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item h3 { margin-bottom: 3px; }
.cart-item__meta { color: var(--muted); font-size: .75rem; }
.cart-item__right { display: grid; justify-items: end; gap: 8px; }
.cart-item__right .qty-control { width: 120px; min-height: 38px; grid-template-columns: 34px 1fr 34px; }
.link-button { padding: 0; border: 0; color: var(--terracotta); background: transparent; font-size: .7rem; text-decoration: underline; }
.order-summary, .checkout-section { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.order-summary { position: sticky; top: 20px; }
.order-summary h2, .checkout-section h2 { font-size: 1.9rem; }
.summary-row { padding: 12px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.summary-row small { display: block; color: var(--muted); }
.summary-row--total { margin-bottom: 14px; border-bottom: 0; font-size: 1.1rem; }
.shipping-meter { margin-bottom: 12px; color: var(--muted); font-size: .72rem; }
.shipping-meter__bar { height: 8px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: var(--sand); }
.shipping-meter__bar span { display: block; height: 100%; border-radius: inherit; background: var(--green-700); }

/* Forms */
.form-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--brown); font-size: .73rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea, .search-field input { width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 16px; color: var(--ink); background: var(--white); }
.form-field textarea { min-height: 130px; resize: vertical; }
.field-error { color: #a62118; font-size: .7rem; }
.form-status { display: none; margin-top: 14px; padding: 12px 15px; border-radius: 14px; }
.form-status.is-visible { display: block; background: #e9f2e7; }
.form-status.is-error { color: #8f2119; background: #f9e7e2; }
.form-status.is-success { color: #174925; background: #e5f1e5; }
.checkbox, .payment-option { display: flex; align-items: flex-start; gap: 10px; }
.hp-field { position: absolute; left: -9999px; }

/* Text / story pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.story-media { position: relative; overflow: hidden; border-radius: 24px; }
.story-media img { width: 100%; min-height: 420px; object-fit: cover; }
.story-media__floating { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 18px; border-radius: 18px; color: var(--white); background: rgba(12,42,24,.9); backdrop-filter: blur(8px); }
.proof-list { margin: 22px 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.proof-list li { padding-left: 27px; position: relative; }
.proof-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font-weight: 900; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.trust-card__icon { width: 48px; height: 48px; margin-bottom: 16px; display: grid; place-items: center; border-radius: 17px; color: var(--white); background: var(--green-800); font-weight: 800; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.06); }
.section--green h2, .section--green h3 { color: var(--white); }
.section--green p { color: rgba(255,255,255,.72); }
.profile-panel { padding: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; border: 1px solid var(--line); border-radius: 24px; color: var(--white); background: linear-gradient(135deg, var(--green-900), var(--green-950)); }
.profile-panel h2 { color: var(--white); }
.prose { font-size: 1rem; line-height: 1.85; }
.prose h2 { margin-top: 2.2rem; font-size: 2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose a { color: var(--green-700); text-decoration: underline; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; align-items: start; }
.article-card { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.article-card h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.article-hero { width: 100%; margin: 28px 0; aspect-ratio: 1.7; object-fit: cover; border-radius: 22px; }
.article-aside { position: sticky; top: 22px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--ivory); }
.article-aside h2 { font-size: 1.9rem; }

/* FAQ / search / empty */
.faq-section + .faq-section { margin-top: 40px; }
.faq-section h2 { font-size: 2rem; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--ivory); }
.faq-item button { width: 100%; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; font-weight: 800; }
.faq-item__answer { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.is-open .faq-item__answer { display: block; }
.search-field { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-results, .search-list { display: grid; gap: 14px; }
.search-group + .search-group { margin-top: 35px; }
.search-result { padding: 12px; display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: 20px; background: var(--ivory); }
.search-result img { width: 90px; height: 78px; object-fit: contain; border-radius: 14px; background: #f7ecda; }
.search-result small { display: block; color: var(--muted); }
.empty-state { grid-column: 1 / -1; padding: 64px 30px; border: 1px dashed #ccb995; border-radius: 22px; background: rgba(255,255,255,.56); text-align: center; }
.empty-state h1, .empty-state h2 { margin-bottom: 12px; }
.empty-state p { max-width: 620px; margin-inline: auto; color: var(--muted); }

/* Toast / animations */
.toast { position: fixed; z-index: 200; right: 20px; bottom: 20px; max-width: 360px; padding: 14px 18px; border-radius: 16px; color: var(--white); background: var(--green-950); box-shadow: var(--shadow-md); opacity: 0; transform: translateY(15px); pointer-events: none; transition: .2s ease; }
.toast.is-visible { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1240px) {
  .header-main { grid-template-columns: 225px minmax(300px, 1fr) auto; gap: 20px; }
  .brand img { width: 210px; }
  .header-actions { gap: 13px; }
  .desktop-action span { display: none; }
  .primary-nav { gap: 21px; }
  .primary-nav a { font-size: .68rem; }
  .product-grid--six { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: 0; }
  .trust-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .category-rail { grid-template-columns: repeat(9, 120px); overflow-x: auto; justify-content: start; scrollbar-width: thin; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:nth-child(n+4) { margin-top: 6px; }
}

@media (max-width: 980px) {
  .mobile-only { display: grid !important; }
  .utility-bar__inner span:nth-child(2) { display: none; }
  .header-main { min-height: 84px; grid-template-columns: 46px 1fr auto; gap: 12px; }
  .header-main .brand { justify-self: center; }
  .header-main .brand img { width: 190px; }
  .header-search, .desktop-action, .nav-strip { display: none; }
  .header-actions { gap: 5px; }
  .cart-action span { display: none; }
  .home-hero { min-height: 700px; background-position: 62% center; }
  .home-hero::before { background: linear-gradient(90deg, rgba(255,250,240,.97) 0%, rgba(255,250,240,.88) 48%, rgba(255,250,240,.18) 80%); }
  .home-hero__inner { min-height: 700px; align-items: flex-start; }
  .home-hero__copy { width: 66%; padding-top: 70px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid, .story-process, .testimonial-journal { grid-template-columns: 1fr; }
  .taste-grid { grid-template-columns: 1fr; }
  .taste-card { grid-template-columns: 260px 1fr; }
  .newsletter-bar__inner { padding: 26px 0; grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .product-detail, .cart-layout, .checkout-layout, .article-layout { grid-template-columns: 1fr; }
  .product-info, .order-summary, .article-aside { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .page-hero__grid, .split { grid-template-columns: 1fr; }
  .trust-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .container, .narrow { width: min(calc(100% - 24px), var(--container)); }
  .utility-bar__inner { min-height: 34px; justify-content: center; font-size: .65rem; }
  .utility-bar__inner span:nth-child(3) { display: none; }
  .header-main .brand img { width: 160px; }
  .home-hero { min-height: 720px; background-image: linear-gradient(to bottom, rgba(255,250,240,.94) 0 49%, rgba(255,250,240,.04) 76%), url("../images/hero/traditional-pickles-spices-hero.webp"); background-position: 68% center; }
  .home-hero::before { display: none; }
  .home-hero__inner { min-height: 720px; }
  .home-hero__copy { width: 100%; padding-top: 42px; }
  .home-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .home-hero__copy > p { max-width: 90%; font-size: .9rem; }
  .hero-proofs { gap: 10px; }
  .hero-proof { max-width: 112px; font-size: .61rem; }
  .category-section { margin-top: -16px; }
  .category-rail { padding: 13px; grid-template-columns: repeat(9, 105px); border-radius: 20px; }
  .category-tile__image { width: 65px; height: 65px; }
  .section { padding: 50px 0; }
  .section-heading, .section-head { align-items: flex-start; flex-direction: column; }
  .section-title--ornament h2 { white-space: normal; }
  .product-grid, .product-grid--six, .recipe-grid, .recipe-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card__media, .product-grid--six .product-card__media { min-height: 180px; }
  .product-card__media img, .product-grid--six .product-card__media img { height: 175px; }
  .product-card__body, .product-grid--six .product-card__body { padding: 11px; }
  .product-card h3 { font-size: .86rem; }
  .product-card__desc, .product-card__tags { display: none; }
  .product-card__price-row { margin: 7px 0; flex-wrap: wrap; }
  .product-card__price-row b { display: none; }
  .product-card__buy-row { grid-template-columns: 1fr; }
  .product-card__buy-row select { display: none; }
  .merch-card { min-height: 285px; }
  .merch-card__content { max-width: 68%; padding: 24px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 10px; }
  .trust-item { padding: 10px; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .story-panel { grid-template-columns: 1fr; }
  .story-panel__copy { padding: 28px; }
  .story-panel__image { min-height: 280px; }
  .taste-card { grid-template-columns: 1fr; }
  .taste-card img { height: 210px; }
  .newsletter-form { grid-template-columns: 1fr 104px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding: 16px 0; flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 54px 0 42px; }
  .page-hero__aside { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .product-gallery__main { min-height: 390px; }
  .product-gallery__main img { height: 380px; }
  .purchase-row { grid-template-columns: 110px 1fr; }
  .ingredient-list { columns: 1; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__image { height: 80px; }
  .cart-item__right { grid-column: 1 / -1; grid-template-columns: 1fr auto auto; align-items: center; justify-items: stretch; }
  .trust-grid, .process-grid { grid-template-columns: 1fr; }
  .article-card { padding: 22px; }
  .search-result { grid-template-columns: 70px 1fr; }
  .search-result > b { display: none; }
}

@media (max-width: 430px) {
  .header-main .brand img { width: 138px; }
  .hero-actions .btn { flex: 1; padding-inline: 12px; }
  .product-grid, .product-grid--six, .recipe-grid, .recipe-grid--home { grid-template-columns: 1fr 1fr; }
  .product-card__media, .product-grid--six .product-card__media { min-height: 155px; }
  .product-card__media img, .product-grid--six .product-card__media img { height: 150px; }
  .product-card__badge { display: none; }
  .product-card__heart { width: 30px; height: 30px; }
  .product-card__category { font-size: .52rem; }
  .product-card__price-row strong { font-size: .92rem; }
  .product-card__buy-row button { min-height: 34px; font-size: .59rem; }
  .merch-card__content { max-width: 75%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Compatibility components used across secondary pages */
.cta-band { overflow: hidden; border-radius: 24px; color: var(--white); background: linear-gradient(120deg, var(--green-900), var(--green-950)); }
.cta-band__inner { padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { margin: 6px 0 10px; color: var(--white); }
.cta-band p { max-width: 680px; margin: 0; color: rgba(255,255,255,.72); }
.icon-btn { width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 17px; background: var(--ivory); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.devanagari { font-family: var(--devanagari); }
.is-disabled { opacity: .48; pointer-events: none; }
@media (max-width: 680px) { .cta-band__inner { padding: 26px; align-items: flex-start; flex-direction: column; } }

/* Homepage refresh: richer sections, combo banner, taste explorer and interactive motion */
.page-home { background: linear-gradient(180deg, #fffdf8 0%, #f9f2e5 28%, #fffdf9 100%); }
.home-hero--immersive { position: relative; overflow: hidden; padding: 44px 0 22px; background:
  radial-gradient(circle at 12% 20%, rgba(255,255,255,.95), rgba(255,255,255,.45) 34%, rgba(255,255,255,0) 58%),
  linear-gradient(140deg, #f6ecdd 0%, #f7efdf 40%, #efe0c9 100%);
}
.hero-atmosphere { position: absolute; inset: 0; background: url('../images/backgrounds/botanical-line-pattern.svg') left center / 440px auto no-repeat; opacity: .16; pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); gap: 28px; align-items: center; }
.home-hero__eyebrow { display: inline-flex; margin-bottom: 12px; color: var(--terracotta); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.home-hero__copy h1 { margin: 0 0 14px; font-size: clamp(2.85rem, 6.6vw, 5.8rem); line-height: .95; }
.home-hero__copy h1 em { color: var(--terracotta); font-style: normal; }
.home-hero__copy p { max-width: 590px; margin: 0 0 18px; font-size: 1.02rem; color: var(--muted); }
.hero-proofs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-proof { padding: 12px 14px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(18,58,34,.12); border-radius: 16px; background: rgba(255,255,255,.72); font-weight: 700; color: var(--green-900); box-shadow: 0 10px 24px rgba(40, 25, 10, .05); }
.hero-proof img { width: 22px; height: 22px; }
.hero-showcase { position: relative; min-height: 530px; display: flex; align-items: center; justify-content: center; }
.hero-showcase::before { content: ""; position: absolute; inset: 22px 10px 18px 48px; border-radius: 34px; background: url('../images/hero/home-hero-rustic-pantry.webp') center / cover no-repeat; box-shadow: 0 28px 70px rgba(62, 30, 8, .18); }
.hero-showcase::after { content: ""; position: absolute; inset: 22px 10px 18px 48px; border-radius: 34px; background: linear-gradient(90deg, rgba(255,247,236,.88), rgba(255,247,236,.42) 30%, rgba(0,0,0,.03)); }
.hero-showcase__card { position: absolute; z-index: 2; }
.hero-showcase__card--spotlight { right: 18px; top: 14px; width: min(82%, 440px); padding: 22px; border: 1px solid rgba(198, 167, 114, .55); border-radius: 28px; background: rgba(255,252,245,.92); backdrop-filter: blur(9px); box-shadow: 0 24px 65px rgba(56, 34, 16, .18); }
.hero-showcase__badge { display: inline-flex; margin-bottom: 14px; padding: 7px 12px; border-radius: 999px; background: var(--terracotta); color: var(--white); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-showcase__products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hero-showcase__products article { padding: 12px; text-align: center; border-radius: 22px; background: #fff; box-shadow: 0 12px 26px rgba(47, 31, 15, .08); }
.hero-showcase__products img { width: 100%; height: 140px; object-fit: contain; }
.hero-showcase__products strong { display: block; margin-top: 4px; font-size: .95rem; }
.hero-showcase__products span { display: block; margin-top: 4px; font-size: .76rem; color: var(--muted); }
.hero-floating { padding: 18px 20px; display: grid; gap: 6px; border-radius: 22px; background: rgba(255,255,255,.88); border: 1px solid rgba(204,176,128,.56); box-shadow: 0 18px 42px rgba(54, 34, 16, .14); backdrop-filter: blur(8px); }
.hero-floating strong { font-size: 1.05rem; color: var(--green-950); }
.hero-floating span { font-size: .85rem; color: var(--muted); }
.hero-floating--trust { left: 10px; bottom: 26px; max-width: 170px; }
.hero-floating--offer { right: 72px; bottom: -6px; max-width: 180px; background: linear-gradient(160deg, rgba(163,70,34,.96), rgba(116,40,15,.96)); }
.hero-floating--offer strong, .hero-floating--offer span { color: var(--white); }
.category-section { padding: 18px 0 8px; }
.category-rail { padding: 14px; display: grid; grid-template-columns: repeat(9, minmax(110px, 1fr)); gap: 14px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: 0 16px 36px rgba(49, 31, 16, .06); }
.category-chip { padding: 12px 10px; display: grid; gap: 10px; justify-items: center; text-align: center; border-radius: 20px; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; }
.category-chip:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 14px 28px rgba(46, 28, 14, .08); }
.category-chip__icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(209, 182, 137, .7); background: linear-gradient(180deg, #fff, #faf2e5); }
.category-chip__icon img { width: 64px; height: 64px; object-fit: contain; }
.category-chip span:last-child { font-size: .82rem; font-weight: 800; color: var(--green-950); }
.feature-collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.collection-card { position: relative; min-height: 270px; overflow: hidden; border: 1px solid rgba(209,183,145,.8); border-radius: 28px; background: var(--green-950); color: var(--white); box-shadow: 0 18px 44px rgba(39, 24, 12, .09); }
.collection-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(18,58,34,.88), rgba(18,58,34,.62) 52%, rgba(18,58,34,.25)); }
.collection-card__overlay { position: relative; z-index: 1; height: 100%; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.collection-card__overlay h3 { margin: 8px 0 10px; color: var(--white); font-size: 1.45rem; }
.collection-card__overlay p { margin: 0 0 14px; color: rgba(255,255,255,.78); }
.collection-card .text-link { color: #f6e5b3; }
.offer-banner { position: relative; overflow: hidden; padding: 28px 30px 22px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.05fr); gap: 14px 28px; align-items: center; border-radius: 30px; color: var(--white); background: linear-gradient(120deg, #8c3618 0%, #b24f24 28%, #7b2b12 100%); box-shadow: 0 24px 60px rgba(96, 36, 14, .18); }
.offer-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.12), transparent 24%), radial-gradient(circle at 24% 70%, rgba(255,255,255,.08), transparent 26%); pointer-events: none; }
.offer-banner__copy, .offer-banner__visual, .offer-banner__benefits { position: relative; z-index: 1; }
.offer-banner__copy h2 { margin: 4px 0 10px; color: var(--white); font-size: clamp(2.25rem, 5vw, 4rem); }
.offer-banner__copy p { margin: 0 0 16px; max-width: 460px; color: rgba(255,255,255,.78); }
.offer-banner__visual { display: flex; justify-content: center; }
.offer-banner__visual img { width: 100%; max-width: 660px; height: auto; object-fit: contain; }
.offer-banner__benefits { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.offer-banner__benefits div { padding: 14px 12px; display: flex; align-items: center; gap: 12px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); font-weight: 700; }
.offer-banner__benefits span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,.14); font-size: 1rem; }
.combo-showcase { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(280px, .84fr); gap: 18px; }
.combo-showcase__main { padding: 32px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .85fr); gap: 20px; align-items: center; border: 1px solid rgba(209,183,145,.9); border-radius: 30px; background: linear-gradient(135deg, #fffdf8 0%, #f7ebd8 62%, #f1dfc6 100%); box-shadow: 0 18px 48px rgba(53, 33, 14, .08); }
.combo-showcase__copy h2 { margin: 8px 0 10px; font-size: clamp(2rem, 4.3vw, 3.25rem); }
.combo-showcase__copy p { margin: 0 0 14px; color: var(--muted); }
.combo-showcase__image { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(76, 41, 14, .16)); }
.combo-bullets { margin: 0 0 18px; padding: 0; display: grid; gap: 10px; list-style: none; }
.combo-bullets li { padding-left: 18px; position: relative; color: var(--green-900); font-weight: 700; }
.combo-bullets li::before { content: "•"; position: absolute; left: 0; color: var(--terracotta); }
.combo-showcase__stack { display: grid; gap: 18px; }
.mini-info-card { overflow: hidden; display: grid; grid-template-columns: 140px 1fr; align-items: stretch; border: 1px solid rgba(209,183,145,.86); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: 0 14px 38px rgba(53, 33, 14, .06); }
.mini-info-card img { width: 100%; height: 100%; object-fit: cover; }
.mini-info-card div { padding: 18px 18px 18px 16px; }
.mini-info-card h3 { margin: 8px 0 6px; font-size: 1.25rem; }
.mini-info-card p { margin: 0; color: var(--muted); }
.home-spice-grid .product-card__media { background: linear-gradient(180deg, #f6ead6 0%, #fffdf8 100%); }
.home-spice-grid .product-card__media::after { background: linear-gradient(180deg, rgba(228,201,160,.42), rgba(255,255,255,.06)); }
.home-spice-grid .product-card__media img { filter: drop-shadow(0 14px 22px rgba(70, 40, 10, .12)); }
.process-panel { background: rgba(255,255,255,.92); box-shadow: 0 18px 48px rgba(52, 31, 16, .05); }
.process-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.process-row img { width: 42px; height: 42px; }
.process-row strong { display: block; margin-bottom: 4px; }
.taste-explorer-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.taste-explorer-card { overflow: hidden; display: grid; grid-template-columns: minmax(180px, 46%) 1fr; border: 1px solid rgba(209,183,145,.9); border-radius: 30px; background: rgba(255,255,255,.94); box-shadow: 0 16px 42px rgba(47, 29, 13, .06); }
.taste-explorer-card img { width: 100%; height: 100%; object-fit: cover; }
.taste-explorer-card__copy { padding: 22px; display: flex; flex-direction: column; }
.taste-explorer-card__copy h3 { margin: 8px 0 10px; font-size: clamp(1.55rem, 2.5vw, 2rem); }
.taste-explorer-card__copy p { margin: 0 0 14px; color: var(--muted); }
.taste-card__levels { display: grid; gap: 8px; margin: 0 0 14px; }
.taste-card__level { display: flex; justify-content: space-between; gap: 12px; font-size: .84rem; color: var(--muted); }
.taste-card__icons { letter-spacing: .12em; color: var(--terracotta); font-weight: 800; white-space: nowrap; }
.quality-promise-section { padding-top: 44px; }
.quality-promise-grid { display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); gap: 18px; align-items: stretch; }
.quality-quote-card, .quality-details-card { padding: 28px; border: 1px solid rgba(209,183,145,.95); border-radius: 30px; background: rgba(255,255,255,.94); box-shadow: 0 18px 44px rgba(46, 28, 14, .06); }
.quality-quote-card { display: flex; flex-direction: column; justify-content: space-between; }
.quality-quote-card blockquote { margin: 18px 0 36px; max-width: 460px; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.14; color: var(--green-950); }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 999px; background: var(--terracotta); color: var(--white); font-size: 1.2rem; font-weight: 800; }
.testimonial-person small { display: block; color: var(--muted); }
.quality-details-card h2 { margin: 6px 0 12px; font-size: clamp(1.9rem, 3.4vw, 3rem); }
.quality-details-card p { color: var(--muted); }
.promise-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.promise-item { padding: 18px; border: 1px solid rgba(208,182,140,.82); border-radius: 22px; background: linear-gradient(180deg, #fffdf9, #f9f1e4); }
.promise-item > span:first-child { width: 40px; height: 40px; margin-bottom: 10px; display: grid; place-items: center; border-radius: 14px; background: rgba(178, 79, 36, .1); color: var(--terracotta); font-size: 1.1rem; }
.promise-item strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.promise-item p { margin: 0; font-size: .9rem; }
.quality-promise-cta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.journal-hub { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 18px; align-items: start; }
.journal-feature-panel { overflow: hidden; display: grid; gap: 0; border: 1px solid rgba(209,183,145,.9); border-radius: 30px; background: rgba(255,255,255,.94); box-shadow: 0 16px 42px rgba(47, 29, 13, .06); }
.journal-feature-panel img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.journal-feature-panel__copy { padding: 22px; }
.journal-feature-panel__copy h3 { margin: 8px 0 10px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.journal-feature-panel__copy p { margin: 0 0 14px; color: var(--muted); }
.recipe-grid--home .recipe-card { min-height: 100%; }
.testimonial-grid-home { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.review-card { padding: 24px; border: 1px solid rgba(209,183,145,.9); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: 0 12px 30px rgba(51, 33, 15, .05); }
.review-stars { margin-bottom: 14px; color: var(--gold); letter-spacing: .12em; }
.review-card p { margin: 0 0 14px; color: var(--green-900); }
.review-card strong { display: block; }
.review-card span { color: var(--muted); font-size: .9rem; }
.interactive-surface { position: relative; isolation: isolate; --mx: 50%; --my: 50%; }
.interactive-surface::before { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; background: radial-gradient(260px circle at var(--mx) var(--my), rgba(255,255,255,.18), transparent 58%); opacity: 0; transition: opacity .22s ease; pointer-events: none; }
.interactive-surface:hover::before { opacity: 1; }
.interactive-surface > * { position: relative; z-index: 1; }
@media (max-width: 1180px) {
  .hero-layout, .combo-showcase, .quality-promise-grid, .journal-hub { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 470px; margin-top: 10px; }
  .category-rail { grid-template-columns: repeat(5, minmax(110px, 1fr)); }
  .feature-collection-grid, .testimonial-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .taste-explorer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .home-hero--immersive { padding-top: 24px; }
  .hero-layout { gap: 18px; }
  .hero-showcase::before, .hero-showcase::after { inset: 20px 0 16px; }
  .hero-showcase__card--spotlight { right: 10px; width: min(100%, 430px); }
  .hero-showcase__products img { height: 118px; }
  .category-rail { grid-template-columns: repeat(4, minmax(110px, 1fr)); }
  .feature-collection-grid, .testimonial-grid-home { grid-template-columns: 1fr; }
  .offer-banner { grid-template-columns: 1fr; padding: 24px; }
  .offer-banner__benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .combo-showcase__main, .taste-explorer-card { grid-template-columns: 1fr; }
  .mini-info-card { grid-template-columns: 120px 1fr; }
  .quality-promise-grid, .promise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .home-hero__copy h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-proof { padding: 10px 12px; font-size: .85rem; }
  .hero-showcase { min-height: 420px; }
  .hero-showcase__card--spotlight { position: relative; inset: auto; width: 100%; }
  .hero-showcase::before, .hero-showcase::after { inset: 0; border-radius: 26px; }
  .hero-showcase__products { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .hero-showcase__products article { padding: 10px 8px; }
  .hero-showcase__products img { height: 90px; }
  .hero-floating { display: none; }
  .category-rail { grid-template-columns: repeat(3, minmax(96px, 1fr)); gap: 10px; }
  .category-chip__icon { width: 66px; height: 66px; }
  .category-chip__icon img { width: 54px; height: 54px; }
  .collection-card { min-height: 240px; }
  .offer-banner__benefits, .trust-strip { grid-template-columns: 1fr 1fr; }
  .mini-info-card { grid-template-columns: 1fr; }
  .mini-info-card img { height: 180px; }
  .story-panel__image { min-height: 220px; }
  .taste-explorer-card img { height: 220px; }
  .quality-quote-card blockquote { font-size: 1.55rem; }
  .journal-feature-panel img { aspect-ratio: 1.2 / 1; }
}
@media (max-width: 430px) {
  .category-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-showcase__products { grid-template-columns: 1fr; }
  .hero-showcase__products img { height: 118px; }
  .offer-banner__benefits, .promise-grid, .testimonial-grid-home { grid-template-columns: 1fr; }
}

/* Homepage refinement pass: hero, offer, combo and journal section improvements */
.home-hero--immersive {
  position: relative;
  padding: 56px 0 28px;
  background:
    linear-gradient(90deg, rgba(249, 244, 233, 0.98) 0%, rgba(249, 244, 233, 0.96) 19%, rgba(249, 244, 233, 0.86) 31%, rgba(249, 244, 233, 0.42) 48%, rgba(249, 244, 233, 0.08) 62%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.06), rgba(255, 251, 245, 0.06)),
    url('../images/hero/home-hero-traditional-flavours.webp') center right / cover no-repeat;
  border-bottom: 1px solid rgba(209, 183, 145, 0.55);
}

.home-hero--immersive .hero-atmosphere {
  background:
    url('../images/backgrounds/botanical-line-pattern.svg') left center / 360px auto no-repeat,
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.6), transparent 30%);
  opacity: 0.24;
}

.hero-layout {
  min-height: 540px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  gap: 36px;
}

.home-hero__copy {
  max-width: 590px;
  padding: 8px 0;
}

.home-hero__copy h1 {
  margin: 0 0 16px;
  max-width: 9ch;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-hero__copy p {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions--inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
}

.hero-actions--inline .btn {
  white-space: nowrap;
}

.hero-proofs {
  max-width: 560px;
  margin-top: 24px;
}

.hero-proof {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
}

.hero-sidecard {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid rgba(202, 172, 128, 0.58);
  border-radius: 30px;
  background: rgba(255, 252, 246, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 75px rgba(59, 34, 14, 0.16);
}

.hero-sidecard__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sidecard__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-sidecard__products article {
  padding: 14px 10px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(48, 30, 13, 0.08);
}

.hero-sidecard__products img {
  width: 100%;
  height: 118px;
  object-fit: contain;
}

.hero-sidecard__products strong {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
}

.hero-sidecard__products span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero-sidecard__footer {
  margin-top: 16px;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255,255,255,0.9), rgba(246, 234, 215, 0.92));
  border: 1px solid rgba(210, 181, 138, 0.72);
}

.hero-sidecard__footer span {
  max-width: 160px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-sidecard__footer strong {
  max-width: 150px;
  color: var(--terracotta);
  font-size: 1rem;
  line-height: 1.35;
}

.offer-banner {
  padding: 30px 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.96fr) minmax(260px, 0.7fr);
  gap: 26px;
  align-items: center;
  border-radius: 32px;
  background: linear-gradient(102deg, #783112 0%, #a24a22 28%, #8f3818 52%, #5a2b17 100%);
  box-shadow: 0 30px 70px rgba(90, 39, 17, 0.18);
}

.offer-banner::before {
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.10), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.offer-banner__copy h2 {
  margin: 6px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 0.98;
}

.offer-banner__copy p {
  margin-bottom: 18px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
}

.offer-banner__actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

.offer-banner__note {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.offer-banner__visual {
  position: relative;
  justify-content: center;
  align-self: stretch;
}

.offer-banner__visual::before {
  content: "";
  position: absolute;
  inset: 10% 6% 12%;
  border-radius: 26px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 66%);
  pointer-events: none;
}

.offer-banner__visual img {
  max-width: 100%;
  max-height: 275px;
  filter: drop-shadow(0 20px 40px rgba(33, 15, 6, 0.28));
}

.offer-banner__benefits {
  grid-column: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-banner__benefits div {
  min-height: 92px;
  padding: 16px 14px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
}

.offer-banner__benefits b {
  line-height: 1.35;
}

.offer-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-style: normal;
  font-size: 1rem;
}

.combo-section {
  padding-top: 10px;
}

.combo-showcase {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.combo-showcase__main {
  padding: 0;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  border-radius: 32px;
  background: linear-gradient(160deg, #fffdf8 0%, #f8eddc 100%);
}

.combo-showcase__media {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 26px;
  background: linear-gradient(180deg, #f7eddf 0%, #efe0c7 100%);
}

.combo-showcase__stamp {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 58, 34, 0.92);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.combo-showcase__copy {
  padding: 34px 32px;
}

.combo-showcase__copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
}

.combo-showcase__copy p {
  margin-bottom: 16px;
}

.combo-bullets {
  margin-bottom: 22px;
}

.combo-bullets li {
  padding-left: 22px;
  font-size: 1rem;
  line-height: 1.55;
}

.combo-bullets li::before {
  left: 2px;
}

.combo-showcase__stack {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.mini-info-card {
  grid-template-columns: 86px 1fr;
  gap: 0;
  padding: 22px;
  align-items: start;
}

.mini-info-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9ecdf, #f0dec4);
  border: 1px solid rgba(209,183,145,0.82);
  font-size: 1.6rem;
}

.mini-info-card div {
  padding: 0;
}

.mini-info-card h3 {
  margin-top: 8px;
}

.journal-hub {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.journal-feature-panel {
  grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
}

.journal-feature-panel img {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
  object-fit: cover;
}

.journal-feature-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.journal-feature-panel__copy h3 {
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
}

@media (max-width: 1180px) {
  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 620px;
  }

  .hero-sidecard {
    justify-self: start;
  }

  .offer-banner {
    grid-template-columns: 1fr;
  }

  .offer-banner__benefits {
    grid-column: auto;
  }

  .combo-showcase,
  .journal-hub {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .home-hero--immersive {
    padding-top: 34px;
    background-position: 72% center;
  }

  .home-hero__copy h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 8vw, 4.3rem);
  }

  .hero-actions--inline {
    flex-wrap: wrap;
  }

  .combo-showcase__main,
  .journal-feature-panel {
    grid-template-columns: 1fr;
  }

  .combo-showcase__media {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .home-hero--immersive {
    background:
      linear-gradient(180deg, rgba(249, 244, 233, 0.98) 0%, rgba(249, 244, 233, 0.93) 24%, rgba(249, 244, 233, 0.66) 46%, rgba(249, 244, 233, 0.2) 100%),
      url('../images/hero/home-hero-traditional-flavours.webp') 68% center / cover no-repeat;
  }

  .hero-layout {
    gap: 24px;
  }

  .home-hero__copy h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 10.5vw, 3.5rem);
  }

  .hero-actions--inline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions--inline .btn {
    flex: 1 1 180px;
  }

  .hero-sidecard {
    width: 100%;
    padding: 18px;
  }

  .hero-sidecard__products {
    grid-template-columns: 1fr;
  }

  .hero-sidecard__products article {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    text-align: left;
    align-items: center;
  }

  .hero-sidecard__products img {
    height: 86px;
  }

  .hero-sidecard__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-banner {
    padding: 24px;
  }

  .offer-banner__benefits {
    grid-template-columns: 1fr 1fr;
  }

  .combo-showcase__copy {
    padding: 26px 22px;
  }

  .mini-info-card {
    grid-template-columns: 1fr;
  }

  .journal-feature-panel img {
    min-height: 240px;
  }
}

@media (max-width: 430px) {
  .offer-banner__benefits {
    grid-template-columns: 1fr;
  }
}

/* Feedback pass: hero line control, four-column products, combo actions and reviews */
@media (min-width: 1181px) {
  .home-hero__copy {
    max-width: 760px;
  }

  .home-hero__copy h1 {
    max-width: none;
    font-size: clamp(3.35rem, 4.5vw, 5.15rem);
  }

  .home-hero__copy h1 span,
  .home-hero__copy h1 em {
    display: block;
    white-space: nowrap;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.72fr);
  }

  .hero-proofs {
    max-width: 820px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof {
    min-width: 0;
    padding: 11px 12px;
    font-size: 0.79rem;
    line-height: 1.25;
  }
}

.hero-sidecard {
  opacity: 0.9;
}

.hero-sidecard__products a {
  padding: 14px 10px;
  display: block;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(48, 30, 13, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-sidecard__products a:hover,
.hero-sidecard__products a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(48, 30, 13, 0.14);
}

.hero-sidecard__products a strong {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  color: var(--green-950);
}

.hero-sidecard__products a span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--muted);
}

.category-section {
  position: relative;
  z-index: 5;
  margin-top: -74px;
  padding-top: 0;
}

.product-grid,
.product-grid--six {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid--six .product-card__desc,
.product-grid--six .product-card__tags {
  display: block;
}

.product-grid--six .product-card__buy-row {
  grid-template-columns: minmax(86px, 0.72fr) minmax(0, 1.28fr);
}

.product-grid--six .product-card__buy-row select {
  display: block;
}

.offer-banner .eyebrow {
  color: #ffd8bd;
  opacity: 1;
}

.offer-banner .eyebrow::before {
  background: #ffd8bd;
}

.combo-showcase__media {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100%;
  background: #3b2a1c;
}

.combo-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 20, 12, 0.02), rgba(31, 20, 12, 0.18));
  pointer-events: none;
}

.combo-showcase__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.combo-showcase__stamp {
  z-index: 2;
}

.combo-showcase__copy .hero-actions--inline {
  flex-wrap: wrap;
  align-items: stretch;
}

.combo-showcase__copy .hero-actions--inline .btn {
  flex: 1 1 210px;
  min-width: 0;
  text-align: center;
}

.mini-info-card {
  grid-template-columns: 86px minmax(0, 1fr);
}

.mini-info-card > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.mini-info-card__action {
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(18, 58, 34, 0.28);
  text-underline-offset: 4px;
}

.mini-info-card__action:hover {
  color: var(--terracotta);
}

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

.review-author img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(209, 183, 145, 0.84);
  background: var(--sand);
}

.review-author strong,
.review-author span {
  display: block;
}

@media (max-width: 1180px) {
  .product-grid,
  .product-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-section {
    margin-top: -44px;
  }

  .hero-proofs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .product-grid,
  .product-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-section {
    margin-top: -24px;
  }

  .combo-showcase__media {
    min-height: 350px;
  }
}

@media (max-width: 680px) {
  .home-hero__copy h1 span,
  .home-hero__copy h1 em {
    display: block;
  }

  .hero-sidecard__products a {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    text-align: left;
    align-items: center;
  }

  .category-section {
    margin-top: -16px;
  }

  .hero-proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-info-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}

/* Hero refinement: transparent product preview and corrected section spacing */
.hero-proofs {
  width: 610px;
}

.hero-sidecard {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0.9;
}

.hero-sidecard::before {
  display: none;
}

.hero-sidecard__products {
  gap: 14px;
}

.category-section {
  margin-top: -24px;
}

/* Inner-page hero imagery */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: #f7ead4;
  background-image:
    linear-gradient(
      90deg,
      rgba(250, 242, 227, 0.99) 0%,
      rgba(250, 242, 227, 0.97) 28%,
      rgba(250, 242, 227, 0.88) 48%,
      rgba(250, 242, 227, 0.48) 68%,
      rgba(250, 242, 227, 0.12) 100%
    ),
    var(--page-hero-image, url('../images/hero/rustic-pantry-pickles.webp'));
  background-position: center, center right;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    url('../images/backgrounds/botanical-line-pattern.svg') left center / 330px auto no-repeat;
  opacity: 0.20;
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero__grid {
  min-height: 216px;
}

.page-hero__grid > :first-child,
.page-hero > .container > :not(.page-hero__aside) {
  position: relative;
}

.page-hero h1 {
  max-width: 10.8ch;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.page-hero__aside {
  background: rgba(255, 253, 248, 0.80);
  border-color: rgba(196, 159, 105, 0.52);
  box-shadow: 0 18px 45px rgba(53, 32, 13, 0.08);
  backdrop-filter: blur(8px);
}

@media (max-width: 920px) {
  .page-hero {
    min-height: 310px;
    background-image:
      linear-gradient(
        90deg,
        rgba(250, 242, 227, 0.98) 0%,
        rgba(250, 242, 227, 0.94) 42%,
        rgba(250, 242, 227, 0.66) 72%,
        rgba(250, 242, 227, 0.28) 100%
      ),
      var(--page-hero-image, url('../images/hero/rustic-pantry-pickles.webp'));
    background-position: center, 70% center;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 280px;
    padding: 48px 0 40px;
    background-image:
      linear-gradient(
        90deg,
        rgba(250, 242, 227, 0.97) 0%,
        rgba(250, 242, 227, 0.91) 55%,
        rgba(250, 242, 227, 0.62) 100%
      ),
      var(--page-hero-image, url('../images/hero/rustic-pantry-pickles.webp'));
    background-position: center, 68% center;
  }

  .page-hero h1 {
    max-width: 12ch;
  }
}

/* v8: restore the constrained inner-page hero layout and keep imagery inside the hero visual area */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  padding: 76px 0 58px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f7ead4;
  background-image: none;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(52%, 860px);
  background-image: var(--page-hero-image, url('../images/hero/rustic-pantry-pickles.webp'));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    url('../images/backgrounds/botanical-line-pattern.svg') left center / 330px auto no-repeat,
    linear-gradient(
      90deg,
      rgba(250, 242, 227, 1) 0%,
      rgba(250, 242, 227, 1) 39%,
      rgba(250, 242, 227, 0.96) 48%,
      rgba(250, 242, 227, 0.72) 57%,
      rgba(250, 242, 227, 0.16) 72%,
      rgba(250, 242, 227, 0.03) 100%
    );
  opacity: 0.24;
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.page-hero__grid {
  min-height: 216px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.page-hero__grid > :first-child {
  max-width: 690px;
}

.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 16px;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.page-hero__aside {
  width: min(100%, 430px);
  justify-self: end;
  padding: 26px;
  border: 1px solid rgba(196, 159, 105, 0.52);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 45px rgba(53, 32, 13, 0.08);
  backdrop-filter: blur(8px);
}

@media (max-width: 980px) {
  .page-hero {
    min-height: 320px;
  }

  .page-hero::before {
    width: 58%;
    background-position: 62% center;
  }

  .page-hero::after {
    background:
      url('../images/backgrounds/botanical-line-pattern.svg') left center / 280px auto no-repeat,
      linear-gradient(
        90deg,
        rgba(250, 242, 227, 1) 0%,
        rgba(250, 242, 227, 0.98) 48%,
        rgba(250, 242, 227, 0.78) 66%,
        rgba(250, 242, 227, 0.22) 100%
      );
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 290px;
    padding: 52px 0 44px;
  }

  .page-hero::before {
    width: 62%;
    opacity: 0.72;
    background-position: 66% center;
  }

  .page-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(250, 242, 227, 0.99) 0%,
        rgba(250, 242, 227, 0.96) 58%,
        rgba(250, 242, 227, 0.65) 82%,
        rgba(250, 242, 227, 0.26) 100%
      );
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero__grid > :first-child {
    max-width: 620px;
  }

  .page-hero__aside {
    display: none;
  }
}

@media (max-width: 680px) {
  .page-hero > .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .page-hero h1 {
    max-width: 12ch;
  }
}

/* v9: ensure inner-page hero imagery renders above the section background */
.page-hero {
  isolation: isolate;
  background-color: #f7ead4;
}

.page-hero::before {
  z-index: 0;
  opacity: 1;
}

.page-hero::after {
  z-index: 1;
}

.page-hero > .container {
  z-index: 2;
}

/* v9 final: use a real image element so inner-page hero artwork always loads */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f7ead4;
}

.page-hero::before {
  display: none;
}

.page-hero__media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(52%, 860px);
  overflow: hidden;
  pointer-events: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  z-index: 1;
  background:
    url('../images/backgrounds/botanical-line-pattern.svg') left center / 330px auto no-repeat,
    linear-gradient(
      90deg,
      rgba(250, 242, 227, 1) 0%,
      rgba(250, 242, 227, 1) 38%,
      rgba(250, 242, 227, 0.97) 47%,
      rgba(250, 242, 227, 0.78) 57%,
      rgba(250, 242, 227, 0.24) 74%,
      rgba(250, 242, 227, 0.04) 100%
    );
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .page-hero__media {
    width: 58%;
  }

  .page-hero__media img {
    object-position: 62% center;
  }
}

@media (max-width: 760px) {
  .page-hero__media {
    width: 64%;
    opacity: 0.76;
  }

  .page-hero__media img {
    object-position: 66% center;
  }
}

/* ========================================================================
   TheAnaaj 1.4.0 WordPress source-parity layer
   This file intentionally preserves the approved production stylesheet and
   adds only scoped WordPress/runtime compatibility rules.
   ======================================================================== */
.wp-site-blocks { padding: 0; }
.wp-site-blocks > * { margin-block-start: 0; }
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) { max-width: none; }
.theanaaj-source-home,
.theanaaj-source-home .theanaaj-parity-view,
.theanaaj-source-home .theanaaj-parity-header,
.theanaaj-source-home .theanaaj-parity-footer {
  --container: 1380px;
  --radius: 22px;
}
.theanaaj-source-home .reveal { opacity: 1; transform: none; }
.theanaaj-source-home .wp-block-shortcode { margin: 0; }
.theanaaj-source-home .product-card__buy-row--single { grid-template-columns: 1fr; }
.theanaaj-source-home .product-card__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--green-900);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.theanaaj-source-home .product-card__button:hover { background: var(--green-700); }
.theanaaj-source-home .site-footer .theanaaj-footer-links ul { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.theanaaj-source-home .site-footer .theanaaj-footer-links a { color: inherit; }
.theanaaj-source-home .footer-bottom .theanaaj-footer-links ul { display: flex; flex-wrap: wrap; gap: 14px; }

/* Keep the approved wide desktop composition on ordinary desktop browser
   viewports. Mobile starts below 720px; this avoids the previous tablet-like
   collapse on 900–1180px desktop windows. */
@media (min-width: 720px) {
  .theanaaj-source-home .hero-layout {
    min-height: 540px;
    grid-template-columns: minmax(0, 1.14fr) minmax(350px, .72fr) !important;
    gap: 36px;
  }
  .theanaaj-source-home .home-hero__copy { max-width: 590px; }
  .theanaaj-source-home .home-hero__copy h1 { max-width: none; }
  .theanaaj-source-home .hero-sidecard { width: min(100%, 460px); justify-self: end; }
  .theanaaj-source-home .hero-sidecard__products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .hero-proofs { width: 610px; max-width: none; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .category-section { margin-top: -24px; }
  .theanaaj-source-home .category-rail { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; overflow: visible; }
  .theanaaj-source-home .product-grid,
  .theanaaj-source-home .product-grid--six { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .offer-banner { grid-template-columns: minmax(0, .8fr) minmax(0, .96fr) minmax(250px, .7fr) !important; }
  .theanaaj-source-home .offer-banner__benefits { grid-column: auto !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .combo-showcase { grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr) !important; }
  .theanaaj-source-home .combo-showcase__main { grid-template-columns: minmax(290px, .92fr) minmax(0, 1fr) !important; }
  .theanaaj-source-home .combo-showcase__stack { grid-template-rows: repeat(3, minmax(0, 1fr)); }
  .theanaaj-source-home .story-process { grid-template-columns: 1.05fr .95fr !important; }
  .theanaaj-source-home .story-panel { grid-template-columns: .9fr 1.1fr !important; }
  .theanaaj-source-home .taste-explorer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .quality-promise-grid { grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr) !important; }
  .theanaaj-source-home .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .journal-hub { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important; }
  .theanaaj-source-home .journal-feature-panel { grid-template-columns: minmax(240px, .92fr) minmax(0, 1fr) !important; }
  .theanaaj-source-home .recipe-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .theanaaj-source-home .testimonial-grid-home { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (min-width: 720px) and (max-width: 1100px) {
  .theanaaj-source-home .container { width: min(calc(100% - 28px), 1380px); }
  .theanaaj-source-home .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr) !important; gap: 20px; }
  .theanaaj-source-home .hero-sidecard { width: min(100%, 370px); }
  .theanaaj-source-home .hero-sidecard__products { gap: 8px; }
  .theanaaj-source-home .hero-sidecard__products a { padding: 10px 7px; }
  .theanaaj-source-home .hero-sidecard__products img { height: 96px; }
  .theanaaj-source-home .hero-proofs { width: min(610px, 100%); gap: 8px; }
  .theanaaj-source-home .hero-proof { padding: 9px 10px; font-size: .72rem; }
  .theanaaj-source-home .category-rail { gap: 5px; padding-inline: 8px; }
  .theanaaj-source-home .category-chip { padding-inline: 3px; }
  .theanaaj-source-home .category-chip__icon { width: 58px; height: 58px; }
  .theanaaj-source-home .category-chip__icon img { width: 48px; height: 48px; }
  .theanaaj-source-home .category-chip span:last-child { font-size: .66rem; }
  .theanaaj-source-home .offer-banner { grid-template-columns: minmax(0, .82fr) minmax(0, .86fr) minmax(220px, .72fr) !important; gap: 14px; padding: 24px; }
  .theanaaj-source-home .offer-banner__benefits div { min-height: 78px; padding: 11px; }
  .theanaaj-source-home .combo-showcase { grid-template-columns: minmax(0, 1.17fr) minmax(250px, .83fr) !important; }
  .theanaaj-source-home .combo-showcase__main { grid-template-columns: minmax(230px, .82fr) minmax(0, 1.18fr) !important; }
  .theanaaj-source-home .combo-showcase__copy { padding: 24px 20px; }
  .theanaaj-source-home .combo-showcase__copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  .theanaaj-source-home .mini-info-card { padding: 16px; grid-template-columns: 62px 1fr; }
  .theanaaj-source-home .mini-info-card__icon { width: 48px; height: 48px; }
  .theanaaj-source-home .story-panel__copy { padding: 24px; }
  .theanaaj-source-home .process-panel { padding: 24px; }
}

/* TheAnaaj 1.5 native block homepage compatibility */
.theanaaj-source-home .wp-site-blocks,
.theanaaj-source-home .wp-block-post-content,
.theanaaj-source-home .wp-block-template-part,
.theanaaj-source-home .theanaaj-native-section {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.theanaaj-source-home .wp-block-post-content > .theanaaj-native-section { margin-block-start: 0 !important; }
.theanaaj-source-home .home-hero--immersive {
  background:
    linear-gradient(90deg, rgba(249, 244, 233, 0.98) 0%, rgba(249, 244, 233, 0.96) 19%, rgba(249, 244, 233, 0.86) 31%, rgba(249, 244, 233, 0.42) 48%, rgba(249, 244, 233, 0.08) 62%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.06), rgba(255, 251, 245, 0.06)),
    var(--theanaaj-hero-image, url('../images/hero/home-hero-traditional-flavours.webp')) center right / cover no-repeat;
}
.theanaaj-source-home .product-card__button svg,
.theanaaj-source-home .product-card__button .icon,
.theanaaj-source-home .product-card__button > svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  flex: 0 0 18px !important;
}
.theanaaj-source-home .utility-bar svg { width: 16px !important; height: 16px !important; }
.theanaaj-source-home .newsletter-copy > svg { width: 34px !important; height: 34px !important; }
.theanaaj-source-home .footer-contact svg,
.theanaaj-source-home .social-links svg { width: 19px !important; height: 19px !important; }

/* TheAnaaj 1.5 native WooCommerce parity corrections. */
.theanaaj-source-home .product-card__button {
  min-height: 37px;
  gap: 6px;
  border: 1px solid var(--green-950);
  border-radius: 14px;
  font-size: .68rem;
}
.theanaaj-source-home .footer-brand .brand {
  height: 57.6px;
  line-height: 0;
}
.theanaaj-source-home .footer-brand .brand img {
  width: 240px;
  height: 57.6px;
  max-height: 57.6px;
}
.theanaaj-source-home .footer-brand .brand { line-height: 24px; }
.theanaaj-source-home .footer-brand p { margin-top: 9px; }

/* Ensure the story image paints above the interaction overlay inside WordPress. */
.theanaaj-source-home .story-panel__image {
  position: relative;
  z-index: 10;
}

.theanaaj-source-home .taste-explorer-card > img,
.theanaaj-source-home .journal-feature-panel > img,
.theanaaj-source-home .recipe-card__image,
.theanaaj-source-home .recipe-card__image img {
  position: relative;
  z-index: 10;
}


/* 1.6 global editability and behaviour controls */
.theanaaj-parity-header.has-sticky-header .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
body.admin-bar .theanaaj-parity-header.has-sticky-header .site-header { top: 32px; }
.theanaaj-parity-header.has-nav-above .nav-strip { border-top: 0; border-bottom: 1px solid rgba(229,214,189,.8); }
.theanaaj-page-content,
.theanaaj-page-content > .wp-block-post-content { margin: 0; padding: 0; max-width: none; }
.theanaaj-page-content > .wp-block-post-content > * { margin-block-start: 0; margin-block-end: 0; }
.theanaaj-editable-page-hero { margin: 0; }

.theanaaj-floating-contact {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  display: grid;
  gap: 10px;
  pointer-events: none;
}
.theanaaj-floating-contact.is-right { right: 24px; }
.theanaaj-floating-contact.is-left { left: 24px; }
.theanaaj-floating-contact__button {
  min-width: 54px;
  min-height: 54px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 14px 32px rgba(12,42,24,.24);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  pointer-events: auto;
  transition: transform .18s ease, box-shadow .18s ease;
}
.theanaaj-floating-contact__button:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 18px 36px rgba(12,42,24,.3); }
.theanaaj-floating-contact__button svg { width: 22px !important; height: 22px !important; flex: 0 0 22px; }
.theanaaj-floating-contact__button.is-whatsapp { background: #128c4a; }
.theanaaj-floating-contact__button.is-call { background: var(--green-900); }

@media (max-width: 782px) {
  body.admin-bar .theanaaj-parity-header.has-sticky-header .site-header { top: 46px; }
  .theanaaj-floating-contact { bottom: 16px; }
  .theanaaj-floating-contact.is-right { right: 14px; }
  .theanaaj-floating-contact.is-left { left: 14px; }
  .theanaaj-floating-contact__button { width: 52px; min-width: 52px; height: 52px; min-height: 52px; padding: 0; }
  .theanaaj-floating-contact__button span { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
}

/* TheAnaaj 1.6 global header/footer icon containment for every template. */
.theanaaj-parity-header .utility-bar__inner svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px;
}
.theanaaj-parity-header .header-search button svg {
  width: 22px !important;
  height: 22px !important;
}
.theanaaj-parity-header .header-action > svg {
  width: 25px !important;
  height: 25px !important;
  flex: 0 0 25px;
}
.theanaaj-parity-header .icon-button svg {
  width: 24px !important;
  height: 24px !important;
}
.theanaaj-parity-footer .newsletter-copy > svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px;
}
.theanaaj-parity-footer .footer-contact svg,
.theanaaj-parity-footer .social-links svg {
  width: 19px !important;
  height: 19px !important;
  flex: 0 0 19px;
}
.theanaaj-form-submit {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green-900) !important;
  border-radius: 16px;
  color: #fff !important;
  background: var(--green-900) !important;
  font-weight: 800;
}
.theanaaj-form-submit:hover { background: var(--green-700) !important; }

/* TheAnaaj 1.7 source-parity corrections. */
.product-card__heart svg,
.product-card__button svg,
.product-card__buy-row button svg,
.product-info .btn svg,
.purchase-row .btn svg,
.micro-proof svg,
.footer-contact svg,
.social-links svg,
.newsletter-copy svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.product-card__heart svg { width: 19px; height: 19px; }
.product-card__button,
.product-card__buy-row button {
  min-height: 37px;
  gap: 6px;
  padding: 8px 11px;
  line-height: 1.1;
}
.product-card__button svg { width: 16px; height: 16px; flex-basis: 16px; }
.footer-bottom .theanaaj-footer-links { margin-left: auto; }
.footer-bottom .theanaaj-footer-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
}
.footer-bottom .theanaaj-footer-links li { margin: 0; }
.footer-bottom .theanaaj-footer-links a { color: inherit; }

/* Source product detail: WooCommerce-backed, without classic-template leakage. */
.theanaaj-source-product-page .section { padding-top: 64px; }
.theanaaj-source-product-page .breadcrumb { margin-bottom: 34px; }
.theanaaj-source-product-page .product-gallery__main {
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 38%, #fff 0, #f9f0df 55%, #f3e5cf 100%);
}
.theanaaj-source-product-page .product-gallery__main img {
  width: 92%;
  height: 560px;
  object-fit: contain;
}
.theanaaj-source-product-page .product-gallery__thumbs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}
.theanaaj-source-product-page .product-gallery__thumbs button {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.theanaaj-source-product-page .product-gallery__thumbs button.is-active { border-color: var(--green-700); box-shadow: 0 0 0 1px var(--green-700); }
.theanaaj-source-product-page .product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.theanaaj-source-product-form { margin: 0; }
.theanaaj-source-product-form .single_add_to_cart_button { width: 100%; border: 0; cursor: pointer; }
.theanaaj-source-product-form .variant-chip { cursor: pointer; }
.theanaaj-source-product-form .qty-control input { appearance: textfield; }
.theanaaj-source-product-form .qty-control input::-webkit-outer-spin-button,
.theanaaj-source-product-form .qty-control input::-webkit-inner-spin-button { margin: 0; appearance: none; }
.theanaaj-source-product-page .product-info > .btn--outline { margin-top: 0; }
.theanaaj-source-product-page .product-detail-grid p { color: var(--muted); }
.theanaaj-source-product-page .product-detail-grid .product-card__tags { min-height: 0; margin-bottom: 14px; }
.theanaaj-source-product-page .product-detail-grid .product-card__tags span { font-size: .68rem; }
.theanaaj-source-product-page .section--compact { padding-bottom: 0; }

/* Native editable inner pages use the production-template section geometry. */
.theanaaj-page-content > .wp-block-post-content { margin: 0; }
.theanaaj-page-content .page-hero { margin-block: 0; }
.theanaaj-page-content .section--tight { padding: 54px 0; }
.theanaaj-page-content .section { padding: 72px 0; }
.theanaaj-page-content .wp-block-group.container,
.theanaaj-page-content .wp-block-columns.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.theanaaj-page-content .wp-block-group.split,
.theanaaj-page-content .wp-block-columns.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.theanaaj-page-content .wp-block-group.trust-grid,
.theanaaj-page-content .wp-block-columns.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.theanaaj-page-content .wp-block-group.narrow { width: min(calc(100% - 36px), 900px); margin-inline: auto; }
.theanaaj-page-content .wp-block-group.center { text-align: center; }

/* WordPress recipe grid rendered with source recipe-card classes. */
.theanaaj-recipe-grid.recipe-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.theanaaj-recipe-grid .recipe-card__image { aspect-ratio: 900 / 573; }
.theanaaj-recipe-grid .recipe-card__image img { width: 100%; height: 100%; object-fit: cover; }
.theanaaj-recipe-grid .recipe-card__body { padding: 18px; }
.theanaaj-recipe-grid .recipe-card__meta { color: var(--terracotta); font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.theanaaj-recipe-grid .recipe-card h3 { margin: 7px 0; font-size: 1.35rem; }

/* Source FAQ grouped layout. */
.theanaaj-faq-source .faq-section + .faq-section { margin-top: 36px; }
.theanaaj-faq-source .faq-section h2 { margin-bottom: 16px; font-size: 2.1rem; }
.theanaaj-faq-source .faq-list { display: grid; gap: 10px; }
.theanaaj-faq-source details {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ivory);
}
.theanaaj-faq-source summary { padding: 18px 20px; cursor: pointer; font-weight: 800; list-style: none; }
.theanaaj-faq-source summary::-webkit-details-marker { display: none; }
.theanaaj-faq-source summary::after { content: "+"; float: right; }
.theanaaj-faq-source details[open] summary::after { content: "−"; }
.theanaaj-faq-source details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

@media (max-width: 920px) {
  .theanaaj-source-product-page .product-gallery__main { min-height: 450px; }
  .theanaaj-source-product-page .product-gallery__main img { height: 420px; }
  .theanaaj-page-content .wp-block-group.split,
  .theanaaj-page-content .wp-block-columns.split { grid-template-columns: 1fr; }
  .theanaaj-page-content .wp-block-group.trust-grid,
  .theanaaj-page-content .wp-block-columns.trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .footer-bottom .theanaaj-footer-links { margin-left: 0; }
  .footer-bottom .theanaaj-footer-links ul { justify-content: flex-start; }
  .theanaaj-source-product-page .product-gallery__main { min-height: 330px; }
  .theanaaj-source-product-page .product-gallery__main img { height: 310px; }
  .theanaaj-source-product-page .purchase-row { grid-template-columns: 108px 1fr; }
  .theanaaj-recipe-grid.recipe-grid { grid-template-columns: 1fr; }
  .theanaaj-page-content .wp-block-group.trust-grid,
  .theanaaj-page-content .wp-block-columns.trust-grid { grid-template-columns: 1fr; }
}

/* Production footer-bottom legal link structure. */
.footer-bottom .theanaaj-footer-legal {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  position: relative;
  z-index: 3;
}
.footer-bottom .theanaaj-footer-legal a { color: inherit; text-decoration: none; white-space: nowrap; }
@media (max-width: 680px) {
  .footer-bottom .theanaaj-footer-legal { margin-left: 0; justify-content: flex-start; }
}

/* WooCommerce wrappers inside source price controls. */
.product-info__price strong .woocommerce-Price-amount,
.product-info__price del .woocommerce-Price-amount {
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  font-size: inherit;
  font-weight: inherit;
}
.product-info__price > [data-theanaaj-product-discount] {
  padding: 4px 9px;
  border-radius: 10px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: .68rem;
  font-weight: 800;
}

/* Source card CTA is an anchor in WordPress so variation-specific add-to-cart
   URLs remain accessible without JavaScript. Match the original button. */
.product-card__buy-row .product-card__button {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid var(--green-950);
  border-radius: 14px;
  color: var(--white);
  background: var(--green-900);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.product-card__buy-row .product-card__button:hover {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}

/* Contact page uses the source two-card support grid, not the generic four-card grid. */
.theanaaj-page-content .theanaaj-contact-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (max-width: 560px) {
  .theanaaj-page-content .theanaaj-contact-support-grid { grid-template-columns: 1fr !important; }
}

/* ========================================================================
   TheAnaaj 1.8.0 inner-page/source parity corrections
   ======================================================================== */

/* Editable header links receive the same active treatment as the production
   static navigation, without requiring a WordPress menu object. */
.theanaaj-parity-header .primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.theanaaj-parity-header .mobile-nav-links a[aria-current="page"] {
  color: var(--terracotta);
}

/* The footer has a deliberately separate light-on-dark logo. Never let global
   Site Logo dimensions or column layout turn the legal row into a vertical list. */
.theanaaj-parity-footer .footer-brand .brand {
  width: 240px;
  height: auto;
  display: block;
  line-height: 0;
}
.theanaaj-parity-footer .footer-brand .brand img {
  width: 240px !important;
  height: auto !important;
  max-height: 86px !important;
  object-fit: contain;
  object-position: left center;
}
.theanaaj-parity-footer .footer-bottom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.theanaaj-parity-footer .footer-bottom .theanaaj-footer-legal {
  width: auto !important;
  margin-left: auto !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
}
.theanaaj-parity-footer .footer-bottom .theanaaj-footer-legal a {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 !important;
}

/* Native contact/bulk forms: WordPress global input rules previously expanded
   checkboxes to full field width and separated the consent copy. */
.form-card .checkbox,
.theanaaj-form-card .checkbox,
.checkbox.theanaaj-consent {
  width: 100%;
  min-height: 24px;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin: 0 !important;
  cursor: pointer;
}
.form-card .checkbox input[type="checkbox"],
.theanaaj-form-card .checkbox input[type="checkbox"],
.checkbox.theanaaj-consent input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
  padding: 0 !important;
  margin: 2px 0 0 !important;
  border-radius: 3px !important;
  accent-color: var(--green-900);
}
.form-card .checkbox span,
.theanaaj-form-card .checkbox span,
.checkbox.theanaaj-consent span {
  display: block;
  flex: 1 1 auto;
  padding: 0;
  line-height: 1.45;
  text-align: left;
}

/* Core Columns wrappers must not make one trust card shorter than its siblings. */
.theanaaj-page-content .trust-grid,
.theanaaj-page-content .wp-block-columns.trust-grid {
  align-items: stretch !important;
}
.theanaaj-page-content .trust-grid > .wp-block-column {
  min-width: 0;
  display: flex !important;
  align-self: stretch !important;
}
.theanaaj-page-content .trust-grid > .wp-block-column > .trust-card,
.theanaaj-page-content .trust-grid .trust-card {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.theanaaj-page-content .trust-grid .trust-card p:last-child { margin-bottom: 0; }

/* Recipe archive cards use the production 900:573 crop regardless of generated
   WordPress thumbnail dimensions or intrinsic image attributes. */
.theanaaj-page-content .theanaaj-recipe-grid.recipe-grid {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.theanaaj-page-content .theanaaj-recipe-grid .recipe-card {
  min-width: 0;
  border-radius: 20px;
}
.theanaaj-page-content .theanaaj-recipe-grid .recipe-card__image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.55 !important;
  overflow: hidden;
}
.theanaaj-page-content .theanaaj-recipe-grid .recipe-card__image img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}
.theanaaj-page-content .theanaaj-recipe-grid .recipe-card__body { padding: 17px; }
.theanaaj-page-content .theanaaj-recipe-grid .recipe-card h3 { font-size: 1.18rem; }
.theanaaj-page-content .theanaaj-recipe-grid .recipe-card p { font-size: .72rem; }

/* Farm-to-kitchen page uses the approved lightweight process grid and the exact
   source split for the product-specific controls section. */
.theanaaj-farm-banner {
  display: block;
  min-height: auto;
  aspect-ratio: 2.96 / 1;
  overflow: hidden;
  border-radius: 22px;
}
.theanaaj-farm-banner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.theanaaj-farm-process-section .process-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
.theanaaj-farm-process-section .process-step,
.theanaaj-farm-process-section .wp-block-group.process-step {
  padding: 25px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.06) !important;
  box-shadow: none !important;
}
.theanaaj-farm-process-section .process-step h3 { margin: 0 0 12px; font-size: 1.1rem; }
.theanaaj-farm-process-section .process-step p { margin: 0; color: inherit; }
.theanaaj-farm-product-section .container.split {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 48px !important;
  align-items: center !important;
}
.theanaaj-farm-product-section .container.split > .wp-block-column { min-width: 0; }
.theanaaj-product-controls-card { padding: 30px !important; }
.theanaaj-product-controls-card h3 { margin-bottom: 10px; }
.theanaaj-product-controls-card p { margin-bottom: 0; }

/* Source article template. The entire post remains WordPress-native, while the
   presentation matches recipe.html rather than the generic split hero. */
.theanaaj-article-page > .wp-block-theanaaj-article-view,
.theanaaj-article-page .theanaaj-source-article { margin: 0; }
.theanaaj-source-article .breadcrumb { margin-bottom: 28px; }

/* Exact combined product/editorial search layout. */
.theanaaj-search-page > .wp-block-theanaaj-search-view { margin: 0; }
.theanaaj-source-search .search-group + .search-group { margin-top: 38px; }
.theanaaj-source-search .search-group h2 { margin: 0 0 20px; }
.theanaaj-source-search .search-result { color: inherit; text-decoration: none; }
.theanaaj-source-search .search-result b .woocommerce-Price-amount { white-space: nowrap; }
.theanaaj-source-search .search-field .icon-btn {
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ivory);
  cursor: pointer;
}

@media (max-width: 920px) {
  .theanaaj-farm-process-section .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .theanaaj-farm-product-section .container.split { grid-template-columns: 1fr !important; }
  .theanaaj-parity-footer .footer-bottom { align-items: flex-start !important; }
}
@media (max-width: 680px) {
  .theanaaj-page-content .theanaaj-recipe-grid.recipe-grid { grid-template-columns: 1fr; }
  .theanaaj-farm-process-section .process-grid { grid-template-columns: 1fr !important; }
  .theanaaj-parity-footer .footer-bottom { flex-direction: column !important; }
  .theanaaj-parity-footer .footer-bottom .theanaaj-footer-legal { margin-left: 0 !important; justify-content: flex-start !important; }
}
