/* ==========================================================================
   Furnishly — design system
   Warm, spacious, image-first. Mobile-first with progressive enhancement.
   ========================================================================== */

:root {
  /* Surfaces — warm paper neutrals */
  --bg:          #FBF9F6;
  --bg-alt:      #F4EFE8;
  --surface:     #FFFFFF;
  --surface-2:   #F1EBE3;
  --surface-3:   #E8E0D5;
  --ink-surface: #23211E;

  /* Type */
  --ink:      #1A1917;
  --ink-2:    #4E4842;
  --muted:    #857D74;
  --on-dark:  #F6F2EC;

  /* Lines */
  --line:      #E4DCD1;
  --line-2:    #D3C8B9;

  /* Brand accents */
  --accent:       #9C5F39;
  --accent-hover: #82492A;
  --accent-soft:  #F2E7DC;
  --forest:       #33453A;
  --sale:         #A33B2A;
  --success:      #3B6B4E;
  --star:         #A8813F;

  /* Radii — small, architectural */
  --r-sm: 2px;
  --r:    3px;
  --r-lg: 6px;
  --r-pill: 999px;

  /* Elevation — very soft, warm-tinted */
  --shadow-sm: 0 1px 2px rgba(38, 30, 22, .05);
  --shadow:    0 6px 24px -10px rgba(38, 30, 22, .18);
  --shadow-lg: 0 24px 60px -24px rgba(38, 30, 22, .30);

  /* Rhythm */
  --gutter: 20px;
  --maxw:   1480px;
  --section: clamp(56px, 8vw, 116px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur:  .45s;

  /* Fonts */
  --font-display: "Fraunces", "Canela", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h: 76px;
}

@media (min-width: 900px) {
  :root { --gutter: 40px; --header-h: 92px; }
}
@media (min-width: 1400px) {
  :root { --gutter: 56px; }
}

/* ------------------------------------------------------------------ reset */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
svg { display: block; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -.015em; line-height: 1.12; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

::selection { background: var(--accent-soft); color: var(--ink); }

/* --------------------------------------------------------------- typography */

.display-1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6.4vw, 5.1rem); font-weight: 300; line-height: 1.03; letter-spacing: -.028em; }
.display-2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 300; letter-spacing: -.022em; }
.display-3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 300; letter-spacing: -.018em; }
.display-4 { font-family: var(--font-display); font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 400; letter-spacing: -.012em; }

.eyebrow {
  font-size: .688rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow--accent { color: var(--accent); }

.lede { font-size: clamp(1rem, 1.35vw, 1.125rem); color: var(--ink-2); line-height: 1.72; max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .8125rem; }
.tiny  { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; }

.link-underline {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .25s var(--ease);
}
.link-underline:hover { opacity: .6; }

/* ------------------------------------------------------------------ layout */

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 940px; }
.wrap--reading { max-width: 720px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(40px, 5vw, 68px); }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink-surface); color: var(--on-dark); }
.section--ink .muted, .section--ink .eyebrow { color: rgba(246,242,236,.6); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 52px);
}
.section-head p { margin: 10px 0 0; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.stack > * + * { margin-top: 14px; }
.row { display: flex; align-items: center; gap: 12px; }
.row--wrap { flex-wrap: wrap; }
.spacer { flex: 1; }

/* ----------------------------------------------------------------- buttons */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--on-dark);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  min-height: 50px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .18s var(--ease), opacity .2s;
}
.btn:hover { --btn-bg: #33302B; --btn-bd: #33302B; }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

.btn--accent  { --btn-bg: var(--accent); --btn-bd: var(--accent); }
.btn--accent:hover { --btn-bg: var(--accent-hover); --btn-bd: var(--accent-hover); }
.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--on-dark); --btn-bd: var(--ink); }
.btn--light   { --btn-bg: var(--surface); --btn-fg: var(--ink); --btn-bd: var(--surface); }
.btn--light:hover { --btn-bg: var(--bg-alt); --btn-bd: var(--bg-alt); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--on-dark); --btn-bd: rgba(246,242,236,.45); }
.btn--outline-light:hover { --btn-bg: var(--on-dark); --btn-fg: var(--ink); --btn-bd: var(--on-dark); }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: 11px 20px; font-size: .75rem; }
.btn--lg { min-height: 58px; padding: 18px 40px; }

/* --------------------------------------------------------------- form bits */

.field { display: block; margin-bottom: 18px; }
.field > span,
.label {
  display: block;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.input, .select, .textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: #A9A199; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(156, 95, 57, .12);
}
.input[aria-invalid="true"], .select[aria-invalid="true"] { border-color: var(--sale); }
.textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%234E4842' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field-row { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row--2 { grid-template-columns: 1fr 1fr; } .field-row--3 { grid-template-columns: 2fr 1fr 1fr; } }
.field-error { display: block; color: var(--sale); font-size: .75rem; margin-top: 6px; }

.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .875rem; color: var(--ink-2); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }

/* ------------------------------------------------------------------ badges */

.badge {
  display: inline-block;
  padding: 5px 11px;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-pill);
  line-height: 1.4;
}
.badge--light { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.badge--accent { background: var(--accent); color: #fff; }
.badge--sale { background: var(--sale); color: #fff; }
.badge--soft { background: var(--accent-soft); color: var(--accent); }
.badge--outline { background: transparent; border: 1px solid var(--line-2); color: var(--ink-2); }

/* ------------------------------------------------------------------- stars */

.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.star {
  position: relative;
  width: 13px; height: 13px;
  background: var(--line-2);
  -webkit-mask: var(--star-mask) center/contain no-repeat;
  mask: var(--star-mask) center/contain no-repeat;
  --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.6l3.1 6.7 7.3.9-5.4 5 1.4 7.2L12 17.9 5.6 21.4 7 14.2 1.6 9.2l7.3-.9z'/%3E%3C/svg%3E");
}
.star__fill { position: absolute; inset: 0; background: var(--star); }
.stars--md .star { width: 16px; height: 16px; }
.stars--lg .star { width: 21px; height: 21px; }

.rating-inline { display: inline-flex; align-items: center; gap: 8px; font-size: .8125rem; color: var(--muted); }

/* ------------------------------------------------------------------ header */

.promo-bar {
  background: var(--ink-surface);
  color: var(--on-dark);
  text-align: center;
  font-size: .75rem;
  letter-spacing: .08em;
  padding: 10px var(--gutter);
  position: relative;
  z-index: 60;
}
.promo-bar a { border-bottom: 1px solid rgba(246,242,236,.45); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 246, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
}
.brand span { color: var(--accent); }

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: 34px; margin-left: 22px; }
}
.nav a {
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: background .25s;
}
.icon-btn:hover { background: var(--surface-2); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn__count {
  position: absolute;
  top: 5px; right: 4px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: .625rem;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
}
.icon-btn__count:empty, .icon-btn__count[data-count="0"] { display: none; }

.menu-toggle { display: inline-flex; }
@media (min-width: 1000px) { .menu-toggle { display: none; } }

/* header search */
.header-search { position: relative; display: none; margin-left: auto; width: min(320px, 26vw); }
@media (min-width: 1180px) { .header-search { display: block; } }
.header-search .input {
  min-height: 42px;
  padding: 10px 14px 10px 40px;
  background: var(--surface-2);
  border-color: transparent;
  border-radius: var(--r-pill);
  font-size: .875rem;
}
.header-search .input:focus { background: var(--surface); border-color: var(--line-2); }
.header-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 1.5;
  pointer-events: none;
}
@media (min-width: 1180px) { .header-actions { margin-left: 12px; } }

/* mobile drawer nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .48s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__head { display: flex; align-items: center; min-height: var(--header-h); padding-inline: var(--gutter); border-bottom: 1px solid var(--line); }
.mobile-nav__body { padding: 28px var(--gutter) 48px; }
.mobile-nav__body a.mn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.75rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__body a.mn-link span { font-family: var(--font-body); font-size: .75rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.mobile-nav__sub { margin-top: 30px; display: grid; gap: 4px; }
.mobile-nav__sub a { font-size: .875rem; color: var(--ink-2); padding: 8px 0; }

/* ------------------------------------------------------------------- media */

.media { position: relative; overflow: hidden; background: var(--surface-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--4x5  { aspect-ratio: 4 / 5; }
.media--3x4  { aspect-ratio: 3 / 4; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--3x2  { aspect-ratio: 3 / 2; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--21x9 { aspect-ratio: 21 / 9; }
.media--tall { aspect-ratio: 2 / 3; }

.media--zoom img { transition: transform 1.1s var(--ease); will-change: transform; }
.media--zoom:hover img, a:hover .media--zoom img { transform: scale(1.05); }

/* ---------------------------------------------------------------- hero */

.hero { position: relative; background: var(--ink-surface); }
.hero__media { position: relative; height: clamp(480px, 82vh, 820px); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,17,14,.62) 0%, rgba(20,17,14,.34) 45%, rgba(20,17,14,.06) 78%);
}
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  padding-bottom: clamp(44px, 7vw, 96px);
}
.hero__inner { max-width: 640px; color: var(--on-dark); }
.hero__inner .eyebrow { color: rgba(246,242,236,.72); }
.hero__inner p { color: rgba(246,242,236,.86); margin: 22px 0 34px; font-size: clamp(1rem, 1.3vw, 1.125rem); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 900px) {
  .hero__content { align-items: center; }
}

/* split hero variant */
.split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 92px) var(--gutter); }
.split__text > .inner { max-width: 520px; margin-inline: auto; width: 100%; }
.split__media { min-height: 340px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .split--reverse .split__media { order: -1; } }

/* ------------------------------------------------------------- categories */

.cat-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1180px) { .cat-grid { grid-template-columns: repeat(6, 1fr); gap: 22px; } }

.cat-card { display: block; }
.cat-card .media { border-radius: var(--r); }
.cat-card h3 { margin-top: 14px; font-size: .9375rem; letter-spacing: .02em; font-family: var(--font-body); font-weight: 500; }
.cat-card p { margin: 4px 0 0; font-size: .8125rem; color: var(--muted); line-height: 1.5; }

/* editorial tiles (2-up / 3-up feature cards) */
.tiles { display: grid; gap: clamp(16px, 2.4vw, 30px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .tiles--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .tiles--3 { grid-template-columns: repeat(3, 1fr); } }
.tile { position: relative; overflow: hidden; border-radius: var(--r); display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,17,14,.62), rgba(20,17,14,.05) 55%); }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(22px, 3vw, 38px); color: var(--on-dark); }
.tile__body h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 300; }
.tile__body p { margin: 8px 0 0; font-size: .875rem; color: rgba(246,242,236,.84); max-width: 34ch; }
.tile__body .link-underline { margin-top: 16px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }

/* --------------------------------------------------------- product cards */

.product-grid { display: grid; gap: clamp(22px, 2.6vw, 40px) clamp(14px, 1.8vw, 28px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1120px) { .product-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card { position: relative; display: flex; flex-direction: column; }
.card__media { position: relative; border-radius: var(--r); overflow: hidden; background: var(--surface-2); }
.card__media .media { aspect-ratio: 4 / 5; }
.card__img-alt {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.card__img-alt img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: hover) {
  .card:hover .card__img-alt { opacity: 1; }
}
.card__badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

.card__wish {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 4;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  transition: background .25s, transform .2s var(--ease);
}
.card__wish svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.5; transition: fill .25s, stroke .25s; }
.card__wish:hover { background: #fff; transform: scale(1.08); }
.card__wish.is-active svg { fill: var(--accent); stroke: var(--accent); }
.card__wish.is-busy { opacity: .5; pointer-events: none; }

.card__quick {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
@media (hover: hover) and (min-width: 760px) {
  .card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
}
@media (max-width: 759px) { .card__quick { display: none; } }

.card__body { padding-top: 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__collection { font-size: .625rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.card__name { font-size: .9375rem; font-weight: 500; letter-spacing: -.005em; }
.card__name a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.card__meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.card__price { font-size: .9375rem; }
.card__compare { font-size: .8125rem; color: var(--muted); text-decoration: line-through; }
.card__fin { font-size: .75rem; color: var(--accent); }
.card__swatches { display: flex; gap: 5px; margin-top: 8px; align-items: center; }
.swatch-dot {
  width: 14px; height: 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: inset 0 0 0 1.5px #fff;
}
.card__swatch-more { font-size: .6875rem; color: var(--muted); margin-left: 2px; }

/* ----------------------------------------------------------------- toolbar */

.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 18px;
  border-block: 1px solid var(--line);
  margin-bottom: 30px;
  position: sticky;
  top: var(--header-h);
  background: var(--bg);
  z-index: 20;
}
.toolbar__count { font-size: .8125rem; color: var(--muted); }
.toolbar .select { min-height: 42px; padding-block: 9px; width: auto; min-width: 190px; background-color: transparent; border-color: var(--line-2); }

.filter-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-size: .8125rem;
  letter-spacing: .04em;
  transition: border-color .25s, background .25s;
}
.filter-toggle:hover { border-color: var(--ink); }
.filter-toggle svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.filter-toggle__n { background: var(--accent); color: #fff; border-radius: var(--r-pill); font-size: .625rem; padding: 1px 7px; font-weight: 600; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 8px 7px 14px;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  font-size: .75rem;
  color: var(--ink-2);
}
.chip svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.chip:hover { background: var(--surface-3); }
.chip--clear { background: transparent; border: 1px solid var(--line-2); padding-inline: 14px; }

/* ------------------------------------------------------------ shop layout */

.shop-layout { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 1000px) {
  .shop-layout { grid-template-columns: 250px 1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
}

.filters { }
@media (max-width: 999px) {
  .filters {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: var(--bg);
    transform: translateX(-100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
  }
  .filters.is-open { transform: none; }
  .filters__head { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--gutter); border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--bg); z-index: 2; }
  .filters__inner { padding: 8px var(--gutter) 120px; }
  .filters__foot { position: sticky; bottom: 0; padding: 16px var(--gutter); background: var(--bg); border-top: 1px solid var(--line); }
}
@media (min-width: 1000px) {
  .filters { position: sticky; top: calc(var(--header-h) + 24px); }
  .filters__head, .filters__foot { display: none; }
}

.filter-group { border-bottom: 1px solid var(--line); padding-block: 20px; }
.filter-group:first-child { padding-top: 4px; }
.filter-group > summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.filter-group > summary::-webkit-details-marker { display: none; }
.filter-group > summary::after {
  content: ""; width: 10px; height: 10px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%234E4842' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
}
.filter-group[open] > summary::after { transform: rotate(180deg); }
.filter-group__body { padding-top: 16px; display: grid; gap: 11px; }

.filter-opt { display: flex; align-items: center; gap: 11px; font-size: .875rem; color: var(--ink-2); cursor: pointer; }
.filter-opt input { width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.filter-opt .n { margin-left: auto; font-size: .75rem; color: var(--muted); }
.filter-opt:hover { color: var(--ink); }

.swatch-opt { display: flex; align-items: center; gap: 10px; }
.swatch-opt .swatch-dot { width: 17px; height: 17px; }

.price-inputs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; }
.price-inputs .input { min-height: 42px; padding: 9px 12px; font-size: .875rem; }

/* ------------------------------------------------------------------- PDP */

.pdp { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (min-width: 1000px) { .pdp { grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr); } }

.gallery { display: grid; gap: 10px; }
@media (min-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery__item:first-child { grid-column: 1 / -1; } }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r); background: var(--surface-2); cursor: zoom-in; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item:first-child { aspect-ratio: 4 / 3; }
.gallery__item:not(:first-child) { aspect-ratio: 1 / 1; }
@media (max-width: 699px) { .gallery__item { aspect-ratio: 4 / 3 !important; } }

/* mobile swipe gallery */
@media (max-width: 699px) {
  .gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item { flex: 0 0 88%; scroll-snap-align: center; }
}

.pdp__info { position: relative; }
@media (min-width: 1000px) { .pdp__info { position: sticky; top: calc(var(--header-h) + 28px); } }

.pdp__collection { font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pdp__title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 300; letter-spacing: -.022em; }
.pdp__pricing { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.pdp__price { font-size: 1.5rem; }
.pdp__compare { color: var(--muted); text-decoration: line-through; }
.pdp__summary { margin-top: 16px; color: var(--ink-2); line-height: 1.7; }

.option-group { margin-top: 30px; }
.option-group__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.option-group__label { font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.option-group__value { font-size: .875rem; font-weight: 500; }

.opt-row { display: flex; flex-wrap: wrap; gap: 9px; }
.opt {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--surface);
  font-size: .875rem;
  transition: border-color .22s, box-shadow .22s, background .22s;
}
.opt:hover { border-color: var(--ink-2); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.opt:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }
.opt__delta { color: var(--muted); font-size: .8125rem; margin-left: 6px; }

.opt--swatch { padding: 4px; min-height: 0; border-radius: var(--r-pill); border-color: transparent; }
.opt--swatch .sw {
  width: 34px; height: 34px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0,0,0,.12);
  display: block;
}
.opt--swatch:has(input:checked) { border-color: var(--ink); box-shadow: none; }
.opt--swatch:hover { border-color: var(--line-2); }

.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  height: 50px;
  flex: none;
}
.qty button { width: 44px; height: 100%; font-size: 1.05rem; color: var(--ink-2); transition: color .2s; }
.qty button:hover { color: var(--ink); }
.qty input {
  width: 42px; height: 100%;
  text-align: center;
  border: 0; background: transparent;
  font-size: .9375rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-row { display: flex; gap: 12px; margin-top: 28px; }
.buy-row .btn { flex: 1; white-space: nowrap; }
@media (max-width: 460px) {
  .buy-row { flex-wrap: wrap; }
  .buy-row .btn { flex: 1 1 100%; order: 3; }
  .buy-row .qty { flex: 1 1 auto; }
  .buy-row .wish-btn { order: 2; }
}
.wish-btn {
  width: 50px; height: 50px;
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  transition: border-color .25s, background .25s;
}
.wish-btn svg { width: 19px; height: 19px; fill: none; stroke: var(--ink); stroke-width: 1.5; transition: fill .25s, stroke .25s; }
.wish-btn:hover { border-color: var(--ink); }
.wish-btn.is-active { border-color: var(--accent); background: var(--accent-soft); }
.wish-btn.is-active svg { fill: var(--accent); stroke: var(--accent); }

.finance-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--accent-soft);
  border-radius: var(--r);
  font-size: .875rem;
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.finance-note strong { color: var(--ink); font-weight: 600; }
.finance-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.finance-note button { color: var(--accent); border-bottom: 1px solid currentColor; font-size: inherit; }

.trust-row { display: grid; gap: 14px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
@media (min-width: 560px) { .trust-row { grid-template-columns: 1fr 1fr; } }
.trust-item { display: flex; gap: 11px; font-size: .8125rem; color: var(--ink-2); align-items: flex-start; }
.trust-item svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--accent); fill: none; stroke-width: 1.4; }
.trust-item b { display: block; color: var(--ink); font-weight: 600; }

/* accordions */
.acc { border-top: 1px solid var(--line); margin-top: 34px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-size: .875rem; font-weight: 500; letter-spacing: .02em;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; font-size: 1.1rem; color: var(--muted); font-weight: 300; transition: transform .3s var(--ease);
}
.acc details[open] summary::after { content: "–"; }
.acc__body { padding-bottom: 22px; font-size: .875rem; color: var(--ink-2); line-height: 1.75; }
.acc__body ul { margin: 0; padding-left: 18px; }
.acc__body li + li { margin-top: 7px; }
.acc__body dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; }
.acc__body dt { color: var(--muted); font-size: .8125rem; }
.acc__body dd { margin: 0; }

/* ---------------------------------------------------------------- reviews */

.reviews-layout { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; }
@media (min-width: 960px) { .reviews-layout { grid-template-columns: 300px 1fr; align-items: start; } }

.review-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
@media (min-width: 960px) { .review-summary { position: sticky; top: calc(var(--header-h) + 24px); } }
.review-summary__score { font-family: var(--font-display); font-size: 3rem; line-height: 1; font-weight: 300; }
.review-bar { display: grid; grid-template-columns: 34px 1fr 30px; align-items: center; gap: 10px; font-size: .75rem; color: var(--muted); }
.review-bar__track { height: 5px; background: var(--surface-3); border-radius: var(--r-pill); overflow: hidden; }
.review-bar__fill { height: 100%; background: var(--star); border-radius: var(--r-pill); }

.review { padding-block: 26px; border-bottom: 1px solid var(--line); }
.review:first-child { padding-top: 0; }
.review__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.review__title { font-weight: 600; font-size: .9375rem; margin: 8px 0 6px; }
.review__body { color: var(--ink-2); font-size: .9375rem; line-height: 1.72; margin: 0; }
.review__meta { margin-top: 12px; font-size: .75rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 16px; }
.review__verified { color: var(--success); display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }
.review__verified svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

.star-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-input input { position: absolute; opacity: 0; width: 0; }
.star-input label { cursor: pointer; width: 26px; height: 26px; }
.star-input label svg { width: 26px; height: 26px; fill: var(--line-2); transition: fill .2s; }
.star-input input:checked ~ label svg,
.star-input label:hover svg,
.star-input label:hover ~ label svg { fill: var(--star); }

/* --------------------------------------------------------------- wishlist */

.empty-state { text-align: center; padding: clamp(50px, 9vw, 110px) 0; }
.empty-state svg { width: 46px; height: 46px; margin: 0 auto 22px; stroke: var(--line-2); fill: none; stroke-width: 1.2; }

/* ------------------------------------------------------------- cart/drawer */

.overlay {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(26, 22, 18, .38);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  backdrop-filter: blur(2px);
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .48s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); flex: none; }
.drawer__body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 6px 24px 24px; }
.drawer__foot { flex: none; padding: 20px 24px 26px; border-top: 1px solid var(--line); background: var(--surface); }

.ship-meter { margin: 16px 0 4px; }
.ship-meter__track { height: 4px; background: var(--surface-3); border-radius: var(--r-pill); overflow: hidden; margin-top: 8px; }
.ship-meter__fill { height: 100%; background: var(--forest); border-radius: var(--r-pill); transition: width .6s var(--ease); }

.line-item { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding-block: 20px; border-bottom: 1px solid var(--line); }
.line-item__media { border-radius: var(--r); overflow: hidden; background: var(--surface-2); aspect-ratio: 4/5; }
.line-item__media img { width: 100%; height: 100%; object-fit: cover; }
.line-item__name { font-size: .875rem; font-weight: 500; }
.line-item__variant { font-size: .75rem; color: var(--muted); margin-top: 3px; line-height: 1.55; }
.line-item__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.line-item .qty { height: 38px; }
.line-item .qty button { width: 34px; }
.line-item .qty input { width: 34px; font-size: .875rem; }
.line-item__remove { font-size: .75rem; color: var(--muted); border-bottom: 1px solid var(--line-2); }
.line-item__remove:hover { color: var(--sale); border-color: var(--sale); }

.totals { display: grid; gap: 10px; font-size: .875rem; }
.totals__row { display: flex; justify-content: space-between; gap: 16px; }
.totals__row--grand { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 4px; font-size: 1.05rem; font-weight: 500; }
.totals__row--save { color: var(--success); }

/* --------------------------------------------------------------- checkout */

.checkout { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
@media (min-width: 960px) { .checkout { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); } }

.co-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px, 3vw, 32px); }
.co-step + .co-step { margin-top: 18px; }
.co-step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.co-step__n {
  width: 26px; height: 26px; flex: none;
  border-radius: var(--r-pill);
  background: var(--ink); color: var(--on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 600;
}
.co-step__title { font-size: 1.0625rem; font-weight: 500; letter-spacing: -.01em; }

.express { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .express { grid-template-columns: repeat(3, 1fr); } }
.express button {
  min-height: 50px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .01em;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: opacity .25s, transform .18s var(--ease);
}
.express button:hover { opacity: .86; }
.express button:active { transform: translateY(1px); }
.express .x-pay   { background: #000; color: #fff; }
.express .x-gpay  { background: #fff; color: #3C4043; border-color: var(--line-2); }
.express .x-paypal{ background: #FFC439; color: #003087; font-style: italic; }

.divider { display: flex; align-items: center; gap: 16px; margin-block: 26px; color: var(--muted); font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; }
.divider::before, .divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }

.pay-opt { border: 1px solid var(--line-2); border-radius: var(--r); padding: 16px 18px; cursor: pointer; transition: border-color .22s, background .22s; display: block; }
.pay-opt + .pay-opt { margin-top: 10px; }
.pay-opt:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); background: var(--surface); }
.pay-opt__head { display: flex; align-items: center; gap: 12px; }
.pay-opt__head input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.pay-opt__title { font-weight: 500; font-size: .9375rem; }
.pay-opt__body { padding-left: 30px; margin-top: 8px; font-size: .8125rem; color: var(--muted); line-height: 1.6; }
.pay-opt__extra { padding-left: 30px; margin-top: 14px; display: none; }
.pay-opt:has(input:checked) .pay-opt__extra { display: block; }

.summary-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
@media (min-width: 960px) { .summary-card { position: sticky; top: calc(var(--header-h) + 24px); } }
.summary-card__items { max-height: 320px; overflow-y: auto; margin-bottom: 18px; }
.summary-card .line-item { grid-template-columns: 64px 1fr; padding-block: 14px; }

/* --------------------------------------------------------------- callouts */

.value-row { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .value-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .value-row { grid-template-columns: repeat(4, 1fr); } }
.value { text-align: left; }
.value svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.3; margin-bottom: 14px; }
.value h3 { font-size: .9375rem; font-weight: 600; margin-bottom: 6px; }
.value p { margin: 0; font-size: .8125rem; color: var(--muted); line-height: 1.65; }

.finance-banner { display: grid; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .finance-banner { grid-template-columns: 1.05fr .95fr; } }

.tier-grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: 30px; }
@media (min-width: 620px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tier-grid { grid-template-columns: repeat(4, 1fr); } }
.tier { border: 1px solid rgba(246,242,236,.18); border-radius: var(--r); padding: 22px; }
.tier b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; margin-bottom: 6px; }
.tier span { font-size: .8125rem; color: rgba(246,242,236,.65); }

/* -------------------------------------------------------------- lightbox */

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(18, 15, 12, .95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  padding: 20px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 92vh; object-fit: contain; border-radius: var(--r); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-pill);
  transition: background .25s;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------------------------------------------------------------- toasts */

.toasts { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 120; display: grid; gap: 10px; width: min(400px, calc(100% - 32px)); pointer-events: none; }
.toast {
  background: var(--ink-surface);
  color: var(--on-dark);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: .875rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: toast-in .4s var(--ease);
  pointer-events: auto;
}
.toast svg { width: 17px; height: 17px; flex: none; stroke: #9DBFA6; fill: none; stroke-width: 2; }
.toast.is-out { animation: toast-out .32s var(--ease) forwards; }
@keyframes toast-in  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateY(10px); } }

/* --------------------------------------------------------------- footer */

.site-footer { background: var(--ink-surface); color: var(--on-dark); padding-top: clamp(52px, 6vw, 82px); }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 52px; border-bottom: 1px solid rgba(246,242,236,.14); }
@media (min-width: 760px)  { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1060px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,242,236,.55); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(246,242,236,.82); transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-brand .brand { color: var(--on-dark); }
.footer-brand p { color: rgba(246,242,236,.64); font-size: .875rem; max-width: 34ch; margin: 16px 0 22px; }

.newsletter { display: flex; gap: 8px; max-width: 380px; }
.newsletter .input { background: transparent; border-color: rgba(246,242,236,.28); color: var(--on-dark); }
.newsletter .input::placeholder { color: rgba(246,242,236,.45); }
.newsletter .input:focus { border-color: var(--on-dark); box-shadow: none; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  padding-block: 26px;
  font-size: .75rem; color: rgba(246,242,236,.52);
}
.footer-bottom a:hover { color: #fff; }
.pay-marks { display: flex; gap: 8px; margin-left: auto; align-items: center; }
.pay-mark { height: 22px; padding: 0 8px; border: 1px solid rgba(246,242,236,.22); border-radius: 3px; font-size: .5625rem; letter-spacing: .06em; display: inline-flex; align-items: center; color: rgba(246,242,236,.72); }

/* --------------------------------------------------------------- utilities */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--on-dark);
  padding: 12px 18px; border-radius: var(--r);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.notice { padding: 14px 18px; border-radius: var(--r); font-size: .875rem; }
.notice--ok { background: #EAF1EB; color: var(--success); }
.notice--err { background: #F8EAE7; color: var(--sale); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* horizontal scroller for mobile product rails */
.rail { display: grid; gap: clamp(14px, 1.8vw, 28px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px)  { .rail { grid-template-columns: repeat(4, 1fr); } }
