/* ==========================================================================
   Agni Exim — storefront stylesheet.

   Agni is fire. The palette is ember and brass on warm ivory, with a charcoal
   ground for the footer and the export-facing blocks. One committed light
   theme — no dark mode, because a trade catalogue is read in daylight and a
   half-built dark variant is worse than none.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  /* ink */
  --ink:        #20252a;
  --ink-soft:   #454d55;
  --muted:      #6d757d;
  --faint:      #98a0a8;

  /* ground */
  --paper:      #fbf7f1;
  --paper-2:    #f4ede1;
  --paper-3:    #ebe0cf;
  --white:      #fffdf9;
  --char:       #1e2328;
  --char-2:     #2a3036;

  /* brand */
  --ember:      #c1440e;
  --ember-dk:   #9a350a;
  --ember-lt:   #e0703c;
  --ember-wash: #fbeadf;
  --brass:      #b0782a;
  --gold:       #e8a13c;
  --gold-lt:    #f2cd93;
  --pine:       #3f6b4f;
  --pine-lt:    #6d9179;

  /* lines */
  --line:       rgba(32, 37, 42, 0.12);
  --line-2:     rgba(32, 37, 42, 0.20);
  --line-lt:    rgba(255, 253, 249, 0.16);

  /* status */
  --ok:         #3f6b4f;
  --warn:       #9a6a1c;
  --bad:        #a3341f;

  /* type */
  --sans:  "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;

  /* radii */
  --r-sm:   4px;
  --r:      8px;
  --r-lg:   14px;
  --r-xl:   22px;
  --r-pill: 999px;

  /* shadows */
  --sh-1: 0 1px 2px rgba(32,37,42,.05), 0 2px 8px rgba(32,37,42,.05);
  --sh-2: 0 4px 12px rgba(32,37,42,.07), 0 12px 30px rgba(32,37,42,.07);
  --sh-3: 0 10px 24px rgba(32,37,42,.09), 0 28px 62px rgba(32,37,42,.10);

  /* layout */
  --wrap: 1290px;
  --gut:  clamp(18px, 4vw, 44px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--ember); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--ember-dk); }
ul, ol { padding-left: 1.15em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--gold-lt); color: var(--ink); }
summary { cursor: pointer; }

.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 {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: 12px 20px; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; color: var(--white); }

/* --- 3. Typography ------------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.65rem, 3.3vw, 2.6rem); }
h3 { font-size: clamp(1.18rem, 1.9vw, 1.5rem); }
h4 { font-size: 1.06rem; font-family: var(--sans); font-weight: 700; letter-spacing: 0; }

p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ember);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; opacity: .55;
}
.eyebrow--light { color: var(--gold); }
.eyebrow--plain::before { display: none; }

.lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); max-width: 62ch; }
.small { font-size: .9rem; }
.tiny  { font-size: .8rem; line-height: 1.55; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.nowrap { white-space: nowrap; }

/* --- 4. Layout ---------------------------------------------------------- */
.wrap {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--gut);
}
.wrap--mid  { max-width: 1000px; }
.wrap--narrow { max-width: 760px; }

.section { padding-block: clamp(52px, 7vw, 104px); }
.section--tight { padding-block: clamp(34px, 4.5vw, 62px); }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--dark { background: var(--char); color: rgba(255,253,249,.78); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section-head { margin-bottom: clamp(28px, 3.4vw, 46px); max-width: 68ch; }
.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; max-width: none; flex-wrap: wrap;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.flex { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.flex-between { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }

/* --- 5. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .95em 1.5em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform .16s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.1em; height: 1.1em; stroke: currentColor; fill: none; stroke-width: 1.9; }

.btn--primary { background: var(--ember); color: var(--white); box-shadow: var(--sh-1); }
.btn--primary:hover { background: var(--ember-dk); color: var(--white); box-shadow: var(--sh-2); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--char-2); color: var(--white); }

.btn--brass { background: var(--brass); color: var(--white); }
.btn--brass:hover { background: #96651f; color: var(--white); }

.btn--outline { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(32,37,42,.04); }

.btn--outline-light { border-color: rgba(255,253,249,.42); color: var(--white); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,253,249,.1); color: var(--white); }

.btn--ghost { color: var(--ink); background: transparent; border-color: transparent; }
.btn--ghost:hover { background: rgba(32,37,42,.06); color: var(--ink); }

.btn--sm { font-size: .84rem; padding: .7em 1.1em; }
.btn--lg { font-size: 1rem; padding: 1.1em 1.9em; }
.btn--block { width: 100%; }
.btn[disabled], .btn--disabled { opacity: .5; pointer-events: none; }

/* --- 6. Badges, pills, notices ------------------------------------------ */
.badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .38em .7em; border-radius: var(--r-sm);
  background: var(--ink); color: var(--white);
}
.badge--new  { background: var(--pine); }
.badge--low  { background: var(--warn); }
.badge--out  { background: var(--muted); }
.badge--sale { background: var(--ember); }
.badge--best { background: var(--brass); }

.pill {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .78rem; font-weight: 600;
  padding: .4em .85em; border-radius: var(--r-pill);
  background: var(--paper-3); color: var(--ink-soft);
}
.pill svg { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; }

.notice {
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  padding: 1.1rem 1.3rem; border-radius: var(--r);
  font-size: .94rem;
}
.notice--warn { border-left-color: var(--warn); background: #fdf6e8; }
.notice--ember { border-left-color: var(--ember); background: var(--ember-wash); }

.flash-wrap { margin-top: 18px; }
.flash {
  padding: .95rem 1.2rem; border-radius: var(--r);
  font-size: .94rem; font-weight: 500;
  border: 1px solid var(--line); background: var(--white);
  border-left: 3px solid var(--ok);
  box-shadow: var(--sh-1);
}
.flash + .flash { margin-top: 10px; }
.flash--error { border-left-color: var(--bad); }
.flash--info  { border-left-color: var(--brass); }

.stock-line { font-size: .84rem; font-weight: 600; }
.stock-line.ok  { color: var(--ok); }
.stock-line.low { color: var(--warn); }
.stock-line.out { color: var(--muted); }

.price { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; color: var(--ink); }
.price--was { font-size: .92rem; color: var(--faint); text-decoration: line-through; margin-left: .45em; font-family: var(--sans); font-weight: 500; }

/* --- 7. Forms ----------------------------------------------------------- */
.field { display: block; margin-bottom: 1.1rem; }
.field > .label,
.label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--ink); margin-bottom: .38rem;
}
.label .opt { font-weight: 500; color: var(--faint); }

input[type=text], input[type=email], input[type=tel], input[type=search],
input[type=number], input[type=password], input[type=url], select, textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  padding: .78em .95em;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(193,68,14,.14);
}
textarea { min-height: 130px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d757d' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7em center; background-size: 1.1em;
  padding-right: 2.4em;
}
.field-hint { font-size: .8rem; color: var(--muted); margin-top: .4rem; }
.field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr 1fr; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; }
.check input { width: 18px; height: 18px; margin-top: .22rem; accent-color: var(--ember); flex: none; }

.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line-2); border-radius: var(--r-pill);
  background: var(--white); overflow: hidden;
}
.qty button {
  width: 40px; height: 44px; font-size: 1.1rem; color: var(--ink);
  transition: background-color .15s var(--ease);
}
.qty button:hover { background: var(--paper-2); }
.qty input {
  width: 54px; border: 0; text-align: center; padding: .5em 0;
  background: transparent; font-weight: 600;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input:focus { box-shadow: none; }

/* --- 8. Utility bar ----------------------------------------------------- */
.utility {
  background: var(--char); color: rgba(255,253,249,.68);
  font-size: .78rem;
}
.utility__in { display: flex; align-items: center; gap: 20px; min-height: 38px; flex-wrap: wrap; }
.utility__spacer { flex: 1; }
.utility__item {
  display: inline-flex; align-items: center; gap: .45em;
  color: inherit;
}
.utility__item:hover { color: var(--gold); }
.utility__item svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* --- 9. Announcement ---------------------------------------------------- */
.announce {
  background: var(--ember); color: var(--white);
  font-size: .84rem; font-weight: 500; text-align: center;
}
.announce .wrap { padding-block: .6rem; }

/* --- 10. Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex; align-items: center; gap: clamp(14px, 2.5vw, 34px);
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 44px; height: 44px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-size: 1.42rem; font-weight: 600; letter-spacing: -.01em; }
.brand__tag  { font-size: .66rem; letter-spacing: .19em; text-transform: uppercase; color: var(--muted); }

.searchbar {
  flex: 1 1 260px; max-width: 560px;
  display: flex; align-items: center; gap: .5rem;
  background: var(--paper-2); border: 1.5px solid transparent;
  border-radius: var(--r-pill); padding: .3rem .35rem .3rem 1rem;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.searchbar:focus-within { background: var(--white); border-color: var(--ember); }
.searchbar > svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; flex: none; }
.searchbar input {
  flex: 1; border: 0; background: transparent; padding: .5em 0; font-size: .92rem;
}
.searchbar input:focus { box-shadow: none; }
.searchbar input::-webkit-search-cancel-button { cursor: pointer; }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; flex: none; }
.hact {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .84rem; font-weight: 600; color: var(--ink);
  padding: .6rem .8rem; border-radius: var(--r);
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.hact:hover { background: var(--paper-2); color: var(--ember); }
.hact svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.hact--quote { color: var(--ember); }
.hact--cart { position: relative; }
.cart-pill {
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--r-pill); background: var(--ember); color: var(--white);
  font-size: .7rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }

/* --- 11. Nav bar + mega menu -------------------------------------------- */
.nav-bar { background: var(--white); border-top: 1px solid var(--line); }
.nav-bar__in { display: flex; align-items: center; gap: 2px; min-height: 50px; }
.nav-bar__spacer { flex: 1; }

.nav__link {
  display: inline-flex; align-items: center; gap: .3em;
  font-size: .9rem; font-weight: 600; color: var(--ink-soft);
  padding: .85rem .9rem; position: relative;
  transition: color .16s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ember); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: 6px;
  height: 2px; background: var(--ember); border-radius: 2px;
}
.nav__link .caret { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; transition: transform .2s var(--ease); }

.nav__ship {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .8rem; font-weight: 600; color: var(--pine);
}
.nav__ship svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.has-mega { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 95;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.has-mega:hover .nav__link .caret { transform: rotate(180deg); }
.mega__in {
  display: grid; grid-template-columns: 1fr 300px; gap: clamp(24px, 3vw, 48px);
  padding-block: 30px 34px;
}
.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 18px; }
.mega__item {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .7rem .8rem; border-radius: var(--r); color: var(--ink);
  transition: background-color .16s var(--ease);
}
.mega__item:hover { background: var(--paper-2); color: var(--ink); }
.mega__dot { width: 9px; height: 9px; border-radius: 50%; margin-top: .5rem; flex: none; }
.mega__item strong { display: block; font-size: .92rem; font-weight: 600; line-height: 1.3; }
.mega__item em { display: block; font-style: normal; font-size: .78rem; color: var(--muted); }
.mega__n { display: block; font-size: .72rem; color: var(--faint); margin-top: .1rem; }
.mega__aside {
  background: var(--paper-2); border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: .8rem; align-items: flex-start;
}
.mega__aside h4 { font-size: 1rem; }
.mega__aside p { font-size: .86rem; color: var(--muted); }
.mega__link { font-size: .85rem; font-weight: 600; }

/* --- 12. Mobile drawer -------------------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 120; }
.drawer[hidden] { display: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(30,35,40,.5); backdrop-filter: blur(2px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 88vw);
  background: var(--white); display: flex; flex-direction: column;
  box-shadow: var(--sh-3); overflow-y: auto;
  animation: drawerIn .24s var(--ease);
}
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: none; } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer__x { font-size: 1.9rem; line-height: 1; color: var(--muted); padding: 0 .3rem; }
.drawer__search { display: flex; gap: 8px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.drawer__nav { padding: 10px 12px; flex: 1; }
.drawer__nav > a, .drawer__group > summary {
  display: block; padding: .85rem 10px; font-size: .96rem; font-weight: 600;
  color: var(--ink); border-radius: var(--r);
}
.drawer__nav > a:hover, .drawer__group > summary:hover { background: var(--paper-2); }
.drawer__group > summary { list-style: none; display: flex; justify-content: space-between; align-items: center; }
.drawer__group > summary::after { content: "+"; color: var(--muted); font-size: 1.2rem; }
.drawer__group[open] > summary::after { content: "–"; }
.drawer__group > div { padding: 0 10px .6rem 20px; display: flex; flex-direction: column; }
.drawer__group a {
  display: flex; justify-content: space-between; gap: 10px;
  padding: .55rem 0; font-size: .88rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.drawer__group a span { color: var(--faint); font-size: .78rem; }
.drawer__foot {
  padding: 20px 22px; border-top: 1px solid var(--line); background: var(--paper-2);
  display: flex; flex-direction: column; gap: .3rem; font-size: .88rem;
}
.drawer__foot span { color: var(--muted); }

/* --- 13. Hero ----------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--char);
  color: rgba(255,253,249,.8);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(193,68,14,.32), transparent 62%),
    radial-gradient(80% 70% at 12% 96%, rgba(232,161,60,.16), transparent 60%);
}
.hero__rings { position: absolute; right: -8%; bottom: -34%; width: min(760px, 74vw); opacity: .22; pointer-events: none; }
.hero__rings circle { fill: none; stroke: var(--gold); stroke-width: 1.4; }
.hero__in {
  position: relative;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
  padding-block: clamp(52px, 7vw, 100px);
}
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero__lede { font-size: clamp(1rem, 1.35vw, 1.13rem); color: rgba(255,253,249,.74); max-width: 54ch; margin-top: 1.4rem; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2.1rem; }
.hero__note { margin-top: 1.5rem; font-size: .82rem; color: rgba(255,253,249,.5); }

.hero__panel {
  background: rgba(255,253,249,.055);
  border: 1px solid var(--line-lt);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.4vw, 30px);
  backdrop-filter: blur(3px);
}
.hero__panel h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .3rem; }
.hero__panel > p { font-size: .88rem; color: rgba(255,253,249,.6); margin-bottom: 1.3rem; }
.hero__lines { display: flex; flex-direction: column; gap: 2px; }
.hero__line {
  display: flex; align-items: center; gap: .8rem;
  padding: .72rem .3rem; border-top: 1px solid var(--line-lt);
  color: rgba(255,253,249,.82); font-size: .9rem;
}
.hero__line:hover { color: var(--gold); }
.hero__line .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.hero__line strong { font-weight: 600; }
.hero__line span { margin-left: auto; font-size: .78rem; color: rgba(255,253,249,.45); }

.stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-lt);
}
.stat { padding: clamp(20px, 2.4vw, 30px) clamp(12px, 2vw, 26px); }
.stat + .stat { border-left: 1px solid var(--line-lt); }
.stat__n { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--gold); line-height: 1; }
.stat__l { font-size: .82rem; color: rgba(255,253,249,.6); margin-top: .45rem; }

/* --- 14. Marquee strip -------------------------------------------------- */
.strip {
  background: var(--paper-3); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.strip__in {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  padding-block: 14px; flex-wrap: wrap; justify-content: center;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft);
}
.strip__item { display: inline-flex; align-items: center; gap: .5em; }
.strip__item svg { width: 16px; height: 16px; stroke: var(--ember); fill: none; stroke-width: 1.8; }

/* --- 15. Category cards ------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }

.cat-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); background: var(--white);
  border: 1px solid var(--line);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  color: var(--ink);
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-2); color: var(--ink); }
.cat-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-2); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.045); }
.cat-card__body { display: block; padding: 16px 18px 18px; }
.cat-card__body h3 { font-size: 1.1rem; margin-bottom: .15rem; }
.cat-card__origin { display: block; font-size: .78rem; color: var(--muted); }
.cat-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .8rem; padding-top: .7rem; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.cat-card__foot strong { color: var(--ember); font-weight: 600; }

/* wide variant used on the homepage lead row */
.cat-card--wide { grid-column: span 2; }
.cat-card--wide .cat-card__media { aspect-ratio: 16 / 7; }

/* --- 16. Product cards -------------------------------------------------- */
.p-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(14px, 1.8vw, 24px); }
.p-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.p-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.p-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-2); }

.p-card__media { position: relative; display: block; aspect-ratio: 1; background: var(--paper-2); overflow: hidden; }
.p-card__link { display: block; width: 100%; height: 100%; }
.p-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.p-card:hover .p-card__media img { transform: scale(1.05); }

.p-card__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }

.p-card__quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.p-card:hover .p-card__quick, .p-card:focus-within .p-card__quick { opacity: 1; transform: none; }
@media (hover: none) { .p-card__quick { opacity: 1; transform: none; } }

.p-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.p-card__cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ember); margin-bottom: .35rem;
}
.p-card__name {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 500; color: var(--ink);
  line-height: 1.3; display: block;
}
.p-card a:hover .p-card__name { color: var(--ember); }
.p-card__sub { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.p-card__foot {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-top: auto; padding-top: .85rem;
}
.p-card__moq {
  margin-top: .55rem; padding-top: .55rem; border-top: 1px dashed var(--line);
  font-size: .74rem; color: var(--faint);
}

/* horizontal scroller used for the bestseller rail */
.rail { position: relative; }
.rail__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(238px, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; scrollbar-width: thin;
}
.rail__track > * { scroll-snap-align: start; }
.rail__btns { display: flex; gap: 8px; }
.rail__btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line-2); display: grid; place-items: center;
  background: var(--white); transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.rail__btn:hover { border-color: var(--ink); background: var(--paper-2); }
.rail__btn svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 2; }

/* --- 17. Trust / USP ---------------------------------------------------- */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: clamp(18px, 2.4vw, 34px); }
.usp {
  border-top: 3px solid var(--ember);
  padding-top: 1.3rem;
}
.usp__n { font-family: var(--serif); font-size: .95rem; color: var(--brass); letter-spacing: .1em; }
.usp h3 { font-size: 1.22rem; margin: .35rem 0 .55rem; }
.usp p { font-size: .94rem; }

.assurance { display: grid; gap: .85rem; margin-top: 1.6rem; }
.assurance > div { display: flex; gap: .75rem; align-items: flex-start; font-size: .89rem; }
.assurance svg { width: 18px; height: 18px; stroke: var(--ok); fill: none; stroke-width: 2.6; flex: none; margin-top: .18rem; }
.assurance strong { color: var(--ink); }

/* --- 18. Shop layout ---------------------------------------------------- */
.shop { display: grid; grid-template-columns: 258px 1fr; gap: clamp(22px, 3vw, 44px); align-items: start; }

.filters {
  position: sticky; top: 150px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
}
.filters h3 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; }
.filter-group { margin-top: 1.4rem; }
.filter-group > strong {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .6rem;
}
.filter-list { list-style: none; padding: 0; margin: 0; max-height: 460px; overflow-y: auto; }
.filter-group--long .filter-list { max-height: 260px; }
.filter-list li + li { margin-top: 1px; }
.filter-list a {
  display: flex; justify-content: space-between; gap: 10px;
  padding: .42rem .55rem; border-radius: var(--r-sm);
  font-size: .87rem; color: var(--ink-soft);
}
.filter-list a:hover { background: var(--paper-2); color: var(--ink); }
.filter-list a.is-active { background: var(--ember-wash); color: var(--ember-dk); font-weight: 600; }
.filter-list .n { color: var(--faint); font-size: .78rem; }

.sortbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 1.4rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.sortbar__count { font-size: .88rem; color: var(--muted); }
.sortbar form { display: flex; align-items: center; gap: .6rem; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .8rem; font-weight: 600;
  padding: .4em .8em; border-radius: var(--r-pill);
  background: var(--ink); color: var(--white);
}
.chip:hover { background: var(--char-2); color: var(--white); }
.chip span { font-size: 1.05em; line-height: 1; opacity: .7; }

.pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: clamp(28px, 3.4vw, 48px); }
.pg {
  min-width: 42px; height: 42px; padding: 0 .8rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font-size: .88rem; font-weight: 600; color: var(--ink-soft); background: var(--white);
}
.pg:hover { border-color: var(--ink); color: var(--ink); }
.pg.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.pg--off, .pg--gap { opacity: .4; pointer-events: none; border-color: transparent; background: transparent; }

.crumbs {
  display: flex; gap: .5rem; align-items: center; flex-wrap: wrap;
  padding-block: 1.1rem; font-size: .82rem; color: var(--muted);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ember); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

.empty {
  text-align: center; padding: clamp(40px, 6vw, 80px) 20px;
  background: var(--white); border: 1px dashed var(--line-2); border-radius: var(--r-lg);
}
.empty h3 { margin-bottom: .5rem; }

/* --- 19. Product detail ------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 3.6vw, 60px); align-items: start; }

.gallery { position: sticky; top: 152px; }
.gallery__main {
  border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2);
  border: 1px solid var(--line);
}
.gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumb {
  width: 78px; height: 78px; border-radius: var(--r); overflow: hidden;
  border: 2px solid transparent; padding: 0; background: var(--paper-2);
  transition: border-color .16s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--ember); }

.art-note {
  margin-top: 1.1rem; padding: .95rem 1.1rem;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
  font-size: .82rem; color: var(--muted); line-height: 1.6;
}
.art-note strong { color: var(--ink-soft); }

.pdp__title { margin: .35rem 0 .4rem; }
.pdp__sub { font-size: .95rem; color: var(--muted); }
.pdp__price-row { display: flex; align-items: baseline; gap: .7rem; margin-top: 1.2rem; }
.pdp__price { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.15rem); font-weight: 600; color: var(--ink); }
.pdp__unit { font-size: .86rem; color: var(--muted); }
.pdp__meta-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: .6rem; }
.pdp__short { margin-top: 1.3rem; font-size: 1rem; }
.pdp__buy { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.7rem; }

.b2b-box {
  margin-top: 1.6rem; padding: 1.2rem 1.3rem;
  background: var(--char); color: rgba(255,253,249,.75);
  border-radius: var(--r-lg);
}
.b2b-box h4 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.b2b-box p { font-size: .87rem; }
.b2b-box dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; margin: .9rem 0 1.1rem; font-size: .85rem; }
.b2b-box dt { color: rgba(255,253,249,.5); }
.b2b-box dd { margin: 0; color: var(--white); }

.spec-table { margin-top: 1.8rem; font-size: .9rem; }
.spec-table th, .spec-table td { text-align: left; padding: .72rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-weight: 600; color: var(--muted); width: 38%; padding-right: 1rem; }
.spec-table td { color: var(--ink); }
.spec-table .hint { display: block; font-size: .76rem; color: var(--faint); font-weight: 400; }

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item > summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 0; font-weight: 600; color: var(--ink); font-size: .96rem;
}
.acc__item > summary::-webkit-details-marker { display: none; }
.acc__item > summary::after { content: "+"; font-size: 1.3rem; color: var(--muted); font-weight: 400; line-height: 1; }
.acc__item[open] > summary::after { content: "–"; }
.acc__body { padding-bottom: 1.2rem; font-size: .93rem; }
.acc__body p + p { margin-top: .8rem; }

.review { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.review__head { display: flex; gap: .8rem; align-items: baseline; flex-wrap: wrap; }
.review__name { font-weight: 600; color: var(--ink); }
.review__date { font-size: .8rem; color: var(--faint); }
.stars { color: var(--gold); letter-spacing: .1em; font-size: .95rem; }
.stars .off { color: var(--paper-3); }

.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 2px; }
.rating-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.rating-input label { font-size: 1.6rem; color: var(--paper-3); cursor: pointer; line-height: 1; transition: color .12s; }
.rating-input input:checked ~ label,
.rating-input label:hover, .rating-input label:hover ~ label { color: var(--gold); }

.summary {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(20px, 2.4vw, 28px);
}
.summary h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: .92rem; }
.summary__row + .summary__row { border-top: 1px solid var(--line); }
.summary__row--total { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); font-weight: 600; padding-top: .9rem; }


.photo-credit { margin-top: .6rem; font-size: .76rem; color: var(--faint); line-height: 1.55; }
.photo-credit a { color: var(--muted); }
.photo-credit a:hover { color: var(--ember); }

/* --- 20. Cart ----------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 370px; gap: clamp(24px, 3vw, 46px); align-items: start; }
.cart-list { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cart-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center;
  padding: 16px 18px;
}
.cart-row + .cart-row { border-top: 1px solid var(--line); }
.cart-row__img { width: 96px; height: 96px; border-radius: var(--r); object-fit: cover; background: var(--paper-2); }
.cart-row__name { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.cart-row__meta { font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.cart-row__actions { display: flex; align-items: center; gap: 14px; }
.cart-row__remove { font-size: .8rem; color: var(--muted); text-decoration: underline; }
.cart-row__remove:hover { color: var(--bad); }
.cart-row__line { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--ink); min-width: 88px; text-align: right; }

.freebar { margin-top: .9rem; }
.freebar__track { height: 6px; border-radius: 3px; background: var(--paper-3); overflow: hidden; }
.freebar__fill { height: 100%; background: var(--pine); border-radius: 3px; transition: width .3s var(--ease); }
.freebar__label { font-size: .8rem; color: var(--muted); margin-top: .45rem; }

/* --- 21. Checkout / forms pages ----------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.8vw, 34px);
}
.form-card + .form-card { margin-top: 20px; }
.form-card h3 { font-size: 1.15rem; margin-bottom: 1.2rem; }

.pay-choice { display: grid; gap: 10px; }
.pay-opt {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1rem 1.1rem; border: 1.5px solid var(--line-2); border-radius: var(--r);
  cursor: pointer; transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.pay-opt:hover { border-color: var(--ink); }
.pay-opt input { margin-top: .28rem; accent-color: var(--ember); width: 18px; height: 18px; flex: none; }
.pay-opt strong { display: block; font-size: .95rem; color: var(--ink); }
.pay-opt span { font-size: .84rem; color: var(--muted); }
.pay-opt:has(input:checked) { border-color: var(--ember); background: var(--ember-wash); }

.receipt { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.receipt__head { padding: clamp(22px, 3vw, 34px); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.receipt__code { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--ink); letter-spacing: .02em; }
.receipt__body { padding: clamp(22px, 3vw, 34px); }
.receipt table { font-size: .92rem; }
.receipt th, .receipt td { padding: .7rem 0; border-bottom: 1px solid var(--line); text-align: left; }
.receipt th { color: var(--muted); font-weight: 600; }
.receipt td:last-child, .receipt th:last-child { text-align: right; }

.steps { display: grid; gap: 1.4rem; counter-reset: step; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: start; }
.step__n {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ember); color: var(--white);
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
}
.step h4 { font-size: 1.02rem; margin-bottom: .25rem; }
.step p { font-size: .92rem; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(18px, 2.2vw, 26px);
}
.tile h4 { font-size: 1rem; margin-bottom: .4rem; }
.tile p { font-size: .89rem; }
.tile svg { width: 26px; height: 26px; stroke: var(--ember); fill: none; stroke-width: 1.7; margin-bottom: .9rem; }
.tile--dark { background: rgba(255,253,249,.05); border-color: var(--line-lt); color: rgba(255,253,249,.72); }
.tile--dark h4 { color: var(--white); }
.tile--dark svg { stroke: var(--gold); }

.moq-table { font-size: .9rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.moq-table th, .moq-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.moq-table thead th { background: var(--paper-2); font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.moq-table tbody tr:last-child td { border-bottom: 0; }
.moq-table td strong { color: var(--ink); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- 22. Editorial / prose ---------------------------------------------- */
.prose { font-size: 1.02rem; line-height: 1.75; max-width: 72ch; }
.prose h2 { margin: 2.4rem 0 .9rem; font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
.prose h3 { margin: 2rem 0 .7rem; font-size: clamp(1.15rem, 1.7vw, 1.35rem); }
.prose p + p { margin-top: 1.1rem; }
.prose ul, .prose ol { margin: 1.1rem 0; padding-left: 1.3rem; }
.prose li + li { margin-top: .45rem; }
.prose strong { color: var(--ink); }
.prose blockquote {
  margin: 1.6rem 0; padding: 1rem 1.4rem;
  border-left: 3px solid var(--brass); background: var(--paper-2);
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.post-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.post-card__media { aspect-ratio: 12 / 7; background: var(--paper-2); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.post-card h3 { font-size: 1.18rem; margin: .45rem 0 .55rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--ember); }
.post-card p { font-size: .9rem; }
.post-card__more { margin-top: auto; padding-top: 1rem; font-size: .85rem; font-weight: 600; }

/* --- 23. Contact -------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: clamp(24px, 3.2vw, 48px); align-items: start; }
.contact-list { display: grid; gap: 1.3rem; }
.contact-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; }
.contact-item svg { width: 22px; height: 22px; stroke: var(--ember); fill: none; stroke-width: 1.7; margin-top: .2rem; }
.contact-item h4 { font-size: .95rem; margin-bottom: .15rem; }
.contact-item p, .contact-item a { font-size: .92rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--ember); }

/* --- 24. Footer --------------------------------------------------------- */
.site-footer { background: var(--char); color: rgba(255,253,249,.62); margin-top: clamp(48px, 6vw, 90px); }

.footer-cta { background: var(--char-2); border-bottom: 1px solid var(--line-lt); }
.footer-cta__in {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(22px, 3vw, 48px);
  align-items: center; padding-block: clamp(36px, 4.6vw, 66px);
}
.footer-cta h2 { color: var(--white); }
.footer-cta p { margin-top: .9rem; font-size: .96rem; max-width: 58ch; }
.footer-cta__actions { display: flex; flex-direction: column; gap: 12px; }

.footer-top { padding-block: clamp(40px, 5vw, 70px) clamp(28px, 3vw, 44px); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: clamp(22px, 2.6vw, 40px);
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand:hover { color: var(--white); }
.footer-brand .brand__tag { color: rgba(255,253,249,.45); }
.footer-brand > p { margin-top: 1.1rem; font-size: .89rem; max-width: 36ch; }

.footer-contact { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: .65rem; }
.footer-contact li { display: grid; grid-template-columns: 18px 1fr; gap: .7rem; align-items: start; font-size: .86rem; }
.footer-contact svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.7; margin-top: .28rem; }
.footer-contact a { color: rgba(255,253,249,.75); }
.footer-contact a:hover { color: var(--gold); }

.socials { display: flex; gap: 8px; margin-top: 1.4rem; }
.social {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-lt); display: grid; place-items: center;
  transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.social svg { width: 17px; height: 17px; stroke: rgba(255,253,249,.75); fill: none; stroke-width: 1.7; }
.social:hover { background: var(--ember); border-color: var(--ember); }
.social:hover svg { stroke: var(--white); }

.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-col a { color: rgba(255,253,249,.62); font-size: .88rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col--news p { font-size: .86rem; margin-bottom: 1rem; }

.newsletter { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; background: rgba(255,253,249,.07); border-color: var(--line-lt); color: var(--white);
  border-radius: var(--r-pill); padding: .75em 1.1em;
}
.newsletter input::placeholder { color: rgba(255,253,249,.4); }
.newsletter input:focus { background: rgba(255,253,249,.12); border-color: var(--gold); box-shadow: none; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-block: 20px; border-top: 1px solid var(--line-lt);
  font-size: .8rem; color: rgba(255,253,249,.45);
}
.pay-icons { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-icons span {
  padding: .3em .7em; border: 1px solid var(--line-lt); border-radius: var(--r-sm);
  font-size: .72rem; color: rgba(255,253,249,.55);
}
.footer-admin { color: rgba(255,253,249,.4); }
.footer-admin:hover { color: var(--gold); }

/* --- 25. WhatsApp float ------------------------------------------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--pine); color: var(--white);
  padding: .85em 1.2em; border-radius: var(--r-pill);
  box-shadow: var(--sh-2); font-size: .88rem; font-weight: 600;
}
.wa-float:hover { background: #35583f; color: var(--white); }
.wa-float svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* --- 26. Responsive ----------------------------------------------------- */
@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col--news { grid-column: span 3; }
  .mega__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__panel { order: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-lt); }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-cta__in { grid-template-columns: 1fr; }
  .footer-cta__actions { flex-direction: row; flex-wrap: wrap; }
  .p-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-bar { display: none; }
  .burger { display: inline-flex; }
  .hact--hide-sm { display: none; }
  .shop { grid-template-columns: 1fr; }
  .filters { position: static; }
  .filter-list { max-height: 210px; }
  .cat-card--wide { grid-column: span 1; }
  .cat-card--wide .cat-card__media { display: block; aspect-ratio: 3 / 2; }
}

@media (max-width: 760px) {
  .header-bar { flex-wrap: wrap; min-height: 0; padding-block: 12px; gap: 10px; }
  .searchbar { order: 3; flex-basis: 100%; max-width: none; }
  .header-actions { margin-left: auto; }
  .utility__hide-sm { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-col--news { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-row__img { width: 72px; height: 72px; }
  .cart-row__line { grid-column: 2; text-align: left; }
  .cart-row__actions { grid-column: 2; }
  .footer-bottom { justify-content: flex-start; }
  .wa-float span { display: none; }
  .wa-float { padding: .9em; }
}

@media (max-width: 520px) {
  .p-grid, .p-grid--4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .p-card__body { padding: 12px; }
  .p-card__name { font-size: .94rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line-lt); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col--news { grid-column: span 1; }
  .gallery__thumb { width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* --- 27. Print ---------------------------------------------------------- */
@media print {
  .utility, .announce, .site-header, .site-footer, .wa-float, .drawer, .p-card__quick { display: none !important; }
  body { background: #fff; color: #000; }
  .receipt { border: 0; }
}
