/* ==========================================================================
   BUDHUKA SPICES — style.css
   --------------------------------------------------------------------------
   00. Design tokens
   01. Reset & base
   02. Typography helpers
   03. Buttons, chips, fields
   04. Preloader
   05. Header / navigation / drawers / search
   06. Hero
   07. Marquee
   08. Section shell
   09. Category cards
   10. Shop toolbar + product cards
   11. 3D showcase
   12. Featured editorial
   13. Why choose us + counters
   14. About
   15. Testimonials
   16. Newsletter
   17. Footer
   18. Cart drawer
   19. Product modal
   20. Checkout modal
   21. Toasts, back-to-top
   22. Reveal animations
   23. Responsive
   ========================================================================== */

/* ==========================================================================
   00. DESIGN TOKENS  —  edit these to re-skin the whole site
   ========================================================================== */
:root {
  /* Brand palette — sampled straight from the Sanjeewani logo:
     wordmark red #E81820 · wreath gold #C89828 · ornament black #232323 ·
     star-anise brown #904020 · white ground #FFFFFF                        */
  --pepper:      #16110F;   /* logo black, deepened for large dark fills */
  --pepper-2:    #201A17;
  --pepper-3:    #2C2420;
  --brown:       #904020;   /* star anise */
  --brown-soft:  #B15731;
  --cream:       #FCFAF6;   /* the logo's white ground, barely warmed */
  --cream-2:     #F5F1E9;
  --cream-3:     #E8E0D2;
  --turmeric:    #D9A82B;   /* wreath gold, brightened for accents */
  --turmeric-lt: #EDC65E;
  --chilli:      #E01F26;   /* wordmark red — the primary brand colour */
  --chilli-dark: #B0151B;
  --chilli-lt:   #ED3941;
  --curry:       #5F7A2E;   /* kept for "in stock / free delivery" states */
  --gold:        #C89828;   /* wreath gold */
  --gold-lt:     #E3B54F;
  --ink:         #211C19;
  --ink-soft:    #4E453E;
  --muted:       #7C7168;
  --line:        rgba(33, 28, 25, .13);
  --line-light:  rgba(252, 250, 246, .16);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --r-xs: 10px;
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Elevation */
  --sh-xs: 0 1px 3px rgba(22, 17, 15, .07);
  --sh-sm: 0 6px 18px -8px rgba(22, 17, 15, .18);
  --sh-md: 0 18px 44px -22px rgba(22, 17, 15, .32);
  --sh-lg: 0 44px 90px -44px rgba(22, 17, 15, .5);
  --sh-gold: 0 18px 44px -20px rgba(200, 152, 40, .5);

  /* Rhythm
     --sj-gap is the theme grid/slider token. Do NOT reuse --gap alone for layout:
     Elementor sets --gap: initial on .elementor-element, which collapses CSS gap. */
  --pad-section: clamp(4.5rem, 9vw, 8.5rem);
  --sj-gap: clamp(1.25rem, 2.4vw, 2rem);
  --gap: var(--sj-gap); /* alias for non-Elementor pages */
  --header-h: 84px;
  --announce-h: 40px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .22s;
  --t: .38s;
  --t-slow: .7s;
}

/* ==========================================================================
   01. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(.975rem, .3vw + .9rem, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

/* The hidden attribute must beat component display rules (e.g. .checkout{display:grid}) */
[hidden] { display: none !important; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd, figure, fieldset { margin: 0; }
fieldset { border: 0; padding: 0; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--turmeric);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--turmeric); color: var(--pepper); }

.container { width: min(100% - 2.5rem, 1280px); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 400;
  background: var(--pepper); color: var(--cream);
  padding: .75rem 1.25rem; border-radius: var(--r-xs);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

section { scroll-margin-top: calc(var(--header-h) + 14px); }

/* Custom scrollbar (desktop) */
@media (hover: hover) and (pointer: fine) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--cream-2); }
  ::-webkit-scrollbar-thumb { background: #d9c5a4; border-radius: 99px; border: 3px solid var(--cream-2); }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }
}

/* ==========================================================================
   02. TYPOGRAPHY HELPERS
   ========================================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown-soft); margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-lt); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--turmeric); box-shadow: 0 0 0 4px rgba(200, 152, 40, .18);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--pepper);
}
.section__title--light { color: var(--cream); }

.section__sub {
  color: var(--ink-soft);
  max-width: 58ch;
  font-size: clamp(1rem, .4vw + .92rem, 1.12rem);
}
.section__sub--light { color: rgba(252, 250, 246, .72); }

.accent { color: var(--turmeric); }

.link-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--chilli); font-weight: 600; font-size: .85rem;
  text-decoration: underline; text-underline-offset: 3px;
}

.noscript-note {
  margin-top: 2rem; padding: 1.25rem 1.5rem; border-radius: var(--r);
  background: var(--cream-2); border: 1px solid var(--line); text-align: center;
}

/* Star ratings */
.stars { display: inline-flex; gap: 2px; color: var(--turmeric); font-size: .78rem; line-height: 1; }
.stars i { display: block; }
.stars .is-empty { color: rgba(133, 112, 88, .35); }

/* Glass surface */
.glass {
  background: rgba(252, 250, 246, .12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(252, 250, 246, .22);
}

/* ==========================================================================
   03. BUTTONS / CHIPS / FIELDS
   ========================================================================== */
.btn {
  --btn-bg: var(--turmeric);
  --btn-fg: var(--pepper);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .9rem 1.65rem;
  border: 0; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn i { font-size: .95em; }
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .45), transparent 80%);
  transform: translateX(-120%); transition: transform .8s var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn:active { transform: translateY(0); }

/* Red is the logo's dominant colour, so it carries the primary action */
.btn--primary {
  --btn-fg: #fff;
  background: linear-gradient(135deg, var(--chilli-lt), var(--chilli) 55%, var(--chilli-dark));
}
.btn--primary:hover { box-shadow: 0 18px 44px -20px rgba(224, 31, 38, .58); }
.btn--dark { --btn-bg: var(--pepper); --btn-fg: var(--cream); }
.btn--dark:hover { box-shadow: 0 18px 40px -20px rgba(22, 17, 15, .7); }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { background: var(--pepper); color: var(--cream); box-shadow: var(--sh-md); }
/* Outlined gold — for use on the dark showcase panel */
.btn--gold {
  background: transparent; color: var(--gold-lt);
  box-shadow: inset 0 0 0 1.5px rgba(200, 152, 40, .55);
}
.btn--gold:hover { background: var(--turmeric); color: var(--pepper); box-shadow: var(--sh-gold); }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: .55rem 1.15rem; font-size: .72rem; }

/* Icon buttons */
.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: 0 0 auto;
  background: transparent; border: 0; border-radius: var(--r-sm);
  cursor: pointer; color: inherit; font-size: 1.02rem;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.icon-btn:hover { background: rgba(33, 28, 25, .08); transform: translateY(-1px); }
.icon-btn--round {
  border-radius: 50%; width: 48px; height: 48px;
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.icon-btn--round:hover { background: var(--pepper); color: var(--cream); box-shadow: none; }
.icon-btn__badge {
  position: absolute; top: 3px; right: 1px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--chilli); color: #fff;
  font-size: .66rem; font-weight: 700; line-height: 1;
  border-radius: var(--r-pill);
  border: 2px solid var(--cream);
  transition: transform var(--t-fast) var(--ease);
}
.icon-btn__badge.is-bumped { transform: scale(1.35); }
.icon-btn__badge.is-zero { display: none; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 40px; padding: .45rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  background: transparent; color: var(--ink-soft);
  font-size: .8rem; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.is-active {
  background: var(--pepper); border-color: var(--pepper); color: var(--cream);
  box-shadow: var(--sh-sm);
}
.chip__count { opacity: .55; font-size: .74rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }

.tag-btn {
  background: rgba(252, 250, 246, .1); border: 1px solid var(--line-light);
  color: var(--cream); border-radius: var(--r-pill);
  padding: .3rem .85rem; font-size: .78rem; cursor: pointer; margin-right: .35rem;
  transition: background-color var(--t-fast) var(--ease);
}
.tag-btn:hover { background: var(--turmeric); color: var(--pepper); border-color: var(--turmeric); }

/* Size selector */
.size-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.size-chip {
  min-width: 62px; min-height: 44px; padding: .35rem .8rem;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: #fff; color: var(--ink-soft); cursor: pointer;
  font-size: .8rem; font-weight: 700; line-height: 1.15;
  transition: all var(--t-fast) var(--ease);
}
.size-chip small { font-size: .68rem; font-weight: 600; opacity: .6; }
.size-chip:hover { border-color: var(--gold); transform: translateY(-1px); }
.size-chip.is-active {
  background: var(--pepper); border-color: var(--pepper); color: var(--cream);
  box-shadow: var(--sh-sm);
}
.size-chip.is-active small { opacity: .8; }

/* Quantity stepper */
.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden;
  background: #fff;
}
.qty__btn {
  width: 44px; height: 46px; border: 0; background: transparent;
  cursor: pointer; color: var(--ink-soft); font-size: .8rem;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.qty__btn:hover { background: var(--cream-2); color: var(--ink); }
.qty__input {
  width: 44px; height: 46px; border: 0; text-align: center;
  font-weight: 700; font-size: .95rem; background: transparent; color: var(--ink);
  -moz-appearance: textfield;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty--sm .qty__btn { width: 34px; height: 34px; font-size: .7rem; }
.qty--sm .qty__input { width: 32px; height: 34px; font-size: .82rem; }

/* Inline fields */
.field {
  display: flex; align-items: center; gap: .65rem;
  min-height: 52px; padding: 0 1.1rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-pill);
  color: var(--muted);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200, 152, 40, .16); }
.field input, .field select {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font: inherit; font-size: .92rem; color: var(--ink);
}
.field input::placeholder { color: #b09a80; }
.field--search { flex: 1 1 260px; }
.field--select { position: relative; flex: 0 0 auto; padding-right: 2.6rem; cursor: pointer; }
.field--select select { appearance: none; -webkit-appearance: none; cursor: pointer; font-weight: 600; }
.field--select > i { position: absolute; right: 1.15rem; font-size: .72rem; pointer-events: none; }
.field__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field__clear { border: 0; background: transparent; cursor: pointer; color: var(--muted); padding: .25rem; }
.field__clear:hover { color: var(--chilli); }

/* Stacked form fields */
.field-block { display: block; margin-bottom: 1rem; }
.field-block > span {
  display: block; margin-bottom: .4rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.field-block input, .field-block textarea {
  width: 100%; padding: .85rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: #fff; font: inherit; font-size: .94rem; color: var(--ink);
  outline: none; resize: vertical;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field-block input:focus, .field-block textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200, 152, 40, .16);
}
.field-block.has-error input, .field-block.has-error textarea { border-color: var(--chilli); }
.field-error { display: block; min-height: 1.1rem; margin-top: .25rem; font-size: .76rem; font-style: normal; color: var(--chilli); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 1rem; }

.form-msg { margin: 0; font-size: .82rem; min-height: 1.2rem; grid-column: 1 / -1; }
.form-msg.is-ok { color: var(--curry); }
.form-msg.is-err { color: #ffbfae; }

/* ==========================================================================
   04. PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center;
  background: var(--pepper);
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; color: var(--cream); }
.preloader__mark img,
.preloader img {
  height: 96px !important;
  width: auto !important;
  max-width: 140px !important;
  max-height: 96px !important;
  object-fit: contain;
  margin: 0 auto 1.1rem;
  animation: floatY 2.6s ease-in-out infinite;
}
/* The logo already carries the name, so the wordmark below it stays quiet */
.preloader__name { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .34em; margin-left: .34em; color: rgba(252, 250, 246, .55); }
.preloader__sub { font-size: .64rem; letter-spacing: .55em; margin-left: .55em; color: var(--gold); margin-top: .2rem; }
.preloader__bar {
  width: 190px; height: 2px; margin: 1.6rem auto 0;
  background: rgba(252, 250, 246, .16); border-radius: 99px; overflow: hidden;
}
.preloader__bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--turmeric), var(--gold-lt)); transition: width .3s var(--ease); }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ==========================================================================
   05. HEADER / NAV / DRAWERS / SEARCH
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  transition: background-color var(--t) var(--ease), box-shadow var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease), transform var(--t) var(--ease);
}
.header__inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  height: var(--header-h);
  overflow: hidden; /* clip any oversized custom-logo file */
}

/* The logo is drawn on white, so the header stays a solid light bar at all
   times rather than going transparent over the hero. */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t) var(--ease);
}
.site-header.is-stuck::before { box-shadow: 0 10px 30px -22px rgba(33, 28, 25, .55); }
.site-header.is-hidden { transform: translateY(-104%); }

/* Brand — beat WooCommerce / Elementor `img { height: auto }` so the JPG lockup
   never dumps at intrinsic 463×398 on Shop, product, or other templates. */
.brand {
  display: inline-flex; align-items: center; gap: .8rem;
  flex: 0 0 auto; min-width: 0; max-height: 100%;
}
.brand__mark,
.site-header .brand img,
.site-header img.brand__mark,
.site-header .custom-logo,
.site-footer .brand img,
.site-footer img.brand__mark,
.woocommerce .site-header img,
.woocommerce-page .site-header img,
.woocommerce .site-footer .brand img,
.woocommerce-page .site-footer .brand img {
  height: 62px !important;
  width: auto !important;
  max-width: 72px !important;
  max-height: 62px !important;
  object-fit: contain;
  display: block;
  /* The logo file has a white ground; multiply drops it into the light bar */
  mix-blend-mode: multiply;
  transition: transform var(--t) var(--ease);
}
.brand:hover .brand__mark,
.site-header .brand:hover img { transform: scale(1.04); }
.brand__text { display: grid; line-height: 1; }
.brand__text strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.16rem; letter-spacing: .16em; color: var(--chilli);
}
.brand__text em {
  font-style: normal; font-size: .54rem; font-weight: 700;
  letter-spacing: .4em; color: var(--gold); margin-top: .3rem;
}

/* On dark grounds (footer, preloader) the logo needs its own white plate */
.brand--footer .brand__mark,
.site-footer .brand img {
  mix-blend-mode: normal !important;
  background: #fff; border-radius: 12px; padding: 5px;
  height: 62px !important;
  max-height: 62px !important;
}
.preloader__mark img {
  mix-blend-mode: normal;
  background: #fff; border-radius: 12px; padding: 5px;
}

/* Desktop nav */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav__link {
  position: relative; padding: .4rem 0;
  font-size: .86rem; font-weight: 600; color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--turmeric); border-radius: 2px;
  transition: width var(--t) var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.nav + .header__actions { margin-left: clamp(.5rem, 2vw, 1.6rem); }

/* Burger */
.burger { display: none; }
.burger__box { position: relative; width: 22px; height: 14px; display: block; }
.burger__box i,
.burger__box::before,
.burger__box::after {
  content: ''; position: absolute; left: 0; height: 2px; border-radius: 2px;
  background: var(--pepper); transition: all var(--t) var(--ease);
}
.burger__box::before { top: 0; width: 22px; }
.burger__box i { top: 6px; width: 15px; }
.burger__box::after { bottom: 0; width: 22px; }
.burger[aria-expanded="true"] .burger__box::before { top: 6px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__box i { opacity: 0; transform: translateX(10px); }
.burger[aria-expanded="true"] .burger__box::after { bottom: 6px; transform: rotate(-45deg); }

/* --- Generic overlay shell (drawers, modals, search) --- */
.drawer, .modal, .search-overlay {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.drawer.is-open, .modal.is-open, .search-overlay.is-open { visibility: visible; pointer-events: auto; }

.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 14, 10, .55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.is-open > .drawer__backdrop { opacity: 1; }

.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(430px, 100%);
  display: flex; flex-direction: column;
  background: var(--cream);
  box-shadow: var(--sh-lg);
  transform: translateX(100%);
  transition: transform .48s var(--ease-out);
}
.is-open > .drawer__panel { transform: translateX(0); }

.drawer--nav .drawer__panel {
  left: 0; right: auto; width: min(340px, 86%);
  background: var(--pepper); color: var(--cream);
  transform: translateX(-100%);
}
.drawer--nav.is-open .drawer__panel { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.4rem; border-bottom: 1px solid var(--line); flex: 0 0 auto;
}
.drawer--nav .drawer__head { border-color: var(--line-light); }
.drawer__title { font-size: .82rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.drawer__count { color: var(--muted); font-weight: 600; }

.drawer__links { padding: 1.4rem .6rem; flex: 1; }
.drawer__links a {
  display: flex; align-items: center; gap: 1rem;
  padding: .95rem 1rem; border-radius: var(--r-sm);
  font-family: var(--font-display); font-size: 1.42rem; font-weight: 500;
  color: var(--cream);
  transition: background-color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.drawer__links a span { font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .12em; color: var(--gold); }
.drawer__links a:hover { background: rgba(252, 250, 246, .07); padding-left: 1.4rem; }

.drawer__foot { padding: 1.4rem; border-top: 1px solid var(--line-light); }
.drawer__tag { font-family: var(--font-display); font-style: italic; color: var(--gold-lt); margin-bottom: .9rem; }

.social { display: flex; gap: .5rem; }
.social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-light); color: var(--cream);
  transition: all var(--t-fast) var(--ease);
}
.social a:hover { background: var(--turmeric); border-color: var(--turmeric); color: var(--pepper); transform: translateY(-2px); }

/* Search overlay */
.search-overlay__panel {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 1.4rem 0 2.2rem;
  background: var(--pepper); color: var(--cream);
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  max-height: 100vh; overflow-y: auto;
}
.search-overlay.is-open .search-overlay__panel { transform: translateY(0); }
.search-overlay__head { display: flex; align-items: center; gap: 1rem; padding-top: 1rem; }
.search-overlay__field {
  flex: 1; display: flex; align-items: center; gap: .9rem;
  border-bottom: 1.5px solid var(--line-light); padding-bottom: .9rem; color: var(--gold);
}
.search-overlay__field input {
  flex: 1; min-width: 0; background: transparent; border: 0; outline: none;
  font-family: var(--font-display); font-size: clamp(1.3rem, 3.4vw, 2.2rem);
  color: var(--cream);
}
.search-overlay__field input::placeholder { color: rgba(252, 250, 246, .32); }
.search-overlay__hint { margin: 1.1rem 0 .4rem; font-size: .82rem; color: rgba(252, 250, 246, .55); }
.search-overlay__results {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .6rem; margin-top: 1.2rem;
}
.sr-item {
  display: flex; align-items: center; gap: .9rem; width: 100%;
  padding: .6rem; border: 1px solid var(--line-light); border-radius: var(--r-sm);
  background: rgba(252, 250, 246, .04); color: var(--cream);
  cursor: pointer; text-align: left;
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.sr-item:hover { background: rgba(252, 250, 246, .1); transform: translateX(3px); }
.sr-item img { width: 52px; height: 52px; border-radius: 10px; background: var(--cream-2); object-fit: cover; flex: 0 0 auto; }
.sr-item span { font-size: .76rem; color: rgba(252, 250, 246, .55); }
.sr-item strong { display: block; font-size: .92rem; font-weight: 600; color: var(--cream); }
.sr-item b { color: var(--turmeric); }
.search-empty { color: rgba(252, 250, 246, .55); grid-column: 1 / -1; padding: .5rem 0 1rem; }

/* ==========================================================================
   06. HERO
   ========================================================================== */
.hero {
  position: relative;
  /* Cap the fill so very tall windows do not leave the hero looking sparse */
  min-height: min(100svh, 940px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + var(--announce-h) + 2.5rem) 0 5.5rem;
  background: radial-gradient(120% 90% at 78% 12%, #3a2a1e 0%, var(--pepper-2) 42%, var(--pepper) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.hero__glow--gold {
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  right: -6vw; top: 4vh;
  background: radial-gradient(circle, rgba(200, 152, 40, .55), transparent 70%);
  animation: glowPulse 9s ease-in-out infinite;
}
.hero__glow--chilli {
  width: 34vw; height: 34vw; max-width: 480px; max-height: 480px;
  left: -8vw; bottom: -10vh;
  background: radial-gradient(circle, rgba(224, 31, 38, .48), transparent 70%);
  animation: glowPulse 11s ease-in-out infinite reverse;
}
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: .45; } 50% { transform: scale(1.12); opacity: .62; } }

.hero__grain {
  position: absolute; inset: 0; opacity: .32; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr .98fr;
  align-items: center; gap: clamp(1.5rem, 4vw, 4rem);
  width: min(100% - 2.5rem, 1280px);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.55rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: .35rem 0 1.4rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__in { display: block; }
.html-no-anim .hero__title .line__in { transform: none; }

.hero__sub { max-width: 46ch; color: rgba(252, 250, 246, .76); font-size: clamp(1rem, .5vw + .92rem, 1.16rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__cta .btn--ghost { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(252, 250, 246, .28); }
.hero__cta .btn--ghost:hover { background: var(--cream); color: var(--pepper); box-shadow: none; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2.8rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line-light);
}
.hero__stats strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem); color: var(--turmeric); line-height: 1;
}
.hero__stats span { font-size: .78rem; color: rgba(252, 250, 246, .6); letter-spacing: .04em; }

.hero__visual { position: relative; }

.floating-card {
  position: absolute; left: 0; bottom: 8%;
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1.15rem; border-radius: var(--r);
  color: var(--cream); box-shadow: var(--sh-md);
  animation: floatY 5.5s ease-in-out infinite;
}
.floating-card__icon {
  width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; background: var(--turmeric); color: var(--pepper); font-size: 1rem;
}
.floating-card__text { display: grid; font-size: .74rem; color: rgba(252, 250, 246, .68); line-height: 1.4; }
.floating-card__text strong { font-size: .88rem; color: var(--cream); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 3; display: grid; justify-items: center; gap: .55rem;
  color: rgba(252, 250, 246, .6);
  transition: color var(--t-fast) var(--ease);
}
.scroll-cue:hover { color: var(--turmeric); }
.scroll-cue__track {
  width: 24px; height: 40px; border-radius: var(--r-pill);
  border: 1.5px solid currentColor; display: grid; justify-items: center; padding-top: 7px;
}
.scroll-cue__dot { width: 4px; height: 8px; border-radius: 4px; background: currentColor; animation: cueDrop 1.9s var(--ease) infinite; }
.scroll-cue__label { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; }
@keyframes cueDrop { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(15px); opacity: 0; } }

/* ==========================================================================
   07. MARQUEE
   ========================================================================== */
.marquee {
  background: var(--pepper);
  border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
  overflow: hidden; padding: .95rem 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-size: clamp(.92rem, 1.5vw, 1.15rem);
  letter-spacing: .04em; color: rgba(252, 250, 246, .8); white-space: nowrap;
}
.marquee__track .marquee__sep { color: var(--turmeric); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   08. SECTION SHELL
   ========================================================================== */
.section { padding: var(--pad-section) 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.6rem); }
.section__head .section__sub { margin-top: .9rem; }
.section__head--split {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; max-width: none;
}
.section__head--split .section__sub { max-width: 40ch; }

.section--slider { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.section--cats { background: var(--cream-2); }
.section--shop { background: var(--cream-2); }
.section--featured { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section--why { background: var(--cream); }
.section--about { background: var(--cream-2); }
.section--reviews { background: var(--cream); }
.section--gallery { background: var(--cream-2); }
.section--promise { background: var(--cream); }
.section--process { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section--contact-cards { background: var(--cream); padding: var(--pad-section) 0 0; }
.section--contact-form { background: var(--cream); }
.section--faq { background: var(--cream-2); }
.section--cta { background: var(--cream-2); }

/* ==========================================================================
   09. CATEGORY TILES
   ========================================================================== */
/* Three columns at desktop, with the first tile spanning two — five categories
   then fill two rows exactly (2+1, then 1+1+1) with no orphan slot. */
.cat-tiles {
  display: grid;
  gap: var(--sj-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cat-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); min-height: 300px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

/* The first tile earns a double-width slot on roomy screens */
@media (min-width: 900px) {
  .cat-tile:first-child { grid-column: span 2; }
}
@media (max-width: 899px) {
  .cat-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-tile:first-child { grid-column: auto; }
}
@media (max-width: 640px) {
  .cat-tiles { grid-template-columns: 1fr; }
}

.cat-tile__media { position: absolute; inset: 0; display: block; background: var(--cream-3); }
.cat-tile__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.cat-tile:hover .cat-tile__media img { transform: scale(1.07); }
/* Weighted low so the caption stays readable over pale photographs */
.cat-tile__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(22, 17, 15, .05) 0%,
    rgba(22, 17, 15, .3) 32%,
    rgba(22, 17, 15, .78) 62%,
    rgba(22, 17, 15, .95) 100%);
}

.cat-tile__body {
  position: relative; z-index: 2;
  display: grid; align-content: end; gap: .3rem;
  height: 100%; min-height: 300px; padding: 1.5rem;
  color: var(--cream);
}
.cat-tile__count {
  font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--turmeric);
}
.cat-tile__name {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600; letter-spacing: -.01em;
}
.cat-tile__desc { font-size: .85rem; color: rgba(252, 250, 246, .74); max-width: 34ch; }
.cat-tile__from {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .7rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-lt);
  transition: gap var(--t-fast) var(--ease);
}
.cat-tile:hover .cat-tile__from { gap: .85rem; }

/* ==========================================================================
   09b. SLIDER
   --------------------------------------------------------------------------
   Slides are sized from --per-view, which the Carousel writes per breakpoint.
   The track shifts a whole page at a time, so one "step" is 100% of the
   viewport width regardless of how many cards that happens to be.
   ========================================================================== */
.slider { position: relative; --per-view: 4; --slider-gap: var(--sj-gap); }

.slider__viewport {
  overflow: hidden;
  width: 100%;
  margin-inline: calc(var(--slider-gap) / -2);
  padding-inline: calc(var(--slider-gap) / 2);
  padding-block: .5rem 1rem;          /* room for card hover-lift and shadow */
  touch-action: pan-y;
}
.slider__viewport:focus-visible { outline: 2px solid var(--turmeric); outline-offset: 4px; border-radius: var(--r); }

.slider__track {
  display: flex; align-items: stretch;
  width: 100%;                         /* so slide % basis + JS page math use the viewport */
  gap: var(--slider-gap);
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider__slide {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--slider-gap)) / var(--per-view));
  min-width: 0; display: flex;
  box-sizing: border-box;
}
.slider__slide > * { width: 100%; min-width: 0; }
.slider__slide.is-filtered-out { display: none !important; }

.slider.is-dragging .slider__viewport { cursor: grabbing; }
.slider.is-dragging .slider__slide { user-select: none; }
/* Dots and progress are pointless when every slide already fits. The arrows
   live outside the slider, so JS disables those instead. */
.slider.is-static .slider__foot { display: none; }

.slider__head-nav { display: grid; gap: .9rem; justify-items: flex-end; }
.slider__arrows { display: flex; gap: .6rem; }
.slider__arrows .icon-btn[disabled] { opacity: .35; pointer-events: none; }

.slider__foot {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; margin-top: 1.4rem;
}
.slider__dots { display: flex; gap: .45rem; }
.slider__dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(33, 28, 25, .22); cursor: pointer;
  transition: width var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease), border-radius var(--t-fast) var(--ease);
}
.slider__dots button:hover { background: rgba(33, 28, 25, .4); }
.slider__dots button.is-active { width: 26px; border-radius: 99px; background: var(--turmeric); }

.slider__progress {
  display: block; width: min(180px, 26vw); height: 3px;
  border-radius: 99px; background: rgba(33, 28, 25, .12); overflow: hidden;
}
.slider__progress i {
  display: block; height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--turmeric), var(--chilli));
  transition: width var(--t) var(--ease);
}

.slider__cta { margin-top: 2.4rem; text-align: center; }

/* ==========================================================================
   10. SHOP TOOLBAR + PRODUCT CARDS
   ========================================================================== */
.toolbar {
  background: #fff; border: 1px solid rgba(33, 28, 25, .08);
  border-radius: var(--r-lg); padding: 1.15rem;
  box-shadow: var(--sh-sm); margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}
.toolbar__row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.toolbar__row--filters {
  justify-content: space-between; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px dashed var(--line);
}
.toolbar__meta {
  margin-top: .9rem; font-size: .8rem; color: var(--muted);
  display: flex; align-items: center; gap: .8rem;
}
.toolbar__meta #resultCount { font-weight: 700; color: var(--ink); }
.chip-row--tabs .chip { background: var(--cream-2); border-color: transparent; }
.chip-row--tabs .chip.is-active { background: var(--chilli); border-color: var(--chilli); color: #fff; }

.product-grid {
  display: grid; gap: var(--sj-gap);
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
}

.p-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(33, 28, 25, .07);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.p-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.p-card.is-leaving { opacity: 0; transform: scale(.96); }

.p-card__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-3) 100%);
  cursor: pointer; border: 0; padding: 0; width: 100%; display: block;
}
.p-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.p-card:hover .p-card__media img { transform: scale(1.06) rotate(-1deg); }

.p-card__badges { position: absolute; top: .8rem; left: .8rem; z-index: 2; display: grid; gap: .35rem; justify-items: start; }
.badge {
  padding: .28rem .65rem; border-radius: var(--r-pill);
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--pepper); color: var(--cream);
}
.badge--new { background: var(--curry); color: #fff; }
.badge--best { background: var(--turmeric); color: var(--pepper); }
.badge--featured { background: var(--chilli); color: #fff; }

.p-card__wish {
  position: absolute; top: .7rem; right: .7rem; z-index: 3;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .9); color: var(--ink-soft);
  display: grid; place-items: center; cursor: pointer; font-size: .88rem;
  box-shadow: var(--sh-xs);
  transition: all var(--t-fast) var(--ease);
}
.p-card__wish:hover { transform: scale(1.09); color: var(--chilli); }
.p-card__wish.is-active { background: var(--chilli); color: #fff; }
.p-card__wish.is-active i { animation: pop .35s var(--ease); }
@keyframes pop { 0% { transform: scale(1); } 45% { transform: scale(1.4); } 100% { transform: scale(1); } }

.p-card__quick {
  position: absolute; left: .8rem; right: .8rem; bottom: .8rem; z-index: 2;
  min-height: 42px; border: 0; border-radius: var(--r-pill);
  background: rgba(22, 17, 15, .9); color: var(--cream);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; opacity: 0; transform: translateY(10px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), background-color var(--t-fast) var(--ease);
}
.p-card:hover .p-card__quick, .p-card:focus-within .p-card__quick { opacity: 1; transform: translateY(0); }
.p-card__quick:hover { background: var(--turmeric); color: var(--pepper); }
@media (hover: none) {
  .p-card__quick {
    opacity: 1;
    transform: none;
    background: rgba(22, 17, 15, .78);
  }
}

.p-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.p-card__cat {
  font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .35rem;
}
.p-card__name {
  font-family: var(--font-display); font-size: 1.14rem; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; transition: color var(--t-fast) var(--ease);
}
.p-card__name:hover { color: var(--chilli); }
.p-card__desc { font-size: .82rem; color: var(--muted); margin-top: .25rem; line-height: 1.5; }
.p-card__rating { display: flex; align-items: center; gap: .45rem; margin-top: .55rem; font-size: .76rem; color: var(--muted); }

/* A five-column grid rather than a wrapping flex row: the pack sizes always
   sit on one line, whatever the card width happens to be. */
.p-card__sizes {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: .3rem; margin-top: .9rem;
}
.p-card__sizes .size-chip {
  min-width: 0; min-height: 34px; padding: .25rem .15rem;
  font-size: .69rem; border-radius: 9px;
}

.p-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-top: auto; padding-top: 1rem;
}
.p-card__price { display: grid; line-height: 1.15; }
.p-card__price strong { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; color: var(--ink); }
.p-card__price small { font-size: .68rem; color: var(--muted); letter-spacing: .04em; }
.p-card__add {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; padding: .6rem 1.1rem; border: 0; border-radius: var(--r-pill);
  background: var(--pepper); color: var(--cream);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
a.p-card__add { color: var(--cream); }
.p-card__add:hover { background: var(--turmeric); color: var(--pepper); transform: translateY(-1px); }
.p-card__add.is-added { background: var(--curry); color: #fff; }

.empty-state {
  text-align: center; padding: clamp(3rem, 8vw, 5rem) 1rem;
  background: #fff; border-radius: var(--r-lg); border: 1px dashed var(--line);
}
.empty-state i { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; }
.empty-state h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: .4rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.4rem; }

/* ==========================================================================
   11. 3D SHOWCASE
   ========================================================================== */
.section--showcase {
  background:
    radial-gradient(90% 70% at 20% 10%, rgba(224, 31, 38, .22), transparent 60%),
    radial-gradient(80% 80% at 85% 80%, rgba(200, 152, 40, .2), transparent 60%),
    var(--pepper);
  color: var(--cream);
  overflow: hidden;
}
.showcase__inner {
  display: grid; grid-template-columns: .92fr 1.08fr;
  align-items: center; gap: clamp(2rem, 5vw, 4.5rem);
}
.craft-list { margin-top: 2.2rem; display: grid; gap: 1.15rem; }
.craft-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.craft-list__no {
  font-family: var(--font-display); font-size: .82rem; font-weight: 700;
  color: var(--turmeric); padding-top: .2rem; flex: 0 0 auto;
}
.craft-list strong { display: block; font-size: 1rem; color: var(--cream); margin-bottom: .15rem; }
.craft-list p { font-size: .86rem; color: rgba(252, 250, 246, .6); }

.showcase__visual {
  position: relative; margin: 0;
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 9 / 7;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(252, 250, 246, .09);
}
.showcase__photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.showcase__visual:hover .showcase__photo { transform: scale(1.05); }
.showcase__visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, transparent 45%, rgba(22, 17, 15, .6) 100%);
}
.showcase__caption {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1.2rem; border-radius: var(--r-pill);
  color: var(--cream);
}
.showcase__caption i {
  width: 38px; height: 38px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--turmeric); color: var(--pepper); font-size: .95rem;
}
.showcase__caption span { display: grid; font-size: .74rem; color: rgba(252, 250, 246, .68); line-height: 1.4; }
.showcase__caption strong { font-size: .88rem; color: var(--cream); }

/* ==========================================================================
   12. FEATURED EDITORIAL
   ========================================================================== */
.featured__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(2rem, 5vw, 4.5rem);
}
.featured__media { position: relative; }
.featured__media img { width: 100%; position: relative; z-index: 1; }
.featured__ring {
  position: absolute; inset: 8% 6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 152, 40, .3), transparent 68%);
  animation: glowPulse 8s ease-in-out infinite;
}
.featured__chip {
  position: absolute; right: 4%; top: 12%; z-index: 2;
  display: grid; justify-items: center; gap: .1rem;
  padding: .85rem 1.1rem; border-radius: var(--r);
  background: rgba(22, 17, 15, .82); color: var(--cream);
  box-shadow: var(--sh-md);
  animation: floatY 6s ease-in-out infinite;
}
.featured__chip strong { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--turmeric); }
.featured__chip span { font-size: .68rem; color: rgba(252, 250, 246, .7); white-space: nowrap; }

.featured__lede {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.4; font-weight: 400; font-style: italic;
  color: var(--ink-soft); margin: 1.2rem 0 1.6rem;
}
.featured__points { display: grid; gap: .7rem; margin-bottom: 1.8rem; }
.featured__points li { display: flex; align-items: center; gap: .8rem; font-weight: 600; font-size: .95rem; }
.featured__points i {
  width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 50%; background: rgba(200, 152, 40, .16); color: #a9750a; font-size: .82rem;
}
.featured__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  padding: 1rem 0; margin-bottom: 1.6rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.featured__price { font-size: .82rem; color: var(--muted); }
.featured__price strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); margin-left: .3rem; }
.featured__sizes { font-size: .8rem; color: var(--muted); letter-spacing: .06em; }
.featured__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ==========================================================================
   13. WHY CHOOSE US
   ========================================================================== */
.feature-grid {
  display: grid;
  gap: var(--sj-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff; border-radius: var(--r-lg); padding: 2rem 1.6rem;
  border: 1px solid rgba(33, 28, 25, .07); box-shadow: var(--sh-xs);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature-card__icon {
  width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 1.2rem;
  border-radius: var(--r-sm); font-size: 1.3rem;
  background: linear-gradient(140deg, rgba(200, 152, 40, .2), rgba(224, 31, 38, .12));
  color: var(--brown);
  transition: transform var(--t) var(--ease);
}
.feature-card:hover .feature-card__icon { transform: rotate(-8deg) scale(1.06); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: .45rem; }
.feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.counter-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem); padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--pepper), var(--brown));
  color: var(--cream); text-align: center;
  box-shadow: var(--sh-md);
}
.counter-strip strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--turmeric); line-height: 1;
}
.counter-strip span { font-size: .76rem; color: rgba(252, 250, 246, .65); letter-spacing: .05em; }

/* ==========================================================================
   14. ABOUT
   ========================================================================== */
.about__inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); }
.about__copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 56ch; }
.about__lede {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45; color: var(--ink) !important; margin: 1.2rem 0 1.2rem;
}
.about__marks {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  margin: 2rem 0; padding: 1.4rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.about__marks strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.about__marks span { font-size: .78rem; color: var(--muted); }

.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.about__badge {
  position: absolute; left: -6%; bottom: 8%;
  display: flex; align-items: center; gap: .9rem;
  padding: 1.1rem 1.35rem; border-radius: var(--r);
  background: rgba(22, 17, 15, .86); color: var(--cream);
  box-shadow: var(--sh-md);
}
.about__badge-no { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; color: var(--turmeric); }
.about__badge-txt { font-size: .76rem; line-height: 1.35; color: rgba(252, 250, 246, .74); }

/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */
.review {
  position: relative;
  background: #fff; border-radius: var(--r-lg); padding: 1.9rem 1.8rem;
  border: 1px solid rgba(33, 28, 25, .07); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review::before {
  content: '\201C';
  position: absolute; top: .35rem; right: 1.4rem;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--cream-3); pointer-events: none;
}
.review > * { position: relative; z-index: 1; }
.review__stars { color: var(--turmeric); font-size: .84rem; letter-spacing: 2px; margin-bottom: .9rem; }
.review__text {
  font-family: var(--font-display); font-size: 1.06rem; line-height: 1.6;
  color: var(--ink); flex: 1;
}
.review__who { display: flex; align-items: center; gap: .8rem; margin-top: 1.5rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--turmeric), var(--chilli));
  color: #fff; font-weight: 700; font-size: .95rem;
}
.review__name { display: block; font-weight: 700; font-size: .9rem; }
.review__meta { font-size: .76rem; color: var(--muted); }

/* ==========================================================================
   16. NEWSLETTER
   ========================================================================== */
.section--newsletter { padding-bottom: var(--pad-section); background: var(--cream); }
.newsletter {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: var(--r-xl); color: var(--cream);
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(200, 152, 40, .3), transparent 55%),
    radial-gradient(70% 110% at 90% 100%, rgba(224, 31, 38, .3), transparent 55%),
    var(--pepper);
  box-shadow: var(--sh-lg);
}
.newsletter__copy h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem); letter-spacing: .02em; line-height: 1.1;
  margin-bottom: .7rem;
}
.newsletter__copy p { color: rgba(252, 250, 246, .68); max-width: 42ch; }
.newsletter__form { display: grid; grid-template-columns: 1fr auto; gap: .7rem; }
.newsletter__field {
  display: flex; align-items: center; gap: .7rem;
  min-height: 54px; padding: 0 1.2rem; border-radius: var(--r-pill);
  background: rgba(252, 250, 246, .08);
  border: 1.5px solid rgba(252, 250, 246, .2); color: var(--gold-lt);
  transition: border-color var(--t-fast) var(--ease);
}
.newsletter__field:focus-within { border-color: var(--turmeric); }
.newsletter__field input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font: inherit; font-size: .95rem; color: var(--cream);
}
.newsletter__field input::placeholder { color: rgba(252, 250, 246, .42); }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer { background: var(--pepper); color: rgba(252, 250, 246, .72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); padding-bottom: 3rem;
}
.brand--footer .brand__mark { height: 62px; }
.brand--footer .brand__text strong { color: var(--cream); }
.brand--footer .brand__text em { color: var(--gold); }
.footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--gold-lt); margin: 1rem 0 .6rem; }
.footer__blurb { font-size: .88rem; max-width: 34ch; margin-bottom: 1.4rem; }
.footer__col h3 {
  font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1.15rem;
}
.footer__col ul { display: grid; gap: .7rem; }
.footer__col a, .footer__col span { font-size: .9rem; transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--turmeric); }
.footer__col--contact li { display: flex; gap: .75rem; align-items: flex-start; }
.footer__col--contact i { color: var(--gold); font-size: .82rem; padding-top: .3rem; flex: 0 0 auto; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .8rem; padding: 1.4rem 0; border-top: 1px solid var(--line-light);
  font-size: .8rem;
}
.footer__note { color: rgba(252, 250, 246, .4); }
.footer__note code { font-size: .78em; background: rgba(252, 250, 246, .08); padding: .1rem .35rem; border-radius: 5px; }

/* ==========================================================================
   18. CART DRAWER
   ========================================================================== */
.cart__progress { padding: 1rem 1.4rem .2rem; flex: 0 0 auto; }
.cart__progress p { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; }
.cart__progress p b { color: var(--curry); }
.cart__bar { display: block; height: 5px; border-radius: 99px; background: var(--cream-3); overflow: hidden; }
.cart__bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--turmeric), var(--curry)); transition: width var(--t) var(--ease); }

.cart__items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: grid; gap: .85rem; align-content: start; }
.cart-line {
  display: grid; grid-template-columns: 72px 1fr auto; gap: .85rem;
  padding: .7rem; border-radius: var(--r-sm); background: #fff;
  border: 1px solid rgba(33, 28, 25, .07);
  animation: lineIn .35s var(--ease-out) both;
}
@keyframes lineIn { from { opacity: 0; transform: translateX(18px); } }
.cart-line__img { width: 72px; height: 72px; border-radius: var(--r-xs); object-fit: cover; background: var(--cream-2); }
.cart-line__info { min-width: 0; }
.cart-line__name { font-weight: 700; font-size: .9rem; line-height: 1.3; }
.cart-line__size { font-size: .74rem; color: var(--muted); margin-bottom: .45rem; }
.cart-line__end { display: grid; justify-items: end; align-content: space-between; }
.cart-line__price { font-family: var(--font-display); font-size: 1rem; font-weight: 600; white-space: nowrap; }
.cart-line__remove {
  border: 0; background: transparent; color: var(--muted); cursor: pointer;
  font-size: .78rem; padding: .25rem; transition: color var(--t-fast) var(--ease);
}
.cart-line__remove:hover { color: var(--chilli); }

.cart__empty { flex: 1; display: none; place-content: center; text-align: center; padding: 2rem 1.5rem; }
.cart__empty i { font-size: 2rem; color: var(--cream-3); margin-bottom: 1rem; }
.cart__empty h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: .35rem; }
.cart__empty p { color: var(--muted); font-size: .88rem; margin-bottom: 1.4rem; }
.drawer--cart.is-empty .cart__empty { display: grid; }
.drawer--cart.is-empty .cart__items,
.drawer--cart.is-empty .cart__foot,
.drawer--cart.is-empty .cart__progress { display: none; }

.cart__foot { flex: 0 0 auto; padding: 1.2rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--cream-2); }
.cart__totals { display: grid; gap: .5rem; margin-bottom: 1.1rem; }
.cart__totals > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.cart__totals dt { font-size: .86rem; color: var(--muted); }
.cart__totals dd { margin: 0; font-weight: 600; font-size: .92rem; }
.cart__grand { padding-top: .6rem; border-top: 1px dashed var(--line); }
.cart__grand dt { font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; }
.cart__grand dd { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.cart__note { margin-top: .8rem; font-size: .72rem; color: var(--muted); text-align: center; }

/* ==========================================================================
   19. PRODUCT MODAL
   ========================================================================== */
.modal { display: grid; place-items: center; padding: 1rem; }
.modal__panel {
  position: relative; z-index: 2;
  width: min(980px, 100%); max-height: min(92svh, 900px);
  overflow-y: auto; border-radius: var(--r-xl);
  background: var(--cream); box-shadow: var(--sh-lg);
  opacity: 0; transform: translateY(24px) scale(.97);
  transition: opacity var(--t) var(--ease), transform .45s var(--ease-out);
}
.modal.is-open .modal__panel { opacity: 1; transform: translateY(0) scale(1); }
.modal__panel--wide { width: min(1080px, 100%); }
.modal__close {
  position: absolute; top: .8rem; right: .8rem; z-index: 5;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(6px);
  border-radius: 50%; box-shadow: var(--sh-xs);
}
.modal__close:hover { background: var(--pepper); color: var(--cream); }

.modal__inner { display: grid; grid-template-columns: .95fr 1.05fr; }
@media (min-width: 901px) {
  .modal__inner { align-items: start; }
  .pm__media { position: sticky; top: 0; min-height: 100%; }
}
.pm__media {
  position: relative; background: linear-gradient(160deg, var(--cream-2), var(--cream-3));
  display: grid; place-items: center; padding: 1.5rem;
  align-self: stretch;
}
.pm__media img {
  width: 100%; max-width: 420px; aspect-ratio: 1;
  object-fit: cover; border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}
.pm__badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  padding: .3rem .75rem; border-radius: var(--r-pill);
  background: var(--chilli); color: #fff;
  font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.pm__body { padding: clamp(1.5rem, 3vw, 2.4rem); }
.pm__category { font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.pm__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.3rem); line-height: 1.1; letter-spacing: -.02em;
  margin: .3rem 0 .6rem;
}
.pm__rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.pm__rating-text { font-size: .8rem; color: var(--muted); }
.pm__desc { color: var(--ink-soft); font-size: .95rem; }
.pm__tags { margin-top: .5rem; font-size: .82rem; color: var(--gold); font-weight: 600; letter-spacing: .02em; }
.pm__block { margin-top: 1.4rem; }
.pm__label { font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.pm__ingredients { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }
.pm__buy {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; margin: 1.5rem 0 1.2rem; padding: 1rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pm__price { display: flex; align-items: baseline; gap: .5rem; }
.pm__price span { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 600; color: var(--ink); }
.pm__price small { font-size: .78rem; color: var(--muted); }
.pm__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.pm__actions .btn { flex: 1 1 160px; }
.pm__details {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1rem; font-size: .82rem; font-weight: 700;
  color: var(--ink-soft); text-decoration: none;
  letter-spacing: .02em; transition: color var(--t-fast) var(--ease), gap var(--t-fast) var(--ease);
}
.pm__details:hover { color: var(--chilli); gap: .65rem; }
.wish-btn.is-active { background: var(--chilli); color: #fff; box-shadow: none; }
.pm__usp { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.3rem; }
.pm__usp li { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--muted); }
.pm__usp i { color: var(--curry); }

#pmSizes.size-row { gap: .45rem; }
#pmSizes .size-chip {
  min-width: 72px; padding: .45rem .7rem;
}
#pmSizes .size-chip small {
  display: block; margin-top: .15rem;
  font-family: var(--font-body); font-weight: 700;
}

/* ==========================================================================
   20. CHECKOUT MODAL
   ========================================================================== */
.checkout { display: grid; grid-template-columns: 1.25fr .75fr; }
.checkout__form { padding: clamp(1.5rem, 3vw, 2.4rem); }
.checkout__lede { color: var(--muted); font-size: .88rem; margin: .3rem 0 1.5rem; }
.checkout__summary {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--cream-2); border-left: 1px solid var(--line);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.checkout__summary h3 {
  font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.2rem;
}
.checkout__items { display: grid; gap: .8rem; margin-bottom: 1.4rem; max-height: 280px; overflow-y: auto; }
.co-line { display: grid; grid-template-columns: 48px 1fr auto; gap: .7rem; align-items: center; }
.co-line img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; background: #fff; }
.co-line strong { display: block; font-size: .84rem; font-weight: 600; line-height: 1.3; }
.co-line span { font-size: .74rem; color: var(--muted); }
.co-line b { font-size: .86rem; white-space: nowrap; }
.checkout__secure { margin-top: 1rem; font-size: .74rem; color: var(--muted); display: flex; gap: .45rem; align-items: center; }

.pay { margin: 1.2rem 0 1.5rem; }
.pay legend { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.pay__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.pay__opt { cursor: pointer; }
.pay__opt input { position: absolute; opacity: 0; pointer-events: none; }
.pay__opt span {
  display: flex; align-items: center; gap: .6rem; min-height: 52px;
  padding: .7rem 1rem; border-radius: var(--r-xs);
  border: 1.5px solid var(--line); background: #fff;
  font-size: .86rem; font-weight: 600;
  transition: all var(--t-fast) var(--ease);
}
.pay__opt span i { color: var(--muted); }
.pay__opt:hover span { border-color: var(--gold); }
.pay__opt input:checked + span { border-color: var(--pepper); background: var(--pepper); color: var(--cream); }
.pay__opt input:checked + span i { color: var(--turmeric); }
.pay__opt input:focus-visible + span { outline: 2px solid var(--turmeric); outline-offset: 2px; }
.pay__note { margin-top: .8rem; font-size: .76rem; color: var(--muted); display: flex; gap: .45rem; }

.order-success { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem; }
.order-success__tick {
  width: 78px; height: 78px; margin: 0 auto 1.5rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--curry); color: #fff; font-size: 1.9rem;
  animation: pop .55s var(--ease-out);
}
.order-success h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; margin-bottom: .5rem; }
.order-success p { color: var(--muted); }
.order-success__id { margin: 1.2rem 0 1.8rem; font-size: .9rem; }
.order-success__id strong { color: var(--ink); letter-spacing: .06em; }

/* ==========================================================================
   21. TOASTS + BACK TO TOP
   ========================================================================== */
.toast-stack {
  position: fixed; z-index: 300; right: 1.2rem; bottom: 1.2rem;
  display: grid; gap: .55rem; justify-items: end; pointer-events: none;
  max-width: calc(100% - 2.4rem);
}
.toast {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1.1rem; border-radius: var(--r-sm);
  background: var(--pepper); color: var(--cream);
  box-shadow: var(--sh-md); font-size: .86rem;
  animation: toastIn .4s var(--ease-out) both;
}
.toast.is-out { animation: toastOut .3s var(--ease) forwards; }
.toast i { color: var(--turmeric); }
.toast--ok i { color: #8fbf5a; }
.toast--warn i { color: #ffb46b; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(.96); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(20px); } }

.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 110;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: var(--pepper); color: var(--cream); cursor: pointer;
  box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--t) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--turmeric); color: var(--pepper); }
body.cart-open .to-top { opacity: 0; visibility: hidden; }

/* ==========================================================================
   22. REVEAL ANIMATIONS (progressively enhanced)
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.js .hero__title .line__in { transform: translateY(105%); }
.js .hero.is-ready .hero__title .line__in {
  transform: translateY(0);
  transition: transform .95s var(--ease-out);
}
.js .hero.is-ready .hero__title .line:nth-child(2) .line__in { transition-delay: .12s; }

/* ==========================================================================
   24. ANNOUNCEMENT BAR
   ========================================================================== */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 121;
  height: var(--announce-h);
  background: linear-gradient(90deg, var(--brown) 0%, var(--pepper-3) 50%, var(--brown) 100%);
  color: var(--cream);
  border-bottom: 1px solid rgba(252, 250, 246, .1);
  transition: transform var(--t) var(--ease);
}
.announce__inner {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  height: var(--announce-h);
}
.announce__list {
  position: relative; flex: 1 1 auto;
  height: var(--announce-h); overflow: hidden; text-align: center;
}
.announce__list li {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  font-size: .78rem; letter-spacing: .02em;
  color: rgba(252, 250, 246, .82);
  opacity: 0; transform: translateY(60%);
  /* visibility is switched at the end of the fade, so a transition that never
     finishes cannot leave two messages stacked on top of each other */
  visibility: hidden;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease),
              visibility 0s linear var(--t);
  pointer-events: none;
}
.announce__list li.is-active {
  opacity: 1; transform: translateY(0); visibility: visible;
  transition-delay: 0s; pointer-events: auto;
}
.announce__list i { color: var(--turmeric); font-size: .8rem; }
.announce__list b { color: var(--gold-lt); font-weight: 700; }

.announce__arrow {
  flex: 0 0 auto; width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%; background: transparent;
  color: rgba(252, 250, 246, .5); font-size: .62rem; cursor: pointer;
  transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.announce__arrow:hover { color: var(--cream); background: rgba(252, 250, 246, .1); }

/* The header parks below the bar, then takes its place once the page scrolls.
   `is-scrolled` is toggled on <body> by the same handler that sticks the header. */
.site-header { top: var(--announce-h); transition: top var(--t) var(--ease), background-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease); }
body.is-scrolled .announce { transform: translateY(-100%); }
body.is-scrolled .site-header { top: 0; }

/* Overlays own the screen while they are open */
body.is-locked .announce { transform: translateY(-100%); }
body.is-locked .site-header { top: 0; }

/* ==========================================================================
   25. HERO PHOTO FRAME (home)
   ========================================================================== */
.hero__frame {
  position: relative; margin: 0;
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 4.6; max-height: 74svh;
  /* A gold hairline plus a deep shadow — the photograph is dark and the hero
     behind it is darker, so the frame needs its own edge to read as a panel. */
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(200, 152, 40, .34);
}
.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03);
  filter: brightness(1.16) contrast(1.06) saturate(1.08);
  transition: transform 1.4s var(--ease-out);
}
.hero:hover .hero__photo { transform: scale(1.07); }
.hero__frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(190deg, transparent 55%, rgba(22, 17, 15, .45) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(200, 152, 40, .1), transparent 65%);
}
.hero__frame-tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .95rem; border-radius: var(--r-pill);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(252, 250, 246, .86);
}
.hero__frame-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--curry);
  box-shadow: 0 0 0 3px rgba(95, 122, 46, .3);
  animation: glowPulse 2.6s ease-in-out infinite;
}

.hero__chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem .95rem .6rem .6rem; border-radius: var(--r-pill);
  color: var(--cream); box-shadow: var(--sh-md);
  animation: floatY 6.5s ease-in-out infinite;
}
.hero__chip img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.hero__chip span { display: grid; font-size: .7rem; color: rgba(252, 250, 246, .66); line-height: 1.35; }
.hero__chip strong { font-size: .82rem; color: var(--cream); }
/* Chip A stays inside the frame (there is no room to overhang on the right,
   the hero clips overflow); chip B and the floating card break the edge. */
.hero__chip--a { top: 1.1rem; right: 1.1rem; animation-delay: -1.2s; }
.hero__chip--b { top: 44%; left: -1.75rem; animation-delay: -3.4s; }

.hero__visual .floating-card {
  left: auto; right: -1.25rem; bottom: 12%;
  animation-delay: -2.2s;
}

/* ==========================================================================
   26. PAGE HERO (shop / about / contact)
   ========================================================================== */
.page-hero {
  position: relative; isolation: isolate;
  display: flex; align-items: flex-end;
  min-height: clamp(320px, 46svh, 480px);
  padding: calc(var(--header-h) + var(--announce-h) + 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--pepper);
  color: var(--cream); overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}
/* Two scrims: one down the page for the header, one across for the copy —
   the photographs behind this vary a lot in brightness. */
.page-hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(22, 17, 15, .94) 0%, rgba(22, 17, 15, .86) 38%, rgba(22, 17, 15, .42) 78%, rgba(22, 17, 15, .3) 100%),
    linear-gradient(180deg, rgba(22, 17, 15, .7) 0%, rgba(22, 17, 15, .25) 45%, rgba(22, 17, 15, .8) 100%),
    radial-gradient(70% 100% at 88% 10%, rgba(200, 152, 40, .2), transparent 60%);
}
.page-hero__inner { position: relative; }
.page-hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 1.05; letter-spacing: -.025em;
  margin: .4rem 0 .9rem;
}
.page-hero__sub { max-width: 52ch; color: rgba(252, 250, 246, .76); }
.page-hero__marks {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 1.6rem;
  font-size: .8rem; color: rgba(252, 250, 246, .62);
}
.page-hero__marks li { display: inline-flex; align-items: center; gap: .5rem; }
.page-hero__marks i { color: var(--turmeric); }

.crumbs {
  display: flex; align-items: center; gap: .55rem;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(252, 250, 246, .5);
}
.crumbs a { transition: color var(--t-fast) var(--ease); }
.crumbs a:hover { color: var(--turmeric); }
.crumbs [aria-current] { color: var(--gold-lt); }

/* ==========================================================================
   27. GALLERY STRIP
   ========================================================================== */
/* Three across rather than six: the frames are large enough to read, and the
   grid sits inside the page container like every other section. */
.gallery {
  display: grid; gap: var(--sj-gap);
  grid-template-columns: repeat(3, 1fr);
}
.gallery__item {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 4 / 3;
  box-shadow: var(--sh-sm);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out), filter var(--t) var(--ease);
}
.gallery__item::after {
  content: '\f16d';                       /* Font Awesome instagram glyph */
  font-family: 'Font Awesome 6 Brands'; font-size: 1.5rem;
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--cream); background: rgba(22, 17, 15, .5);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* ==========================================================================
   28. PROMISE GRID (shop)
   ========================================================================== */
.promise-grid {
  display: grid; gap: var(--sj-gap);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.promise {
  background: #fff; border: 1px solid rgba(33, 28, 25, .08);
  border-radius: var(--r-lg); padding: 1.6rem;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.promise:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.promise__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 1rem;
  border-radius: 14px; background: var(--cream-2); color: var(--brown); font-size: 1.05rem;
}
.promise h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin-bottom: .35rem; }
.promise p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   29. PROCESS (about)
   ========================================================================== */
.process {
  display: grid;
  gap: var(--sj-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1100px) {
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}
.process__step {
  position: relative;
  background: #fff; border: 1px solid rgba(33, 28, 25, .08);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.process__step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.process__media { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-3); }
.process__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.process__step:hover .process__media img { transform: scale(1.07); }
.process__no {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--turmeric); color: var(--pepper);
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  box-shadow: var(--sh-sm);
}
.process__step h3 {
  font-family: var(--font-display); font-size: 1.14rem; font-weight: 600;
  margin: 0 1.4rem .4rem; padding-top: 1.3rem;
}
.process__step p { font-size: .86rem; color: var(--muted); line-height: 1.6; margin: 0 1.4rem 1.5rem; }

/* ==========================================================================
   30. TIMELINE (about)
   ========================================================================== */
.section--timeline {
  background:
    radial-gradient(80% 120% at 10% 0%, rgba(200, 152, 40, .16), transparent 55%),
    radial-gradient(70% 110% at 92% 100%, rgba(224, 31, 38, .18), transparent 55%),
    var(--pepper);
  color: var(--cream);
}
.timeline {
  display: grid; gap: var(--sj-gap);
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}
.timeline__item {
  position: relative; padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}
.timeline__item::before {
  content: ''; position: absolute; top: -6px; left: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--turmeric); box-shadow: 0 0 0 4px rgba(200, 152, 40, .18);
}
.timeline__year {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.65rem; color: var(--turmeric); line-height: 1; margin-bottom: .6rem;
}
.timeline__item h3 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: .35rem; }
.timeline__item p { font-size: .85rem; color: rgba(252, 250, 246, .6); line-height: 1.6; }

/* ==========================================================================
   31. CTA BAND
   ========================================================================== */
.cta-band {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--turmeric) 0%, var(--gold) 55%, var(--chilli) 130%);
  color: var(--pepper); box-shadow: var(--sh-lg);
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.15; margin-bottom: .5rem;
}
.cta-band p { color: rgba(22, 17, 15, .72); max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cta-band .btn--ghost { box-shadow: inset 0 0 0 1.5px rgba(22, 17, 15, .35); color: var(--pepper); }
.cta-band .btn--ghost:hover { background: var(--pepper); color: var(--cream); box-shadow: none; }

/* ==========================================================================
   32. CONTACT PAGE
   ========================================================================== */
.section--contact-cards {
  background: var(--cream);
  /* HTML: full top rhythm after page-hero, flush into the form section below */
  padding: var(--pad-section) 0 0;
}

.contact-cards {
  display: grid;
  gap: var(--sj-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(33, 28, 25, .08);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--sh-xs);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
a.contact-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--turmeric); }
.contact-card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 1rem;
  border-radius: 14px; background: var(--pepper); color: var(--turmeric); font-size: 1.05rem;
  transition: background-color var(--t-fast) var(--ease);
}
a.contact-card:hover .contact-card__icon { background: var(--turmeric); color: var(--pepper); }
.contact-card h3 {
  font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .45rem;
}
.contact-card p {
  font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); line-height: 1.45;
  margin: 0;
}
.contact-card__meta { display: block; margin-top: .5rem; font-size: .78rem; color: var(--muted); }

.contact__inner {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start;
}
.contact__form-wrap {
  background: #fff; border: 1px solid rgba(33, 28, 25, .08);
  border-radius: var(--r-xl); padding: clamp(1.5rem, 3.5vw, 2.6rem);
  box-shadow: var(--sh-sm);
}
.contact__form-wrap .section__title { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.contact__form-wrap .section__sub { margin: .7rem 0 1.8rem; }
.contact-form { display: grid; gap: 1rem; }
.contact-form .field-block span small { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }
.contact-form select {
  width: 100%; min-height: 50px; padding: 0 1rem;
  border-radius: var(--r-xs); border: 1.5px solid var(--line);
  background: var(--cream); font: inherit; font-size: .92rem; color: var(--ink);
  appearance: none; cursor: pointer;
}
.contact-form select:focus { outline: none; border-color: var(--turmeric); }
.contact-form__note {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--muted);
}
.contact-form__note i { color: var(--gold); }

.contact__aside { display: grid; gap: var(--sj-gap); }
.contact__map {
  margin: 0; overflow: hidden; border-radius: var(--r-lg);
  background: #fff; border: 1px solid rgba(33, 28, 25, .08); box-shadow: var(--sh-sm);
}
.contact__map iframe { display: block; width: 100%; height: clamp(240px, 34vw, 340px); border: 0; filter: saturate(.85); }
.contact__map figcaption { display: grid; gap: .3rem; padding: 1.15rem 1.3rem 1.35rem; }
.contact__map figcaption strong { font-family: var(--font-display); font-size: 1rem; }
.contact__map figcaption span { font-size: .84rem; color: var(--muted); }
.contact__map figcaption .link-btn { justify-self: flex-start; margin-top: .35rem; }

.hours {
  background: var(--pepper); color: rgba(252, 250, 246, .72);
  border-radius: var(--r-lg); padding: 1.6rem 1.7rem;
}
.hours h3 {
  display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1.1rem;
}
.hours h3 i { color: var(--turmeric); }
.hours dl { display: grid; gap: .65rem; }
.hours dl > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  font-size: .88rem; padding-bottom: .65rem; border-bottom: 1px dashed var(--line-light);
}
.hours dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.hours dd { color: var(--gold-lt); font-weight: 600; }
.social--contact { margin-top: 1.4rem; }

/* FAQ */
.faq { display: grid; gap: .75rem; max-width: 860px; }
.faq__item {
  background: #fff; border: 1px solid rgba(33, 28, 25, .08);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.faq__item[open] { box-shadow: var(--sh-sm); border-color: rgba(200, 152, 40, .5); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600;
  transition: color var(--t-fast) var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '\002B'; flex: 0 0 auto;
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: var(--cream-2); color: var(--brown);
  font-size: 1rem; line-height: 1;
  transition: transform var(--t) var(--ease), background-color var(--t-fast) var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--turmeric); }
.faq__item summary:hover { color: var(--chilli); }
.faq__body { padding: 0 1.4rem 1.35rem; }
.faq__body p { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; max-width: 68ch; }

/* An image with no usable source at all should not leave a broken icon */
.img-missing { opacity: 0; }

/* ==========================================================================
   23. RESPONSIVE
   ========================================================================== */

/* Large desktop polish */
@media (min-width: 1600px) {
  :root { --header-h: 86px; }
  .container { width: min(100% - 4rem, 1440px); }
  .hero__inner { width: min(100% - 4rem, 1440px); }
}

/* Small desktop / large tablet */
@media (max-width: 1120px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col--contact { grid-column: 2 / -1; }
  .newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .showcase__inner,
  .featured__inner,
  .contact__inner,
  .about__inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .showcase__visual { order: -1; }
  .featured__media { max-width: 460px; margin-inline: auto; }
  .about__media { max-width: 520px; margin-inline: auto; }
  .about__badge { left: 4%; }
  .modal__inner { grid-template-columns: 1fr; }
  .pm__media { padding: 1.5rem 1.5rem 0; }
  .pm__media img { max-width: 300px; }
  .checkout { grid-template-columns: 1fr; }
  .checkout__summary { border-left: 0; border-top: 1px solid var(--line); border-radius: 0 0 var(--r-xl) var(--r-xl); order: -1; }
  .checkout__items { max-height: 180px; }
}

/* Tablet */
@media (max-width: 900px) {
  .hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { order: -1; }
  .hero__frame { max-width: 520px; margin-inline: auto; aspect-ratio: 5 / 4; max-height: 42svh; }
  .hero__chip--a { right: 0; }
  .hero__chip--b { left: 0; }
  .floating-card { left: auto; right: 0; bottom: 2%; }
  .hero__visual .floating-card { left: auto; right: 0; }
  .hero__stats { gap: 1.5rem 2.2rem; margin-top: 2rem; padding-top: 1.4rem; }
  .counter-strip { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .section__head--split { align-items: flex-start; }
  .slider__head-nav { justify-items: flex-start; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col--contact { grid-column: auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; --announce-h: 36px; }
  .icon-btn--account { display: none; }
  .toolbar__row--filters { flex-direction: column; align-items: stretch; gap: .9rem; }
  .chip-row { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .35rem; scrollbar-width: none; }
  .chip-row::-webkit-scrollbar { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .field-block:has(#coPin) { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
  .cat-tiles, .product-grid { grid-template-columns: 1fr; }
  .cat-tile:first-child { grid-column: auto; }
  .cat-tile { min-height: 240px; }
  .cat-tile__body { min-height: 240px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .slider__arrows { display: none; }
  .slider__foot { justify-content: space-between; }
  .announce__arrow { display: none; }
  .announce__list li { font-size: .72rem; }
  .hero__chip { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pay__grid { grid-template-columns: 1fr; }
  .newsletter__form { grid-template-columns: 1fr; }
  .newsletter__form .btn { width: 100%; }
  .hero__cta { gap: .6rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__stats { gap: 1.2rem 1.8rem; }
  .hero__stats li { flex: 1 1 40%; }
  .floating-card { display: none; }
  .drawer__panel { width: 100%; }
  .modal { padding: 0; align-items: flex-end; }
  .modal__panel { max-height: 94svh; border-radius: var(--r-xl) var(--r-xl) 0 0; width: 100%; }
  .checkout__summary { border-radius: 0; }
  .pm__actions .btn { flex: 1 1 100%; }
  .pm__actions .wish-btn { flex: 0 0 auto; }
  .review { padding: 1.5rem 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .toast-stack { left: 1rem; right: 1rem; justify-items: stretch; }
  .to-top { right: 1rem; bottom: 5rem; }
  .cart-line { grid-template-columns: 58px 1fr auto; }
  .cart-line__img { width: 58px; height: 58px; }
}

/* Below this the wordmark and four action buttons stop fitting side by side.
   The logo is a complete lockup on its own, so the text is what gives way. */
@media (max-width: 560px) {
  .brand__text { display: none; }
  .brand__mark,
  .site-header .brand img,
  .site-header img.brand__mark {
    height: 52px !important;
    max-height: 52px !important;
    max-width: 60px !important;
  }
}

@media (max-width: 380px) {
  .header__actions { gap: 0; }
  .icon-btn { width: 40px; }
  .p-card__sizes .size-chip { padding: .25rem .5rem; font-size: .68rem; }
}

/* Landscape phones — keep the hero usable */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 2rem) 3rem; }
  .scroll-cue { display: none; }
}

/* ==========================================================================
   MOTION PREFERENCES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero__title .line__in { transform: none; }
  .marquee__track { animation: none; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .site-header, .drawer, .modal, .search-overlay, .to-top, .toast-stack,
  .scroll-cue, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}
