/* ==========================================================================
   Storefront styles
   Monochrome fashion look: white ground, ink type, one extended display face.
   ========================================================================== */
:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-2: #555552;
  --ink-3: #8b8a86;
  --line: #e8e7e3;
  --line-2: #cfcdc8;
  --tint: #f1f0ed;
  --tint-2: #f7f6f4;
  --hero: #e7e4de;
  --sale: #c0182a;
  --ok: #1c7a43;
  --warn: #a15700;
  --wa: #25d366;
  --gutter: clamp(16px, 3vw, 40px);
  --maxw: 1600px;
  --hdr-h: 64px;
  --font: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--hdr-h) + 16px); }
html.no-scroll { overflow: hidden; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 14px; line-height: 1.55; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
::selection { background: var(--ink); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: 100%; max-width: 760px; margin-inline: auto; padding-inline: var(--gutter); padding-block: 40px 72px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 8px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 14px; text-decoration: none; }
.skip:focus { top: 8px; }
.muted { color: var(--ink-2); }
.small { font-size: 12.5px; }
.pad { padding: 20px; }
.only-sm { display: none !important; }
.eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.lead { font-size: 16px; line-height: 1.6; margin-top: 10px; }
.page-title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; font-stretch: 125%; text-transform: uppercase; letter-spacing: -.01em; line-height: .98; }
.link-u { background: none; border: 0; padding: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.link-u:hover { text-decoration-thickness: 2px; }
.link-u .ic { width: 16px; height: 16px; }
.ic { width: 22px; height: 22px; flex: none; }
[hidden] { display: none !important; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 28px; border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s; white-space: nowrap;
}
.btn:hover { background: #333; border-color: #333; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; text-decoration: underline; text-underline-offset: 4px; padding-inline: 12px; }
.btn-ghost:hover { background: transparent; color: var(--ink); border-color: transparent; text-decoration-thickness: 2px; }
.btn-ghost.is-light { color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; }
.btn-block { width: 100%; }
.btn-lg { min-height: 54px; }
.btn .ic { width: 20px; height: 20px; }
.btn-wa .ic { color: #1faa55; }
.btn-wa:hover .ic { color: #fff; }
.btn-square { width: 54px; height: 54px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-2); background: #fff; cursor: pointer; }
.btn-square:hover { border-color: var(--ink); }
.btn-square[aria-pressed="true"] .ic { fill: var(--ink); }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 44px; height: 44px; padding: 0 8px; background: none; border: 0; cursor: pointer; text-decoration: none; color: inherit;
}
.icon-lbl { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.count {
  position: absolute; top: 5px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px;
  background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; line-height: 17px; text-align: center;
}
.hdr--over:not(.is-solid) .count { background: #fff; color: var(--ink); }

/* ---------- chips & pills ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border: 1px solid var(--line-2);
  font-size: 12.5px; text-decoration: none; white-space: nowrap; background: #fff; color: var(--ink);
}
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip--x .ic { width: 14px; height: 14px; }
.pill { display: inline-flex; align-items: center; height: 26px; padding: 0 10px; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: var(--tint); }
.pill--delivered { background: #e2f3e8; color: var(--ok); }
.pill--cancelled { background: #f4e3e4; color: var(--sale); }
.pill--shipped { background: #fdf0da; color: var(--warn); }

/* ---------- announcement ---------- */
.announce { background: var(--ink); color: #fff; font-size: 12px; letter-spacing: .06em; text-align: center; }
.announce-track { position: relative; height: 36px; overflow: hidden; }
.announce-msg { position: absolute; inset: 0; display: grid; place-items: center; padding-inline: 16px; opacity: 0; transform: translateY(8px); transition: opacity .5s, transform .5s; }
.announce-msg.is-on { opacity: 1; transform: none; }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); transition: background .25s, color .25s, border-color .25s; }
.hdr-in { height: var(--hdr-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.hdr-left { display: flex; align-items: center; height: 100%; min-width: 0; }
.hdr-right { display: flex; justify-content: flex-end; align-items: center; gap: 2px; }
.logo { justify-self: center; text-decoration: none; color: inherit; display: flex; align-items: center; }
.logo-text { font-stretch: 125%; font-weight: 800; font-size: 22px; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.logo-img { max-height: 34px; width: auto; }
.dept-nav { display: flex; align-items: stretch; gap: 26px; height: 100%; }
.dept { display: flex; align-items: stretch; }
.dept-link {
  display: flex; align-items: center; font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: inherit; border-bottom: 1.5px solid transparent; margin-bottom: -1px;
}
.dept:hover > .dept-link, .dept:focus-within > .dept-link, .dept-link:hover { border-bottom-color: currentColor; }
.dept-link.is-sale { color: var(--sale); }
.mega {
  position: absolute; left: 0; right: 0; top: 100%; background: #fff; color: var(--ink);
  border-bottom: 1px solid var(--line); box-shadow: 0 24px 40px -32px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s var(--ease), visibility 0s linear .18s;
}
.dept:hover .mega, .dept:focus-within .mega { opacity: 1; visibility: visible; transform: none; transition-delay: .06s, .06s, 0s; }
.mega-in { display: grid; grid-template-columns: 240px 240px 1fr; gap: 40px; padding-block: 28px 36px; }
.mega-h { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.mega ul { list-style: none; display: grid; gap: 9px; }
.mega a { text-decoration: none; font-size: 14px; }
.mega a:hover { text-decoration: underline; text-underline-offset: 3px; }
.mega-promo { justify-self: end; width: 230px; display: grid; gap: 10px; text-decoration: none; }
.mega-promo img { aspect-ratio: 3 / 4; object-fit: cover; background: var(--tint); width: 100%; }
.mega-promo span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.mega-promo .ic { width: 18px; height: 18px; }

.hdr--over { position: sticky; background: transparent; border-bottom-color: transparent; color: #fff; }
.hdr--over.is-solid, .hdr--over:hover, .hdr--over:focus-within { background: #fff; color: var(--ink); border-bottom-color: var(--line); }

/* ---------- drawers, search, scrim ---------- */
.scrim { position: fixed; inset: 0; z-index: 70; background: rgba(17, 17, 17, .42); opacity: 0; transition: opacity .25s; }
.scrim.is-on { opacity: 1; }
.drawer {
  position: fixed; top: 0; bottom: 0; z-index: 80; width: min(440px, 100vw); background: #fff; display: flex; flex-direction: column;
  visibility: hidden; transition: transform .32s var(--ease), visibility 0s linear .32s;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.drawer--right { right: 0; transform: translateX(100%); }
.drawer--left { left: 0; transform: translateX(-100%); }
.drawer.is-open { transform: none; visibility: visible; transition: transform .32s var(--ease); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 12px 12px 20px; border-bottom: 1px solid var(--line); min-height: var(--hdr-h); }
.drawer-title { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; }
.drawer-foot { border-top: 1px solid var(--line); padding: 16px 20px 20px; display: grid; gap: 10px; }
.drawer-foot--row { grid-template-columns: 1fr 1.4fr; }
.drawer-foot--row .btn { padding-inline: 12px; }

.mm-tabs { display: flex; border-bottom: 1px solid var(--line); }
.mm-tab { flex: 1; height: 52px; background: none; border: 0; border-bottom: 2px solid transparent; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; color: var(--ink-3); }
.mm-tab.is-on { color: var(--ink); border-bottom-color: var(--ink); }
.mm-list { list-style: none; padding: 8px 0; }
.mm-list a { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; text-decoration: none; font-size: 15px; }
.mm-list a .ic { width: 18px; height: 18px; color: var(--ink-3); }
.mm-list--quiet { border-top: 1px solid var(--line); }
.mm-list--quiet a { font-size: 14px; color: var(--ink-2); padding-block: 10px; }

.search {
  position: fixed; left: 0; right: 0; top: 0; z-index: 80; background: #fff; max-height: 100dvh; overflow-y: auto;
  visibility: hidden; transform: translateY(-100%); transition: transform .3s var(--ease), visibility 0s linear .3s;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.4);
}
.search.is-open { transform: none; visibility: visible; transition: transform .3s var(--ease); }
.search-bar { display: flex; align-items: center; gap: 12px; height: 76px; border-bottom: 1px solid var(--line); }
.search-bar input { flex: 1; border: 0; font-size: 20px; height: 56px; background: none; outline: none; min-width: 0; }
.search-bar input::-webkit-search-cancel-button { display: none; }
.search-body { padding-block: 24px 36px; display: grid; gap: 14px; }
.sr-cols { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.sr-cats { list-style: none; display: grid; gap: 8px; align-content: start; }
.sr-cats a { text-decoration: none; }
.sr-cats a:hover { text-decoration: underline; }
.sr-items { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px 20px; }
.sr-item { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.sr-item img { width: 56px; height: 75px; object-fit: cover; background: var(--tint); }
.sr-item strong { display: block; font-weight: 500; font-size: 13.5px; }
.sr-item span { font-size: 13px; color: var(--ink-2); }
.sr-all { justify-self: start; }

/* ---------- hero ---------- */
.hero { position: relative; }
.hero--type { background: var(--hero); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 24px; min-height: clamp(520px, 74vh, 780px); padding-block: 48px; }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero-title { font-stretch: 125%; font-weight: 800; text-transform: uppercase; font-size: clamp(46px, 8.2vw, 138px); line-height: .86; letter-spacing: -.025em; margin: 16px 0 22px; }
.hero-sub { font-size: 16px; max-width: 42ch; line-height: 1.55; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-collage { position: relative; align-self: stretch; min-height: 440px; }
.hc { position: absolute; width: 47%; aspect-ratio: 3 / 4; background: var(--tint); box-shadow: 0 34px 60px -34px rgba(52, 38, 22, .45); transition: transform .5s var(--ease); }
.hc img { width: 100%; height: 100%; object-fit: cover; }
.hc-1 { left: 3%; top: 7%; transform: rotate(-4deg); z-index: 2; }
.hc-2 { right: 1%; top: 0; transform: rotate(3.5deg); z-index: 1; }
.hc-3 { left: 31%; bottom: 1%; transform: rotate(-1deg); z-index: 3; width: 42%; }
.hero-collage:hover .hc-1 { transform: rotate(-6deg) translateY(-6px); }
.hero-collage:hover .hc-2 { transform: rotate(5deg) translateY(-4px); }
.hero--image { margin-top: calc(-1 * var(--hdr-h)); min-height: min(92vh, 900px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero--image.is-dark { color: var(--ink); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 55%), linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,0) 22%); }
.hero--image.is-dark .hero-shade { background: linear-gradient(to top, rgba(255,255,255,.55), rgba(255,255,255,0) 55%); }
.hero-wrap { position: relative; padding-block: 64px; }

/* ---------- sections & rails ---------- */
.section { padding-block: clamp(40px, 6vw, 80px) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.sec-title { font-size: clamp(22px, 2.6vw, 34px); font-weight: 800; font-stretch: 125%; text-transform: uppercase; letter-spacing: -.01em; line-height: 1; }
.sec-tools { display: flex; align-items: center; gap: 6px; }
.sec-tools .link-u { margin-right: 10px; }
.rail-btn { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-2); background: #fff; cursor: pointer; }
.rail-btn:hover { border-color: var(--ink); }
.rail-btn .ic { width: 18px; height: 18px; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 12px) / 4.25); gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding-inline: var(--gutter);
  scrollbar-width: none; max-width: var(--maxw); margin-inline: auto;
}
.rail::-webkit-scrollbar { display: none; }
.rail-item { scroll-snap-align: start; min-width: 0; }

/* ---------- product card ---------- */
.card { position: relative; display: flex; flex-direction: column; min-width: 0; }
.card-media { position: relative; aspect-ratio: 3 / 4; background: var(--tint); overflow: hidden; }
.card-img-link { position: absolute; inset: 0; }
.card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease; }
.card-img-2 { opacity: 0; }
.card.is-soldout .card-img { opacity: .55; }
.card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; pointer-events: none; }
.badge { background: #fff; color: var(--ink); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 7px; line-height: 1.2; }
.badge.is-sale { background: var(--sale); color: #fff; }
.badge.is-low { color: var(--warn); }
.badge.is-out { background: var(--ink); color: #fff; }
.card-fav { position: absolute; top: 4px; right: 4px; width: 44px; height: 44px; display: grid; place-items: center; background: none; border: 0; cursor: pointer; }
.card-fav .ic { width: 21px; height: 21px; transition: transform .2s; }
.card-fav:hover .ic { transform: scale(1.12); }
[data-fav][aria-pressed="true"] .ic { fill: var(--ink); }
.quick {
  position: absolute; left: 8px; right: 8px; bottom: 8px; background: rgba(255,255,255,.97); padding: 10px 10px 9px;
  transform: translateY(calc(100% + 14px)); transition: transform .28s var(--ease);
}
.quick-title { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 7px; }
.quick-title span { color: var(--ink-3); text-transform: none; letter-spacing: 0; margin-left: 4px; }
.quick-sizes { display: flex; flex-wrap: wrap; gap: 4px; }
.quick-size { min-width: 38px; height: 32px; padding: 0 8px; border: 1px solid var(--line-2); background: #fff; font-size: 12px; cursor: pointer; }
.quick-size:hover:not([disabled]) { background: var(--ink); color: #fff; border-color: var(--ink); }
.quick-size[disabled] { color: var(--ink-3); border-color: var(--line); text-decoration: line-through; cursor: not-allowed; }
@media (hover: hover) {
  .card:hover .card-img-2 { opacity: 1; }
  .card:hover .quick, .card:focus-within .quick { transform: none; }
}
@media (hover: none) { .quick { display: none; } }
.card-body { display: grid; gap: 3px; padding: 10px 2px 4px; }
.card-name { font-size: 13px; font-weight: 400; line-height: 1.35; }
.card-name a { text-decoration: none; }
.card-name a:hover { text-decoration: underline; text-underline-offset: 3px; }
.price { display: inline-flex; flex-wrap: wrap; align-items: baseline; column-gap: 7px; font-size: 13px; }
.price-now { font-weight: 600; }
.price-now.is-sale, .price-off { color: var(--sale); }
.price-was { color: var(--ink-3); }
.price-off { font-size: 12px; font-weight: 600; }
.card-swatches { display: flex; align-items: center; gap: 7px; margin-top: 5px; min-height: 16px; }
.sw { position: relative; width: 13px; height: 13px; border-radius: 50%; background: var(--sw); border: 1px solid rgba(0,0,0,.2); padding: 0; cursor: pointer; flex: none; }
.sw::after { content: ''; position: absolute; inset: -7px; }
.sw.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--ink); }
.sw-more { font-size: 11.5px; color: var(--ink-2); }

/* ---------- home blocks ---------- */
.banners { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: clamp(40px, 6vw, 80px); }
.banner { display: grid; gap: 16px; text-decoration: none; }
.banner-img { position: relative; display: block; aspect-ratio: 4 / 5; background: var(--tint); overflow: hidden; }
.banner-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.banner:hover .banner-img img { transform: scale(1.035); }
.banner-copy { display: grid; gap: 4px; justify-items: start; }
.banner-title { font-stretch: 125%; font-weight: 800; font-size: clamp(30px, 4.4vw, 64px); text-transform: uppercase; line-height: .92; letter-spacing: -.02em; }
.banner-sub { color: var(--ink-2); font-size: 14px; }
.banner-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.banner-cta .ic { width: 16px; height: 16px; transition: transform .25s; }
.banner:hover .banner-cta .ic { transform: translateX(4px); }

.seg { display: inline-flex; border: 1px solid var(--line-2); }
.seg-btn { height: 38px; padding: 0 18px; background: #fff; border: 0; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; color: var(--ink-2); }
.seg-btn + .seg-btn { border-left: 1px solid var(--line-2); }
.seg-btn.is-on { background: var(--ink); color: #fff; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 20px 10px; }
.cat-tile { display: grid; gap: 10px; text-decoration: none; }
.cat-img { display: block; aspect-ratio: 3 / 4; background: var(--tint); overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat-tile:hover .cat-img img { transform: scale(1.05); }
.cat-name { font-size: 13px; font-weight: 500; }
.cat-tile:hover .cat-name { text-decoration: underline; text-underline-offset: 3px; }

.services { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(48px, 7vw, 96px); border-top: 1px solid var(--line); }
.service { display: flex; gap: 14px; align-items: flex-start; padding: 28px 20px 30px 0; text-decoration: none; }
.service + .service { padding-left: 24px; border-left: 1px solid var(--line); }
.service .ic { width: 26px; height: 26px; margin-top: 1px; }
.service strong { display: block; font-size: 13.5px; font-weight: 600; }
.service span span { font-size: 13px; color: var(--ink-2); }

/* ---------- listing ---------- */
.plp { padding-bottom: 72px; }
.crumbs { padding-block: 18px 0; font-size: 12px; color: var(--ink-2); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: '/'; margin-right: 6px; color: var(--ink-3); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.plp-head { padding-block: 22px 18px; display: grid; gap: 10px; }
.plp-title { font-size: clamp(34px, 5.4vw, 76px); font-weight: 800; font-stretch: 125%; text-transform: uppercase; line-height: .9; letter-spacing: -.02em; }
.plp-intro { color: var(--ink-2); font-size: 15px; max-width: 60ch; }
.plp-search { display: flex; gap: 8px; max-width: 560px; margin-top: 8px; }
.plp-search input { flex: 1; }
.subcats { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 18px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.subcats::-webkit-scrollbar { display: none; }
.plp-bar { position: sticky; top: var(--hdr-h); z-index: 30; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-block: 1px solid var(--line); margin-bottom: 20px; }
.plp-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; }
.plp-count { font-size: 12.5px; color: var(--ink-2); letter-spacing: .04em; }
.plp-tools { display: flex; align-items: center; gap: 18px; }
.plp-sort { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-2); }
.plp-sort select { height: 36px; border: 0; background: transparent; font: inherit; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); cursor: pointer; padding-right: 4px; }
.density { display: flex; gap: 2px; }
.density button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; background: none; color: var(--ink-3); cursor: pointer; }
.density button .ic { width: 18px; height: 18px; }
.density button[aria-pressed="true"] { color: var(--ink); }
.tool-btn { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 2px; background: none; border: 0; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.tool-btn .ic { width: 18px; height: 18px; }
.tool-n { display: inline-grid; place-items: center; min-width: 20px; height: 20px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 11px; letter-spacing: 0; }
.active-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: -4px 0 20px; }
.grid { --cols: 4; display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 36px 12px; }
.grid[data-cols="2"] { --cols: 2; gap: 44px 16px; }
.plp-more { display: grid; justify-items: center; gap: 12px; margin-top: 56px; }
.meter { width: min(240px, 100%); height: 2px; background: var(--line); position: relative; overflow: hidden; }
.meter span { position: absolute; inset: 0 auto 0 0; background: var(--ink); transition: width .4s var(--ease); }
.empty { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 80px 16px; border: 1px solid var(--line); }
.empty-title { font-size: 18px; font-weight: 600; }
.empty .btn { margin-top: 10px; }

.filters { display: contents; }
.f-group { padding: 20px; border-bottom: 1px solid var(--line); }
.f-title { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.f-sort { display: grid; gap: 10px; }
.f-radio, .f-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.f-toggle { padding: 20px; }
.f-radio input, .f-toggle input { width: 18px; height: 18px; accent-color: var(--ink); margin: 0; }
.f-sizes { display: grid; grid-template-columns: repeat(auto-fill, minmax(62px, 1fr)); gap: 6px; }
.f-size { position: relative; cursor: pointer; }
.f-size input, .f-color input { position: absolute; opacity: 0; pointer-events: none; }
.f-size span { display: grid; place-items: center; height: 42px; border: 1px solid var(--line-2); font-size: 13px; }
.f-size input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.f-size input:focus-visible + span, .f-color input:focus-visible ~ span:last-child { outline: 2px solid var(--ink); outline-offset: 2px; }
.f-colors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 10px; }
.f-color { position: relative; display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.f-color .sw { width: 22px; height: 22px; background: var(--sw); }
.f-color input:checked + .sw { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--ink); }
.f-price { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-price label { display: grid; gap: 6px; font-size: 12px; color: var(--ink-2); }

/* ---------- product page ---------- */
.pdp { padding-bottom: 56px; }
.pdp-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(340px, 1fr); gap: clamp(24px, 4vw, 64px); align-items: start; padding-top: 16px; }
.gal-track { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.gal-track > :only-child { grid-column: 1 / -1; max-width: 720px; }
.gal-item { display: block; padding: 0; border: 0; background: var(--tint); aspect-ratio: 3 / 4; overflow: hidden; cursor: zoom-in; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; }
.gal-dots { display: flex; justify-content: center; gap: 6px; padding-top: 12px; }
.gal-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); transition: background .2s, width .2s; }
.gal-dots span.is-on { background: var(--ink); width: 18px; border-radius: 3px; }
.pdp-sticky { position: sticky; top: calc(var(--hdr-h) + 24px); display: grid; gap: 22px; max-width: 470px; }
.pdp-flags { display: flex; gap: 12px; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: -12px; }
.flag.is-low { color: var(--warn); }
.flag.is-out { color: var(--sale); }
.pdp-name { font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; font-stretch: 112%; text-transform: uppercase; line-height: 1.08; letter-spacing: -.005em; }
.pdp-price { font-size: 17px; margin-top: -10px; }
.pdp-ref { font-size: 12px; color: var(--ink-3); margin-top: -14px; letter-spacing: .04em; }
.pdp-block { display: grid; gap: 12px; }
.pdp-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.pdp-label strong { color: var(--ink); font-weight: 600; margin-left: 6px; letter-spacing: .04em; }
.pdp-label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pdp-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-sw { width: 58px; padding: 0; border: 1px solid transparent; background: var(--tint); cursor: pointer; outline-offset: 2px; }
.pdp-sw img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.pdp-sw.is-on { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pdp-sw:hover { border-color: var(--ink-3); }
.pdp-sw-dot { display: block; width: 100%; aspect-ratio: 3 / 4; background: var(--sw); }
.size-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 6px; }
.size-btn { position: relative; height: 46px; border: 1px solid var(--line-2); background: #fff; font-size: 13.5px; cursor: pointer; }
.size-btn:hover { border-color: var(--ink); }
.size-btn[aria-checked="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.size-btn.is-out { color: var(--ink-3); cursor: not-allowed; border-color: var(--line); background: linear-gradient(to top right, transparent calc(50% - .6px), var(--line-2) 50%, transparent calc(50% + .6px)); }
.size-low { position: absolute; top: 6px; right: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--warn); }
.size-btn[aria-checked="true"] .size-low { background: #ffb85c; }
.size-msg { font-size: 13px; min-height: 0; }
.size-msg:empty { display: none; }
.size-msg.is-error { color: var(--sale); }
.size-msg.is-low { color: var(--warn); }
.pdp-block.is-error .size-grid { animation: nudge .35s; }
@keyframes nudge { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.pdp-buy { display: flex; gap: 8px; }
.pdp-buy .btn { flex: 1; }
.perks { list-style: none; display: grid; gap: 14px; padding: 18px 0; border-block: 1px solid var(--line); font-size: 13px; }
.perks li { display: flex; gap: 12px; align-items: flex-start; }
.perks .ic { width: 22px; height: 22px; }
.perks strong { font-weight: 600; }
.perks a.muted { text-decoration: underline; text-underline-offset: 2px; }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 17px 0; cursor: pointer; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: ''; width: 11px; height: 11px; background: linear-gradient(currentColor, currentColor) center / 11px 1.5px no-repeat, linear-gradient(currentColor, currentColor) center / 1.5px 11px no-repeat; transition: transform .2s; }
.acc details[open] summary::after { transform: rotate(45deg); }
.acc-body { padding-bottom: 20px; display: grid; gap: 10px; font-size: 14px; color: #2a2a28; }
.acc-body ul { padding-left: 18px; display: grid; gap: 4px; }
.care { list-style: none !important; padding: 0 !important; display: grid; gap: 10px; margin-top: 4px; }
.care li { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.care-ic { width: 30px; height: 30px; flex: none; color: var(--ink); }

.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: flex; align-items: center; gap: 12px; justify-content: space-between;
  background: #fff; border-top: 1px solid var(--line); padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 30px -24px rgba(0,0,0,.4);
}
.sticky-buy-info { display: grid; min-width: 0; }
.sticky-buy-name { font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .btn { flex: none; }

.modal { border: 0; padding: 0; width: min(760px, calc(100vw - 24px)); max-height: calc(100dvh - 40px); background: #fff; color: var(--ink); }
.modal::backdrop { background: rgba(17, 17, 17, .45); }
.modal-head { position: sticky; top: 0; background: #fff; display: flex; align-items: center; justify-content: space-between; padding: 10px 10px 10px 24px; border-bottom: 1px solid var(--line); }
.modal-title { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.modal-body { padding: 24px; display: grid; gap: 22px; }
.table-scroll { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-size: 13.5px; font-variant-numeric: tabular-nums; }
.size-table caption { text-align: left; font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; padding-bottom: 10px; }
.size-table th, .size-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.size-table thead th { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; background: var(--tint-2); }
.size-table tbody th { font-weight: 600; }
.measure h3 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.measure dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; margin: 0 0 12px; font-size: 13.5px; }
.measure dt { font-weight: 600; }
.measure dd { margin: 0; color: var(--ink-2); }

.lightbox { position: fixed; inset: 0; z-index: 90; background: #fff; display: grid; place-items: center; }
.lb-img { max-width: 100vw; max-height: 100dvh; object-fit: contain; }
.lb-close { position: absolute; top: 12px; right: 12px; z-index: 2; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,.9); }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-count { position: absolute; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%); font-size: 12px; letter-spacing: .1em; }

/* ---------- bag ---------- */
.free-bar { padding: 16px 20px; background: var(--tint-2); border-bottom: 1px solid var(--line); display: grid; gap: 10px; font-size: 13px; }
.free-bar .meter { width: 100%; }
.bag-lines { list-style: none; }
.bag-line { display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--line); transition: background .6s; }
.bag-line.is-new { background: #fbfaf6; }
.bag-line.is-out .bag-img img { opacity: .5; }
.bag-img img { width: 90px; aspect-ratio: 3 / 4; object-fit: cover; background: var(--tint); }
.bag-info { display: grid; align-content: start; gap: 4px; min-width: 0; }
.bag-name { font-size: 13.5px; text-decoration: none; font-weight: 500; }
.bag-name:hover { text-decoration: underline; }
.bag-meta { font-size: 12.5px; color: var(--ink-2); }
.bag-warn { font-size: 12.5px; color: var(--sale); }
.bag-low { font-size: 12.5px; color: var(--warn); }
.bag-row { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.bag-price { font-size: 13.5px; font-weight: 600; text-align: right; display: grid; align-content: start; gap: 2px; }
.bag-price s { font-weight: 400; color: var(--ink-3); font-size: 12.5px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); height: 34px; }
.qty button { width: 34px; height: 100%; border: 0; background: none; cursor: pointer; font-size: 16px; }
.qty button[disabled] { color: var(--ink-3); cursor: not-allowed; }
.qty span { min-width: 26px; text-align: center; font-size: 13px; font-variant-numeric: tabular-nums; }
.bag-sub { display: flex; justify-content: space-between; font-size: 15px; }
.bag-empty { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 56px 24px; }
.bag-empty .ic { width: 40px; height: 40px; color: var(--ink-3); }

.cart-page, .checkout { padding-block: 32px 80px; }
.cart-layout, .co { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; margin-top: 28px; }
.cart-lines { border-top: 1px solid var(--line); }
.bag-lines--page .bag-line { grid-template-columns: 120px 1fr auto; padding-inline: 0; }
.bag-lines--page .bag-img img { width: 120px; }
.summary { position: sticky; top: calc(var(--hdr-h) + 20px); background: var(--tint-2); padding: 24px; display: grid; gap: 16px; }
.summary-title { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.summary-perks { list-style: none; display: grid; gap: 8px; font-size: 12.5px; color: var(--ink-2); }
.summary-perks li { display: flex; align-items: center; gap: 8px; }
.summary-perks .ic { width: 18px; height: 18px; }
.totals { margin: 0; display: grid; gap: 10px; font-size: 14px; }
.totals div { display: flex; justify-content: space-between; gap: 12px; }
.totals dt { color: var(--ink-2); }
.totals dd { margin: 0; font-variant-numeric: tabular-nums; }
.totals .is-disc dd { color: var(--ok); }
.totals-grand { border-top: 1px solid var(--line-2); padding-top: 12px; font-size: 16px; font-weight: 700; }
.totals-grand dt { color: var(--ink); }

/* ---------- forms & checkout ---------- */
input:not([type="checkbox"]):not([type="radio"]):not([type="color"]), select, textarea {
  width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 0; background: #fff;
  font: inherit; font-size: 15px; color: var(--ink); appearance: none;
}
textarea { height: auto; padding: 12px 14px; resize: vertical; line-height: 1.5; }
select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 21px, calc(100% - 15px) 21px; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.plp-sort select { background: none; padding-right: 4px; width: auto; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.field { display: grid; gap: 6px; margin-bottom: 16px; align-content: start; }
.field label { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.opt { text-transform: none; letter-spacing: 0; color: var(--ink-3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.field-hint { font-size: 12px; color: var(--ink-3); }
.field-err { font-size: 12.5px; color: var(--sale); }
.field-err:empty { display: none; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--sale); }
.co-sec { border: 0; padding: 0 0 12px; margin: 0 0 28px; border-bottom: 1px solid var(--line); min-width: 0; }
.co-legend { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; padding: 0; }
.co-n { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 12px; letter-spacing: 0; }
.opt-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 8px; margin-bottom: 18px; }
.opt-cards--stack { grid-template-columns: 1fr; }
.opt-card { position: relative; display: block; cursor: pointer; }
.opt-card input { position: absolute; opacity: 0; pointer-events: none; }
.opt-body { display: flex; align-items: flex-start; gap: 14px; min-height: 64px; padding: 15px 16px; border: 1px solid var(--line-2); background: #fff; transition: border-color .15s, box-shadow .15s; }
.opt-body .ic { width: 22px; height: 22px; margin-top: 1px; }
.opt-body strong { display: block; font-weight: 600; font-size: 14px; }
.opt-body .muted { display: block; font-size: 12.5px; margin-top: 2px; }
.opt-card input:checked + .opt-body { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.opt-card input:focus-visible + .opt-body { outline: 2px solid var(--ink); outline-offset: 2px; }
.pickup-box { display: flex; gap: 12px; padding: 16px; background: var(--tint-2); font-size: 14px; margin-bottom: 18px; }
.pickup-box .ic { width: 22px; height: 22px; }
.co-summary { gap: 18px; }
.co-lines { list-style: none; display: grid; gap: 14px; }
.co-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: start; font-size: 13px; }
.co-line img { width: 56px; aspect-ratio: 3 / 4; object-fit: cover; background: var(--tint); }
.co-line .muted { font-size: 12px; display: block; }
.co-line.is-out { opacity: .6; }
.promo { display: flex; gap: 8px; }
.promo input { height: 44px; }
.promo .btn { min-height: 44px; padding-inline: 16px; }
.promo-msg { font-size: 12.5px; margin-top: -8px; }
.promo-msg:empty { display: none; }
.promo-msg.is-ok { color: var(--ok); }
.promo-msg.is-bad { color: var(--sale); }
.co-error, .alert { background: #fbe9ea; color: #8c1320; padding: 14px 16px; font-size: 14px; margin-bottom: 20px; }
.fine { font-size: 12px; color: var(--ink-2); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- confirmation & tracking ---------- */
.confirm-head { text-align: center; display: grid; justify-items: center; gap: 8px; }
.confirm-check { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 8px; }
.confirm-check .ic { width: 28px; height: 28px; stroke-width: 2; }
.confirm .lead { max-width: 52ch; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin: 36px 0; }
.steps li { position: relative; display: grid; justify-items: center; text-align: center; gap: 6px; }
.steps li::before { content: ''; position: absolute; top: 13px; right: 50%; width: 100%; height: 2px; background: var(--line); }
.steps li:first-child::before { display: none; }
.steps li.is-done::before, .steps li.is-current::before { background: var(--ink); }
.step-dot { position: relative; z-index: 1; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--line-2); background: #fff; display: grid; place-items: center; }
.step-dot .ic { width: 15px; height: 15px; stroke-width: 2.4; }
.is-done .step-dot, .is-current .step-dot { background: var(--ink); border-color: var(--ink); color: #fff; }
.step-label { font-size: 12.5px; font-weight: 600; }
.step-when { font-size: 11.5px; color: var(--ink-3); }
.status-cancelled { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--sale); margin: 28px 0; font-weight: 600; }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.panel { border: 1px solid var(--line); padding: 22px; display: grid; gap: 10px; align-content: start; font-size: 14px; }
.panel-title { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.o-items { list-style: none; display: grid; gap: 14px; }
.o-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; }
.o-img img { width: 60px; aspect-ratio: 3 / 4; object-fit: cover; background: var(--tint); }
.o-info { display: grid; gap: 2px; font-size: 13.5px; }
.o-info strong { font-weight: 500; }
.o-info .muted { font-size: 12.5px; }
.o-price { font-weight: 600; font-variant-numeric: tabular-nums; }
.confirm-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 16px; margin-top: 32px; }
.track-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; margin: 28px 0; }
.track-form .field { margin: 0; }
.track-result { margin-top: 8px; }
.track-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ---------- content pages ---------- */
.prose-page .page-title { margin-bottom: 8px; }
.prose { margin-top: 28px; display: grid; gap: 16px; font-size: 15px; line-height: 1.7; max-width: 68ch; }
.prose h2 { font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 16px; }
.prose ul { padding-left: 20px; display: grid; gap: 6px; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-top: 10px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); text-decoration: none; line-height: 1.4; }
a.contact-card:hover { border-color: var(--ink); }
.contact-card strong { display: block; font-weight: 600; }
.contact-card .muted { font-size: 13px; }
.favs { padding-block: 32px 80px; }
.favs .grid { margin-top: 28px; }
.nf { text-align: center; display: grid; justify-items: center; gap: 12px; padding-block: 96px; }
.nf-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 14px; }

/* ---------- footer ---------- */
.ftr { margin-top: clamp(56px, 8vw, 110px); background: var(--tint-2); border-top: 1px solid var(--line); }
.ftr-news { display: grid; grid-template-columns: 1fr minmax(0, 520px); gap: 24px 48px; align-items: center; padding-block: 44px; border-bottom: 1px solid var(--line); }
.ftr-news-title { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; font-stretch: 125%; text-transform: uppercase; line-height: 1; margin-bottom: 8px; }
.news-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.form-msg { grid-column: 1 / -1; font-size: 13px; }
.form-msg:empty { display: none; }
.ftr-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-block: 44px; }
.ftr-col h3 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.ftr-col ul { list-style: none; display: grid; gap: 10px; font-size: 13.5px; }
.ftr-col a { text-decoration: none; color: var(--ink-2); }
.ftr-col a:hover { color: var(--ink); text-decoration: underline; }
.ftr-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); }
.ftr-contact .ic { width: 18px; height: 18px; margin-top: 2px; color: var(--ink); }
.socials { display: flex; gap: 6px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--ink); }
.socials a:hover { border-color: var(--ink); }
.socials .ic { width: 20px; height: 20px; }
.ftr-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 20px 28px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-2); }
.ftr-pay { display: inline-flex; align-items: center; gap: 8px; }
.ftr-pay .ic { width: 18px; height: 18px; }

/* ---------- toast & whatsapp ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 95; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 13px 18px; font-size: 13.5px; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease); max-width: calc(100vw - 32px); display: flex; gap: 14px; align-items: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast a { color: #fff; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.wa-fab {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 45; width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -10px rgba(0,0,0,.45); transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab .ic { width: 30px; height: 30px; }
.is-pdp .wa-fab { bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }

/* ---------- responsive ---------- */
@media (min-width: 901px) {
  .is-pdp .wa-fab { bottom: calc(18px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 1200px) {
  .grid { --cols: 3; }
  .rail { grid-auto-columns: calc((100% - 2 * 12px) / 3.25); }
}
@media (max-width: 900px) {
  :root { --hdr-h: 56px; }
  .only-sm { display: revert !important; }
  .hide-sm { display: none !important; }
  .dept-nav { display: none; }
  .hdr-in { gap: 8px; }
  .icon-lbl { display: none; }
  .logo-text { font-size: 18px; letter-spacing: .12em; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 36px 0; }
  .hero-collage { min-height: 0; height: 110vw; max-height: 560px; margin-inline: calc(-1 * var(--gutter)); }
  .hc { width: 50%; }
  .hc-3 { width: 44%; }
  .grid, .grid[data-cols="2"] { --cols: 2; gap: 28px 8px; }
  .rail { grid-auto-columns: calc((100% - 12px) / 2.3); gap: 8px; }
  .banners { grid-template-columns: 1fr; gap: 36px; }
  .services { grid-template-columns: 1fr 1fr; }
  .service:nth-child(3) { padding-left: 0; border-left: 0; }
  .service:nth-child(n+3) { border-top: 1px solid var(--line); }
  .pdp-grid { grid-template-columns: 1fr; padding-top: 0; gap: 20px; }
  .pdp .crumbs { display: none; }
  .pdp-gallery { margin-inline: calc(-1 * var(--gutter)); }
  .gal-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 0; scrollbar-width: none; }
  .gal-track::-webkit-scrollbar { display: none; }
  .gal-item { flex: 0 0 100%; scroll-snap-align: start; cursor: default; }
  .gal-track > :only-child { max-width: none; }
  .pdp-sticky { position: static; max-width: none; }
  .cart-layout, .co { grid-template-columns: 1fr; }
  .summary { position: static; }
  .ftr-news { grid-template-columns: 1fr; }
  .ftr-cols { grid-template-columns: 1fr 1fr; }
  .sr-cols { grid-template-columns: 1fr; gap: 20px; }
  .search-bar { height: 64px; }
  .search-bar input { font-size: 17px; }
}
@media (max-width: 600px) {
  body { font-size: 14px; }
  input:not([type="checkbox"]):not([type="radio"]), select, textarea { font-size: 16px; }
  .plp-tools { gap: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .confirm-grid { grid-template-columns: 1fr; }
  .track-form { grid-template-columns: 1fr; }
  .bag-line { grid-template-columns: 76px 1fr auto; gap: 12px; padding-inline: 16px; }
  .bag-img img { width: 76px; }
  .bag-lines--page .bag-line { grid-template-columns: 88px 1fr auto; }
  .bag-lines--page .bag-img img { width: 88px; }
  .steps .step-label { font-size: 11px; }
  .step-when { display: none; }
  .news-form { grid-template-columns: 1fr; }
  .drawer-foot--row { grid-template-columns: 1fr; }
  .ftr-cols { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .services { grid-template-columns: 1fr; }
  .service, .service + .service { padding: 18px 0; border-left: 0; }
  .service + .service { border-top: 1px solid var(--line); }
}

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

@media print {
  .announce, .hdr, .ftr, .wa-fab, .drawer, .search, .scrim, .toast, .confirm-actions { display: none !important; }
}

/* ---------- add to home screen ---------- */
.a2hs {
  position: fixed; z-index: 96; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 16px 14px;
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, .5); opacity: 0; transform: translateY(14px);
  transition: opacity .26s, transform .26s var(--ease); max-width: 460px; margin-inline: auto;
}
.a2hs.is-on { opacity: 1; transform: translateY(0); }
.a2hs[hidden] { display: none; }
.a2hs-main { display: grid; grid-template-columns: auto 1fr; gap: 12px 14px; align-items: center; }
.a2hs-icon { width: 54px; height: 54px; border-radius: 12px; flex: none; }
.a2hs-main strong { display: block; font-size: 15px; letter-spacing: -.01em; padding-right: 26px; }
.a2hs-main p { margin: 3px 0 0; font-size: 13px; color: var(--ink-2); line-height: 1.35; }
.a2hs-main .btn { grid-column: 1 / -1; justify-content: center; width: 100%; }
@media (min-width: 430px) {
  .a2hs-main { grid-template-columns: auto 1fr auto; }
  .a2hs-main .btn { grid-column: auto; width: auto; }
}
.a2hs-x { position: absolute; top: 6px; right: 6px; width: 34px; height: 34px; color: var(--ink-3); }
.a2hs-x .ic { width: 16px; height: 16px; }
.a2hs-steps { list-style: none; margin: 16px 0 2px; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; counter-reset: step; }
.a2hs-steps li { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--ink-2); }
.a2hs-steps strong { color: var(--ink); font-weight: 600; }
.a2hs-step-ic { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--tint); display: grid; place-items: center; }
.a2hs-step-ic .ic { width: 17px; height: 17px; }
.ftr-install[hidden] { display: none; }

/* the WhatsApp button would sit under the card */
.a2hs.is-on ~ .wa-fab { opacity: 0; pointer-events: none; transition: opacity .2s; }

@media (min-width: 901px) {
  .a2hs { left: auto; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); width: 400px; }
}
@media (prefers-reduced-motion: reduce) {
  .a2hs { transition: opacity .01s; transform: none; }
}
