/* ==========================================================================
   Yugo Bazar — Handmade Nepal
   Storefront stylesheet. Warm Himalayan palette: madder red, brass, pine,
   on undyed-paper cream. One committed look, no dark mode.
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  --ink:        #241c17;
  --ink-soft:   #4c4038;
  --muted:      #756758;
  --faint:      #9a8c7d;

  --paper:      #faf7f1;
  --paper-2:    #f3ece1;
  --paper-3:    #eae0d1;
  --white:      #fffdf9;

  --madder:     #9d3b28;
  --madder-dk:  #7d2d1e;
  --madder-lt:  #c96a52;
  --brass:      #b0863f;
  --brass-lt:   #d9bc85;
  --pine:       #3f5647;
  --pine-lt:    #6d8a76;

  --line:       rgba(36, 28, 23, 0.12);
  --line-2:     rgba(36, 28, 23, 0.20);

  --ok:         #3f6b4a;
  --warn:       #9a6a1c;
  --bad:        #9c3226;

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 16px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(36,28,23,.06), 0 2px 8px rgba(36,28,23,.05);
  --sh-2: 0 4px 12px rgba(36,28,23,.08), 0 12px 32px rgba(36,28,23,.07);
  --sh-3: 0 10px 24px rgba(36,28,23,.10), 0 28px 64px rgba(36,28,23,.10);

  --wrap: 1280px;
  --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(--madder); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--madder-dk); }
ul, ol { padding-left: 1.15em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--madder); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--brass-lt); color: var(--ink); }

/* --- 3. Typography ----------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.15rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.08rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--madder);
  display: block;
  margin-bottom: .85rem;
}
.eyebrow--brass { color: var(--brass); }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.tiny { font-size: .78rem; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }

/* --- 4. Layout --------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 780px; }
.wrap--mid { max-width: 1040px; }
.section { padding-block: clamp(48px, 7vw, 96px); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: rgba(255,253,249,.78); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .eyebrow { color: var(--brass-lt); }

.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.section-head p { margin-top: .7rem; }

.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.rule { height: 1px; background: var(--line); border: 0; margin-block: clamp(32px, 5vw, 64px); }

/* --- 5. Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.6em;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--madder); color: var(--white); box-shadow: var(--sh-1); }
.btn--primary:hover { background: var(--madder-dk); color: var(--white); box-shadow: var(--sh-2); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: #120d0a; color: var(--white); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--light:hover { background: var(--paper-2); color: var(--ink); }
.btn--brass { background: var(--brass); color: #fff; }
.btn--brass:hover { background: #96702f; color: #fff; }
.btn--sm { padding: .58em 1.1em; font-size: .82rem; }
.btn--lg { padding: 1.02em 2.1em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

.link-arrow { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .4em; }
.link-arrow span { transition: transform .2s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* --- 6. Announcement + header ----------------------------------------- */
.announce {
  background: var(--ink); color: rgba(255,253,249,.86);
  font-size: .8rem; letter-spacing: .02em;
}
.announce .wrap {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  min-height: 38px; text-align: center; flex-wrap: wrap;
}
.announce a { color: var(--brass-lt); text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,241,.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex; align-items: center; gap: clamp(12px, 2.5vw, 32px);
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand__mark {
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 50%;
  background: var(--madder);
  display: grid; place-items: center;
  color: var(--white); font-family: var(--serif); font-size: 1.24rem; line-height: 1;
  padding-bottom: 2px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif); font-size: 1.42rem; color: var(--ink); letter-spacing: -.02em;
}
.brand__tag { font-size: .63rem; letter-spacing: .19em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 20px); margin-left: auto; }
.nav__link {
  color: var(--ink); font-size: .92rem; font-weight: 500;
  padding: .5em .2em; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: .2em; right: .2em; bottom: .25em;
  height: 1.5px; background: var(--madder);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--madder); }

/* Mega menu */
.has-mega { position: relative; }
.has-mega > .nav__link::before {
  content: ''; display: inline-block; width: 5px; height: 5px; margin-right: .45em;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: min(900px, calc(100vw - 40px));
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-3); padding: 26px 28px;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease);
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .mega.is-open {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 26px; }
.mega__item { padding: .5rem .1rem; border-bottom: 1px solid transparent; }
.mega__item strong { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); }
.mega__item span { display: block; font-size: .76rem; color: var(--faint); }
.mega__item:hover strong { color: var(--madder); }
.mega__foot {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink); position: relative;
  transition: background .18s var(--ease);
}
.icon-btn:hover { background: var(--paper-3); color: var(--ink); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cart-count {
  position: absolute; top: 3px; right: 1px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--madder); color: #fff;
  border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 700; line-height: 18px; text-align: center;
}
.cart-count[data-count="0"] { display: none; }
.burger { display: none; }

/* Search drawer */
.search-drawer {
  border-top: 1px solid var(--line); background: var(--white);
  max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
}
.search-drawer.is-open { max-height: 200px; }
.search-drawer form { display: flex; gap: 10px; padding-block: 18px; }
.search-drawer input { flex: 1; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(400px, 88vw); z-index: 90;
  background: var(--paper); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.mobile-nav__body { padding: 12px 22px 40px; }
.mobile-nav a { display: block; padding: .72rem 0; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav details > summary {
  list-style: none; cursor: pointer; padding: .72rem 0; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-nav details > summary::after { content: '+'; font-size: 1.1rem; color: var(--muted); }
.mobile-nav details[open] > summary::after { content: '–'; }
.mobile-nav details a { padding-left: 14px; font-weight: 400; font-size: .92rem; color: var(--ink-soft); }
.scrim {
  position: fixed; inset: 0; z-index: 80; background: rgba(36,28,23,.42);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  backdrop-filter: blur(2px);
}
.scrim.is-open { opacity: 1; visibility: visible; }
body.is-locked { overflow: hidden; }

/* --- 7. Hero ---------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--paper-2) 0%, var(--paper) 46%, #f6ede2 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(36,28,23,.055) 1px, transparent 0);
  background-size: 22px 22px; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 5vw, 68px); align-items: center;
  padding-block: clamp(52px, 8vw, 112px);
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--madder); }
.hero__cta { display: flex; gap: 12px; margin-top: 2rem; flex-wrap: wrap; }
.hero__meta {
  display: flex; gap: clamp(18px, 3vw, 40px); margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hero__meta div strong {
  display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--ink); line-height: 1;
}
.hero__meta div span { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }

.hero__art { position: relative; }
.hero__art-main {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3);
  aspect-ratio: 4/5; background: var(--paper-3);
}
.hero__art-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__art-chip {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 18px; box-shadow: var(--sh-2); max-width: 235px;
}
.hero__art-chip strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.hero__art-chip span { font-size: .78rem; color: var(--muted); }

/* --- 8. Trust strip --------------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); background: var(--white); }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust__item {
  padding: clamp(22px, 3vw, 34px) clamp(14px, 2vw, 28px);
  display: flex; gap: 14px; align-items: flex-start;
  border-right: 1px solid var(--line);
}
.trust__item:last-child { border-right: 0; }
.trust__item svg { width: 26px; height: 26px; flex: 0 0 26px; stroke: var(--madder); fill: none; stroke-width: 1.5; margin-top: 2px; }
.trust__item strong { display: block; color: var(--ink); font-size: .95rem; font-weight: 600; }
.trust__item p { font-size: .84rem; color: var(--muted); line-height: 1.5; }

/* --- 9. Category tiles ------------------------------------------------ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: clamp(14px, 2vw, 24px); }
.cat-card {
  position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper-3); aspect-ratio: 3/4;
  box-shadow: var(--sh-1); transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cat-card:hover { box-shadow: var(--sh-3); transform: translateY(-4px); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card:hover img { transform: scale(1.05); }
.cat-card__body {
  position: absolute; inset: auto 0 0 0; padding: 18px 18px 16px; color: #fff;
  background: linear-gradient(to top, rgba(23,17,13,.88) 0%, rgba(23,17,13,.55) 45%, transparent 100%);
}
.cat-card__body strong { display: block; font-family: var(--serif); font-size: 1.14rem; letter-spacing: -.01em; }
.cat-card__body span { font-size: .76rem; opacity: .82; }

/* Bento variant for the homepage feature row */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: clamp(12px, 1.6vw, 18px); }
.bento > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento > *:nth-child(4) { grid-column: span 2; }
.bento .cat-card { aspect-ratio: auto; height: 100%; }

/* --- 10. Product card ------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.p-card { display: flex; flex-direction: column; position: relative; }
.p-card__media {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  background: var(--paper-3); aspect-ratio: 1;
  box-shadow: var(--sh-1); transition: box-shadow .3s var(--ease);
}
.p-card:hover .p-card__media { box-shadow: var(--sh-2); }
.p-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), opacity .3s; }
.p-card:hover .p-card__media img { transform: scale(1.045); }
.p-card__badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.p-card__quick {
  position: absolute; inset: auto 10px 10px; opacity: 0; transform: translateY(8px);
  transition: all .25s var(--ease);
}
.p-card:hover .p-card__quick, .p-card:focus-within .p-card__quick { opacity: 1; transform: none; }
.p-card__body { padding-top: 14px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.p-card__cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.p-card__name { font-family: var(--serif); font-size: 1.06rem; color: var(--ink); line-height: 1.25; }
.p-card:hover .p-card__name { color: var(--madder); }
.p-card__sub { font-size: .8rem; color: var(--muted); line-height: 1.45; }
.p-card__foot { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price { font-family: var(--serif); font-size: 1.14rem; color: var(--ink); font-weight: 500; }
.price--was { font-family: var(--sans); font-size: .85rem; color: var(--faint); text-decoration: line-through; }
.p-card--out .p-card__media img { opacity: .55; filter: saturate(.55); }

/* Badges */
.badge {
  display: inline-block; padding: .3em .62em; border-radius: var(--r-sm);
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: var(--ink); color: var(--white);
}
.badge--sale { background: var(--madder); }
.badge--low  { background: var(--warn); }
.badge--out  { background: var(--ink-soft); }
.badge--new  { background: var(--pine); }
.badge--soft { background: var(--paper-3); color: var(--ink-soft); }

.stock-line { font-size: .8rem; font-weight: 600; display: inline-flex; align-items: center; gap: .45em; }
.stock-line::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock-line.in { color: var(--ok); }
.stock-line.low { color: var(--warn); }
.stock-line.out { color: var(--bad); }

.stars { color: var(--brass); letter-spacing: .06em; font-size: .9rem; }
.stars span { color: var(--line-2); }
.stars span.on { color: var(--brass); }

/* --- 11. Shop layout (filters + results) ------------------------------ */
.shop { display: grid; grid-template-columns: 258px 1fr; gap: clamp(24px, 3.4vw, 48px); align-items: start; }
.filters {
  position: sticky; top: 96px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px;
}
.filters h3 { font-size: 1.02rem; margin-bottom: 4px; }
.filter-group { padding-block: 16px; border-bottom: 1px solid var(--line); }
.filter-group:last-of-type { border-bottom: 0; }
.filter-group > strong {
  display: block; font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .7rem;
}
.filter-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.filter-list a {
  display: flex; justify-content: space-between; gap: 8px;
  padding: .34rem .5rem; margin-inline: -.5rem; border-radius: var(--r-sm);
  font-size: .89rem; color: var(--ink-soft);
}
.filter-list a:hover { background: var(--paper-2); color: var(--ink); }
.filter-list a.is-active { background: var(--ink); color: var(--white); font-weight: 600; }
.filter-list a.is-active .n { color: rgba(255,255,255,.7); }
.filter-list .n { color: var(--faint); font-size: .8rem; }
.filter-price { display: flex; gap: 8px; align-items: center; }
.filter-price input { min-width: 0; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 22px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .34em .8em; border-radius: var(--r-pill);
  background: var(--paper-3); color: var(--ink); font-size: .8rem; font-weight: 500;
}
.chip:hover { background: var(--ink); color: var(--white); }
.chip b { font-weight: 700; }
.filters-toggle { display: none; }

/* --- 12. Forms -------------------------------------------------------- */
.field { display: block; margin-bottom: 16px; }
.field > label, .label {
  display: block; font-size: .8rem; font-weight: 600; color: var(--ink);
  margin-bottom: .4rem; letter-spacing: .01em;
}
.label .opt { font-weight: 400; color: var(--faint); }
input[type=text], input[type=email], input[type=tel], input[type=number],
input[type=password], input[type=search], input[type=url], input[type=date],
select, textarea {
  width: 100%; padding: .72em .9em;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--r);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  font-size: .94rem;
}
input:hover, select:hover, textarea:hover { border-color: var(--faint); }
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--madder); box-shadow: 0 0 0 3px rgba(157,59,40,.13);
}
textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23756758' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85em center; background-size: 11px;
  padding-right: 2.3em;
}
.field-hint { font-size: .78rem; color: var(--faint); margin-top: .35rem; }
.field-error { font-size: .8rem; color: var(--bad); margin-top: .35rem; font-weight: 500; }
input.has-error, textarea.has-error, select.has-error { border-color: var(--bad); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.check { display: flex; gap: .6em; align-items: flex-start; font-size: .89rem; cursor: pointer; }
.check input { width: auto; margin-top: .28em; accent-color: var(--madder); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; background: var(--white); }
.qty button { width: 38px; height: 42px; display: grid; place-items: center; font-size: 1.05rem; color: var(--ink); }
.qty button:hover { background: var(--paper-2); }
.qty input {
  width: 46px; height: 42px; text-align: center; border: 0; border-radius: 0;
  background: transparent; font-weight: 600; padding: 0;
  -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; }

/* --- 13. Flash + notices --------------------------------------------- */
.flash-stack { position: fixed; top: 88px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.flash {
  padding: .85rem 1.1rem; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--ok); box-shadow: var(--sh-2);
  font-size: .89rem; color: var(--ink);
  animation: flashIn .3s var(--ease);
}
.flash--warn { border-left-color: var(--warn); }
.flash--error { border-left-color: var(--bad); }
.flash--info { border-left-color: var(--brass); }
@keyframes flashIn { from { opacity: 0; transform: translateX(16px); } }

.notice {
  padding: 1rem 1.2rem; border-radius: var(--r); border: 1px solid var(--line);
  background: var(--white); border-left: 4px solid var(--brass); font-size: .92rem;
}
.notice--ok { border-left-color: var(--ok); }
.notice--bad { border-left-color: var(--bad); }

.empty-state { text-align: center; padding: clamp(48px, 8vw, 90px) 20px; }
.empty-state svg { width: 52px; height: 52px; stroke: var(--faint); fill: none; stroke-width: 1.3; margin: 0 auto 18px; }
.empty-state h3 { margin-bottom: .5rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.5rem; }

/* --- 14. Breadcrumbs + pagination ------------------------------------ */
.crumbs { font-size: .8rem; color: var(--muted); padding-block: 18px; display: flex; gap: .5em; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--madder); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 500; }

.pagination { display: flex; gap: 6px; justify-content: center; align-items: center; margin-top: clamp(32px, 5vw, 56px); flex-wrap: wrap; }
.pg {
  min-width: 40px; height: 40px; padding: 0 .8em;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--r);
  font-size: .88rem; font-weight: 500; color: var(--ink); 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 { opacity: .38; pointer-events: none; }
.pg--gap { border: 0; background: none; min-width: 20px; }

/* --- 15. Product detail ---------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4.5vw, 66px); align-items: start; }
.gallery { position: sticky; top: 96px; }
.gallery__main {
  border-radius: var(--r-lg); overflow: hidden; background: var(--paper-3);
  aspect-ratio: 1; box-shadow: var(--sh-2);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumb {
  width: 76px; height: 76px; border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid transparent; background: var(--paper-3); padding: 0; flex: 0 0 auto;
  transition: border-color .18s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--madder); }

.pdp__title { margin: .3rem 0 .5rem; }
.pdp__sub { font-size: 1.02rem; color: var(--muted); margin-bottom: 1.1rem; }
.pdp__price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: .5rem; }
.pdp__price { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.15rem); color: var(--ink); }
.pdp__meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 1.4rem; }
.pdp__buy {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  padding-block: 1.5rem; margin-block: 1.5rem;
  border-block: 1px solid var(--line);
}
.pdp__buy .btn { flex: 1 1 190px; }
.pdp__short { font-size: .98rem; line-height: 1.72; }

.spec-table { font-size: .9rem; margin-top: 1.5rem; }
.spec-table th, .spec-table td { text-align: left; padding: .62rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 40%; font-weight: 600; color: var(--muted); font-size: .82rem; letter-spacing: .03em; text-transform: uppercase; }
.spec-table td { color: var(--ink); }

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 0;
  font-family: var(--serif); font-size: 1.06rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary::after {
  content: ''; width: 9px; height: 9px; flex: 0 0 9px;
  border-right: 1.6px solid var(--muted); border-bottom: 1.6px solid var(--muted);
  transform: rotate(45deg) translateY(-2px); transition: transform .22s var(--ease);
}
.acc__item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.acc__body { padding-bottom: 1.2rem; font-size: .93rem; line-height: 1.72; color: var(--ink-soft); }
.acc__body > * + * { margin-top: .8rem; }

.assurance { display: grid; gap: 10px; margin-top: 1.5rem; }
.assurance div { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); }
.assurance svg { width: 17px; height: 17px; flex: 0 0 17px; stroke: var(--pine); fill: none; stroke-width: 1.8; margin-top: 3px; }

/* Reviews */
.review { padding-block: 1.3rem; border-bottom: 1px solid var(--line); }
.review__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: .5rem; }
.review__head strong { color: var(--ink); font-size: .95rem; }
.review__head time { font-size: .78rem; color: var(--faint); }
.review p { font-size: .93rem; line-height: 1.7; }
.rating-input { display: flex; gap: 4px; }
.rating-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating-input label { font-size: 1.5rem; color: var(--line-2); cursor: pointer; line-height: 1; transition: color .15s; }
.rating-input:hover label { color: var(--brass); }
.rating-input label:hover ~ label { color: var(--line-2); }
.rating-input input:checked ~ label { color: var(--line-2); }
.rating-input input:checked + label { color: var(--brass); }

/* --- 16. Cart + checkout --------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1.55fr .95fr; gap: clamp(26px, 3.6vw, 52px); align-items: start; }
.cart-line {
  display: grid; grid-template-columns: 104px 1fr auto; gap: 18px;
  padding-block: 22px; border-bottom: 1px solid var(--line); align-items: start;
}
.cart-line__media { border-radius: var(--r); overflow: hidden; background: var(--paper-3); aspect-ratio: 1; }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-family: var(--serif); font-size: 1.06rem; color: var(--ink); display: block; }
.cart-line__meta { font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.cart-line__controls { display: flex; align-items: center; gap: 14px; margin-top: .8rem; flex-wrap: wrap; }
.cart-line__right { text-align: right; }
.text-btn { font-size: .82rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.text-btn:hover { color: var(--bad); }

.summary {
  position: sticky; top: 96px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
}
.summary h3 { font-size: 1.2rem; margin-bottom: 1.1rem; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding-block: .5rem; font-size: .92rem; }
.summary__row span:last-child { font-weight: 600; color: var(--ink); }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-top: .8rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.summary__total strong { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 500; }
.summary__mini { display: flex; gap: 10px; padding-block: .6rem; font-size: .86rem; align-items: center; }
.summary__mini img, .summary__mini .ph { width: 42px; height: 42px; border-radius: var(--r-sm); object-fit: cover; background: var(--paper-3); flex: 0 0 42px; }

.pay-options { display: grid; gap: 10px; }
.pay-option {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  padding: .9rem 1rem; border: 1px solid var(--line-2); border-radius: var(--r); background: var(--white);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.pay-option:hover { border-color: var(--faint); }
.pay-option input { width: auto; margin-top: .25em; accent-color: var(--madder); }
.pay-option:has(input:checked) { border-color: var(--madder); background: #fdf6f3; box-shadow: 0 0 0 1px var(--madder) inset; }
.pay-option strong { display: block; font-size: .94rem; color: var(--ink); }
.pay-option span { font-size: .8rem; color: var(--muted); }

.steps { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: .82rem; color: var(--faint); margin-bottom: 8px; }
.steps b { color: var(--ink); }
.steps i { font-style: normal; opacity: .5; }

/* Order confirmation */
.receipt { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.receipt__head { padding: clamp(24px, 3.5vw, 40px); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.receipt__body { padding: clamp(20px, 3vw, 34px); }
.receipt__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.receipt__grid strong { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.tick {
  width: 56px; height: 56px; border-radius: 50%; background: var(--ok); color: #fff;
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.tick svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2.4; }

.status-pill {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .32em .8em; border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: var(--paper-3); color: var(--ink-soft);
}
.status-pill.pending   { background: #fdf1dc; color: #8a5c12; }
.status-pill.confirmed { background: #e2ecfb; color: #2a4c7d; }
.status-pill.packed    { background: #ece4f8; color: #543b7d; }
.status-pill.shipped   { background: #dcefe3; color: #2e6640; }
.status-pill.delivered { background: #d6ead9; color: #24572f; }
.status-pill.cancelled { background: #f8e2df; color: #8a2c20; }
.status-pill.paid      { background: #d6ead9; color: #24572f; }
.status-pill.unpaid    { background: #fdf1dc; color: #8a5c12; }
.status-pill.refunded  { background: #eee; color: #555; }

/* --- 17. Editorial / blog ------------------------------------------- */
.post-card { display: flex; flex-direction: column; }
.post-card__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; background: var(--paper-3); box-shadow: var(--sh-1); }
.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-top: 15px; }
.post-card__topic { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--madder); font-weight: 600; }
.post-card h3 { font-size: 1.16rem; margin: .4rem 0 .45rem; line-height: 1.28; }
.post-card:hover h3 { color: var(--madder); }
.post-card p { font-size: .87rem; color: var(--muted); line-height: 1.6; }
.post-card time { font-size: .76rem; color: var(--faint); display: block; margin-top: .6rem; }

.article { max-width: 720px; margin-inline: auto; }
.article__hero { border-radius: var(--r-lg); overflow: hidden; margin-bottom: clamp(28px, 4vw, 48px); box-shadow: var(--sh-2); }
.prose { font-size: 1.05rem; line-height: 1.78; color: var(--ink-soft); }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.42rem, 2.6vw, 1.85rem); margin-top: 2.1em; }
.prose h3 { font-size: clamp(1.14rem, 2vw, 1.32rem); margin-top: 1.7em; }
.prose ul, .prose ol { padding-left: 1.35em; }
.prose li + li { margin-top: .45em; }
.prose blockquote {
  border-left: 3px solid var(--madder); padding: .3em 0 .3em 1.3em;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-style: italic;
}
.prose img { border-radius: var(--r); margin-block: 1.8em; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose table { font-size: .93rem; margin-block: 1.6em; }
.prose th, .prose td { padding: .65rem .8rem; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--paper-2); font-weight: 600; color: var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin-block: 2.2em; }
.prose figure { margin: 0; }
.prose figcaption { font-size: .82rem; color: var(--faint); text-align: center; margin-top: .6em; }

.share { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.share a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-soft);
}
.share a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.share svg { width: 16px; height: 16px; fill: currentColor; }

/* --- 18. Story / about ---------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4.5vw, 68px); align-items: center; }
.split--rev > *:first-child { order: 2; }
.split__art { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4/3; background: var(--paper-3); }
.split__art img { width: 100%; height: 100%; object-fit: cover; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 32px); }
.pillar__num { font-family: var(--serif); font-size: 2.1rem; color: var(--brass-lt); line-height: 1; display: block; margin-bottom: .7rem; }
.pillar h3 { font-size: 1.16rem; margin-bottom: .55rem; }
.pillar p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat-band div { background: var(--white); padding: clamp(22px, 3vw, 34px) 20px; text-align: center; }
.stat-band strong { display: block; font-family: var(--serif); font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--madder); line-height: 1; }
.stat-band span { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }

/* --- 19. CTA band + newsletter -------------------------------------- */
.cta-band {
  background: var(--ink); color: rgba(255,253,249,.8);
  border-radius: var(--r-lg); padding: clamp(32px, 5vw, 64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(176,134,63,.28), transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: .8rem; }
.cta-band p { max-width: 54ch; margin-inline: auto; }
.cta-band .btn { margin-top: 1.8rem; }

.newsletter-form { display: flex; gap: 10px; max-width: 460px; }
.newsletter-form input { flex: 1; min-width: 0; }
.section--ink .newsletter-form input {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); color: #fff;
}
.section--ink .newsletter-form input::placeholder { color: rgba(255,255,255,.45); }

/* --- 20. Footer ----------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,253,249,.68); font-size: .89rem; margin-top: clamp(40px, 6vw, 80px); }
.site-footer a { color: rgba(255,253,249,.68); }
.site-footer a:hover { color: var(--brass-lt); }
.footer-top { padding-block: clamp(40px, 6vw, 72px); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(26px, 3.5vw, 52px); }
.footer-grid h4 {
  color: var(--white); font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-brand .brand__mark { background: var(--brass); }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__tag { color: rgba(255,255,255,.5); }
.footer-brand p { margin-top: 1.1rem; max-width: 34ch; line-height: 1.65; }
.socials { display: flex; gap: 10px; margin-top: 1.4rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
}
.socials a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  padding-block: 22px; display: flex; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; align-items: center; font-size: .82rem;
}
.pay-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-icons span {
  padding: .28em .6em; border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-sm);
  font-size: .68rem; letter-spacing: .04em; color: rgba(255,255,255,.6);
}

/* --- 20b. Photo credits ---------------------------------------------- */
.photo-credit {
  font-size: .7rem; color: var(--faint); margin-top: .6rem; line-height: 1.5;
}
.photo-credit a { color: var(--faint); text-decoration: underline; text-underline-offset: 2px; }
.photo-credit a:hover { color: var(--madder); }
.gallery .photo-credit { margin-top: .8rem; }
.stock-note {
  margin-top: 1.2rem; padding: .8rem 1rem;
  border: 1px dashed var(--line-2); border-radius: var(--r);
  font-size: .8rem; color: var(--muted); line-height: 1.6; background: var(--paper-2);
}
.stock-note strong { color: var(--ink); }

/* --- 21. Misc ------------------------------------------------------- */
.page-head { padding-block: clamp(34px, 5vw, 62px); background: var(--paper-2); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-bottom: .6rem; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.tabs a {
  padding: .7rem 1.1rem; font-size: .9rem; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs a.is-active { color: var(--ink); border-bottom-color: var(--madder); }
.tabs a:hover { color: var(--ink); }
.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;
}
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1.2rem; } .mb-3 { margin-bottom: 2rem; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.flex-between { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.stack > * + * { margin-top: 1rem; }

/* --- 22. Responsive ------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento > *:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento > *:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: grid; }
  .shop { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.is-open { display: block; }
  .filters-toggle { display: inline-flex; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .pillars, .g-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev > *:first-child { order: 0; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust__item:last-child { border-bottom: 0; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  h1 { font-size: clamp(1.95rem, 8vw, 2.6rem); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .p-card__name { font-size: .95rem; }
  .p-card__quick { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 78px 1fr; }
  .cart-line__right { grid-column: 2; text-align: left; }
  .flash-stack { left: 14px; right: 14px; max-width: none; top: 76px; }
  .hero__art-chip { position: static; margin-top: 14px; max-width: none; }
  .g-2, .g-4 { grid-template-columns: 1fr; }
  .receipt__grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
}
@media print {
  .site-header, .site-footer, .announce, .flash-stack, .btn { display: none !important; }
  body { background: #fff; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
