/* hero — HERO quiet luxury storefront */
:root {
  --bg: #f8f5ec;
  --bg2: #ebe6de;
  --ink: #141414;
  --muted: #6e6860;
  --olive: #3a4330;
  --olive2: #2c3426;
  --char: #30363a;
  --card: #e8e3db;
  --line: rgba(20,20,20,.1);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --pad: clamp(1.1rem, 3.5vw, 2.75rem);
  --max: 1140px;
  --ease: cubic-bezier(.22,1,.36,1);
  /* blueprint-derived */
  --header-h: clamp(2.6rem, 7.4vw, 3.7rem);
  --title-size: clamp(2.6rem, 7.5vw, 5.2rem);
  --hero-ratio: 16 / 9;
  --cta-h: clamp(2.5rem, 5.8vw, 4.5rem);
  --badge-d: clamp(4.6rem, 8vw, 5.6rem);
  --cats-h: clamp(15rem, 40vw, 29rem);
  --quote-pad-y: clamp(2.5rem, 7vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,p { margin: 0; }
.clip-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Header — blueprint h≈43bp */
.h-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
}
.h-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: .85rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.h-logo {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.h-logo__img {
  display: block;
  height: 1.55rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
}
.h-nav {
  display: flex;
  gap: clamp(.75rem, 1.4vw, 1.35rem);
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
}
.h-nav a {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3c3934;
  position: relative;
  padding-bottom: .15rem;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.h-nav a:hover,
.h-nav a.is-active { color: var(--ink); }
.h-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--olive);
}
.h-utils {
  display: flex; gap: .75rem; align-items: center;
  flex: 0 0 auto; margin-left: auto;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .6rem 1rem; font-size: .75rem;
}
.skip-link:focus { left: var(--pad); top: .5rem; }
.h-icon {
  width: 1.55rem; height: 1.55rem;
  display: grid; place-items: center;
  font-size: .88rem; position: relative;
}
.h-cart-count {
  position: absolute; top: -3px; right: -5px;
  min-width: 14px; height: 14px; padding: 0 3px;
  border-radius: 99px; background: var(--olive); color: #fff;
  font-size: .55rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.h-menu-toggle { display: none; width: 1.55rem; height: 1.3rem; flex-direction: column; justify-content: space-between; position: relative; z-index: 35; }
.h-menu-toggle span { display: block; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.h-menu-toggle.active span:first-child { transform: translateY(5.5px) rotate(45deg); }
.h-menu-toggle.active span:last-child { transform: translateY(-5.5px) rotate(-45deg); }
.language-switcher { position: relative; }
.language-btn { font-size: .62rem; letter-spacing: .12em; color: var(--muted); }
.language-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); min-width: 112px; padding: .3rem; z-index: 50;
}
.language-switcher.active .language-dropdown { display: block; }
.lang-option {
  display: block; width: 100%; text-align: left; padding: .5rem .6rem;
  font-size: .78rem; border: 0; background: none; cursor: pointer;
}
.lang-option:hover, .lang-option.active { background: var(--bg2); }

/* Hero — title/badge/CTA over photo, content-width (not full-bleed) */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero__stage {
  position: relative;
  border-radius: .85rem;
  overflow: hidden;
  aspect-ratio: var(--hero-ratio);
  width: 100%;
  min-height: clamp(280px, 48vw, 560px);
  background: #2a2a2a;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.hero__copy {
  position: absolute;
  left: clamp(.9rem, 2.2vw, 1.5rem);
  top: clamp(.85rem, 2.4vw, 1.6rem);
  z-index: 2;
  max-width: 72%;
}
.hero__title {
  position: static;
  left: auto;
  top: auto;
  z-index: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--title-size);
  line-height: .86;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
  max-width: none;
  color: var(--ink);
}
.hero__lede {
  margin: .65rem 0 0;
  max-width: 28ch;
  font-size: clamp(.78rem, 1.35vw, .92rem);
  line-height: 1.45;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-weight: 500;
}
.hero__badge {
  position: absolute;
  top: clamp(.9rem, 2.5vw, 1.5rem);
  right: clamp(.9rem, 2.5vw, 1.5rem);
  width: var(--badge-d);
  height: var(--badge-d);
  z-index: 3;
}
.hero__badge-fabric {
  position: absolute;
  right: -32%;
  top: 18%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 3px #fff, 0 6px 16px rgba(0,0,0,.16);
  z-index: 0;
}
.hero__badge-fabric img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge-disk {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f7f3ec;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  z-index: 1;
}
.hero__badge-ring {
  width: 100%; height: 100%;
  animation: spin 14s linear infinite;
}
.hero__badge-ring text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  fill: #1a1a1a;
  text-transform: uppercase;
}
.hero__badge-star {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
  color: var(--ink);
  line-height: 1;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__cta {
  position: absolute;
  left: max(.85rem, 1.5%);
  bottom: max(1rem, 4.5%);
  z-index: 4;
  display: inline-flex; align-items: center; justify-content: center;
  height: var(--cta-h);
  padding: 0 clamp(1.45rem, 3.4vw, 2.15rem);
  min-width: clamp(12rem, 28vw, 22rem);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: clamp(.55rem, 1.05vw, .64rem);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  transition: transform .3s var(--ease), background .25s, color .25s;
}
.hero__cta:hover { transform: translateY(-2px); background: var(--ink); color: #fff; }

/* Ticker — 44bp */
.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: .7rem 0;
  margin-top: 0;
  background: color-mix(in srgb, var(--bg) 70%, #fff);
}
.ticker__track {
  display: flex; width: max-content; gap: 1.25rem; align-items: center;
  animation: ticker 28s linear infinite;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: #4a463f;
}
.ticker__track i { font-style: normal; opacity: .45; }
@keyframes ticker { to { transform: translateX(-33.333%); } }

/* Categories — 186:200 cols, h≈180bp, organic clips, ~10bp cream gutters */
.cats {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem var(--pad);
  display: grid;
  grid-template-columns: 186fr 200fr;
  grid-template-rows: 97fr 82fr;
  gap: clamp(.55rem, 1.6vw, .85rem);
  /* inner ≈ contentW × 180/405; pad 1.4rem × 2 */
  height: calc((min(100vw, 1140px) - 2 * clamp(1.1rem, 3.5vw, 2.75rem)) * 0.444 + 2.8rem);
  box-sizing: border-box;
}
.cats__olive {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  right: var(--pad);
  width: calc((100% - 2 * var(--pad) - .7rem) * (200 / 386));
  background: var(--olive);
  border-radius: 3rem 1rem 3rem 1rem;
  z-index: 0;
  pointer-events: none;
  transform: scale(.9) translateX(3%);
  transform-origin: center right;
}
.cat {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  min-height: 0;
  z-index: 1;
}
.cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.cat::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.cat span {
  position: absolute; z-index: 2;
  left: 10%; bottom: 14%;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.cat--apparel span {
  bottom: 22%;
}
.cat--home {
  grid-row: 1 / 3;
  -webkit-clip-path: url(#clip-cat-home);
  clip-path: url(#clip-cat-home);
}
.cat--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(58,67,48,.75) 0%, rgba(58,67,48,.15) 32%, transparent 52%),
    linear-gradient(115deg, rgba(20,20,20,.88) 0%, rgba(20,20,20,.4) 45%, transparent 70%);
  background-size: 100% 100%, 72% 46%;
  background-position: top left, bottom left;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.cat--apparel {
  -webkit-clip-path: url(#clip-cat-apparel);
  clip-path: url(#clip-cat-apparel);
}
.cat--accessories {
  -webkit-clip-path: url(#clip-cat-accessories);
  clip-path: url(#clip-cat-accessories);
}
.cat--apparel span,
.cat--accessories span {
  left: auto;
  right: 11%;
  text-align: right;
}
.cat:hover img { transform: scale(1.05); }

/* Section heads */
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.sec-head a,
.sec-head span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .64rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* Best sellers */
.sellers {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.4rem) var(--pad) clamp(2rem, 4.5vw, 3.2rem);
}
.sellers__row,
.ig__row { position: relative; }
.sellers__track,
.ig__track {
  display: flex; gap: .95rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: .3rem;
}
.sellers__track::-webkit-scrollbar,
.ig__track::-webkit-scrollbar { display: none; }
.pcard {
  flex: 0 0 clamp(190px, 21vw, 235px);
  scroll-snap-align: start;
}
.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: var(--card);
  border-radius: .55rem;
  overflow: hidden;
  margin-bottom: .7rem;
}
.pcard__media > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.pcard__media em {
  position: absolute; top: .55rem; right: .55rem;
  font-style: normal;
  background: #fff; color: var(--ink);
  font-size: .58rem; font-weight: 700;
  padding: .28rem .4rem; border-radius: .22rem; z-index: 2;
}
.pcard__peek {
  position: absolute; left: 50%; top: 50%;
  width: 40%; aspect-ratio: 1;
  border-radius: .35rem; overflow: hidden;
  transform: translate(-50%,-42%) scale(.85);
  opacity: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: .35s var(--ease);
  z-index: 2; pointer-events: none;
}
.pcard__peek img { width: 100%; height: 100%; object-fit: cover; }
.pcard:hover .pcard__peek { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.pcard:hover .pcard__media > img { transform: scale(1.03); }
.pcard__meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: .65rem;
}
.pcard__meta h3 {
  font-family: var(--display);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.15;
}
.pcard__meta strong {
  font-family: var(--display);
  font-weight: 600; font-size: 1.05rem;
  flex-shrink: 0;
}
.round-nav {
  position: absolute; right: -.15rem; top: 34%;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  display: grid; place-items: center; z-index: 3;
  transition: transform .25s var(--ease);
}
.round-nav:hover { transform: scale(1.06); }

/* Quote — charcoal, ~90bp */
.quote {
  background: var(--char);
  color: #f4f0ea;
  text-align: center;
  padding: var(--quote-pad-y) var(--pad);
}
.quote p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3.1vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 auto;
}

/* Values — ~85bp */
.values {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3rem) var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.value svg,
.value i {
  width: 2rem; height: 2rem; margin-bottom: .85rem; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.value h3 {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .45rem;
}
.value p { color: var(--muted); font-size: .86rem; max-width: 30ch; }

/* Featured — 55/45 split (222/405) */
.featured {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(2rem, 4.5vw, 3.2rem);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}
.featured__media {
  overflow: hidden;
  aspect-ratio: 221 / 140;
  background: var(--card);
  -webkit-clip-path: url(#clip-featured);
  clip-path: url(#clip-featured);
}
.featured__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.featured__copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.3vw, 2.55rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.featured__price {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: .65rem 0 .9rem;
}
.featured__text {
  color: var(--muted);
  max-width: 34ch;
  margin: 0 0 1.35rem;
  font-size: .9rem;
}
.featured__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.55rem;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .25s, transform .25s var(--ease);
}
.featured__cta:hover { background: var(--olive2); transform: translateY(-2px); }

/* Instagram */
.ig {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(2.6rem, 5.5vw, 3.8rem);
}
.ig__track a {
  flex: 0 0 clamp(155px, 17vw, 200px);
  aspect-ratio: 1;
  border-radius: .55rem;
  overflow: hidden;
  background: var(--card);
  scroll-snap-align: start;
}
.ig__track a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.ig__track a:hover img { transform: scale(1.05); }
.ig__row .round-nav { top: 50%; transform: translateY(-50%); }
.ig__row .round-nav:hover { transform: translateY(-50%) scale(1.06); }

/* Footer */
.h-footer {
  background: var(--char);
  color: #c9c4bb;
  padding: clamp(2.6rem, 5.5vw, 3.8rem) var(--pad) 1.5rem;
}
.h-footer__grid {
  max-width: var(--max);
  margin: 0 auto 2.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,.72fr)) minmax(240px, 1.5fr);
  gap: 1.5rem 1.7rem;
}
.h-footer__col h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 .8rem;
}
.h-footer__col a {
  display: block;
  font-size: .84rem;
  color: #9e988e;
  padding: .22rem 0;
}
.h-footer__col a:hover { color: #fff; }
.h-footer__blurb {
  color: #9a948c;
  font-size: .82rem;
  line-height: 1.5;
  margin: 0 0 .85rem;
  max-width: 28ch;
}
.h-footer__news-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .95rem;
}
.h-news-form {
  display: flex; align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: .36rem .36rem .36rem 1.1rem;
}
.h-news-form input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: .8rem; color: var(--ink); min-width: 0;
}
.h-news-form button {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.h-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .7rem; color: #817c74;
}
.h-footer__social { display: flex; gap: .85rem; }

/* Product cards on home */
.pcard { position: relative; }
.pcard__link { display: block; color: inherit; }
.pcard__cart {
  position: absolute; right: .55rem; bottom: 3.1rem; z-index: 2;
  width: 2.1rem; height: 2.1rem; padding: 0; border-radius: 50%;
  background: var(--char); color: #fff; font-size: .7rem;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.pcard:hover .pcard__cart,
.pcard:focus-within .pcard__cart { opacity: 1; transform: none; }
.featured__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.featured__cta--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}

/* Inner pages */
.container { max-width: var(--max); margin: 0 auto; padding: 2rem var(--pad) 3.5rem; }
.page-header { padding: 2.2rem 0 .5rem; }
.page-header .container,
.catalog-section .container,
.about-section .container,
.contact-section .container,
.cart-section .container,
.product-details .container,
.faq-section .container,
.delivery-section .container,
.related-products .container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: .35rem;
}
.breadcrumbs { font-size: .82rem; color: var(--muted); }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }

.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
}
.filters-sidebar {
  background: color-mix(in srgb, #fff 55%, var(--bg2));
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.filters-sidebar h3,
.filters-sidebar h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: .65rem;
}
.filter-group { margin-bottom: 1.15rem; }
.filter-checkbox {
  display: flex; gap: .5rem; align-items: center;
  font-size: .85rem; margin-bottom: .45rem; cursor: pointer; color: var(--muted);
}
.price-buttons { display: flex; flex-direction: column; gap: .35rem; }
.price-btn {
  text-align: left; padding: .55rem .7rem; border-radius: .65rem;
  font-size: .78rem; color: var(--muted); border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.price-btn:hover, .price-btn.active {
  background: var(--card); color: var(--ink); border-color: var(--line);
}
.color-options { display: flex; gap: .45rem; flex-wrap: wrap; }
.color-option {
  width: 1.55rem; height: 1.55rem; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s, border-color .15s;
}
.color-option.active, .color-option:hover { border-color: var(--ink); transform: scale(1.06); }

.catalog-toolbar {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .75rem; margin-bottom: 1.25rem;
}
.catalog-search {
  display: flex; align-items: center; gap: .4rem; flex: 1 1 200px; max-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .2rem .2rem .2rem .9rem;
}
.catalog-search input {
  flex: 1; border: 0; background: transparent; font: inherit; font-size: .85rem; outline: none; min-width: 0;
}
.sort-options { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--muted); }
.sort-select {
  border: 1px solid var(--line); border-radius: .65rem; padding: .45rem .7rem;
  font: inherit; font-size: .82rem; background: #fff; cursor: pointer;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.product-card { display: flex; flex-direction: column; gap: .55rem; }
.product-image, .category-image {
  aspect-ratio: 1; border-radius: .85rem; overflow: hidden; background: var(--card);
  position: relative;
}
.product-image img, .category-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg2), var(--card));
}
.product-image-placeholder-lg { min-height: 22rem; }
.product-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(20,20,20,.28); opacity: 0; transition: opacity .25s var(--ease);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-name {
  font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: .02em;
}
.product-price { font-weight: 600; font-size: .9rem; }
.catalog-empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1.5rem;
  background: color-mix(in srgb, #fff 50%, var(--bg2)); border-radius: 1rem;
}
.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 2rem; }
.page-link {
  display: grid; place-items: center; min-width: 2.1rem; height: 2.1rem;
  border-radius: .55rem; font-size: .82rem; background: #fff; border: 1px solid var(--line);
}
.page-link:hover, .page-link.active { background: var(--char); color: #fff; border-color: var(--char); }
.page-link.disabled { opacity: .35; pointer-events: none; }

.btn, .btn-primary, .btn-add-cart, .btn-small, .btn-large, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .82rem 1.3rem; border-radius: 999px; background: var(--char); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: 0; cursor: pointer; transition: filter .2s, transform .2s;
}
.btn-secondary {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-small { padding: .55rem .9rem; font-size: .58rem; }
.btn-large { padding: .95rem 1.5rem; font-size: .7rem; width: 100%; max-width: 20rem; }
.btn:hover, .btn-primary:hover, .btn-add-cart:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.about-section, .contact-section, .faq-section, .delivery-section, .cart-section, .product-details {
  padding-bottom: 3.5rem;
}
.about-intro h2, .about-text h3, .section-title {
  font-family: var(--display); font-weight: 700; margin-bottom: .65rem;
}
.about-intro p, .about-text p, .delivery-content p, .faq-answer p {
  color: var(--muted); max-width: 62ch; margin-bottom: 1rem; line-height: 1.65;
}
.about-image {
  margin: 1.4rem 0; border-radius: 1rem; overflow: hidden; max-height: 26rem;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.values-list { padding-left: 1.1rem; list-style: disc; color: var(--muted); }
.values-list li { margin-bottom: .4rem; }

/* About page — quiet luxury layout */
.about-page-header .about-kicker {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: .55rem;
}
.about-page-header h1 {
  max-width: 18ch;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.about-hero__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.about-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}
.about-cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.about-hero__media {
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--card);
  box-shadow: 0 18px 40px rgba(20, 20, 20, .06);
}
.about-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat {
  text-align: center;
  padding: .5rem;
}
.about-stat__value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--olive);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.about-stat__label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.about-card {
  padding: 1.45rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, #fff 55%, var(--bg2));
}
.about-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: .55rem;
}
.about-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  font-size: .95rem;
}
.about-values {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.about-values > h3,
.about-features > h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.about-values__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-values__list li {
  padding: 1rem 1.15rem;
  border-radius: .85rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.45;
}
.about-features { margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.about-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.about-feature {
  padding: 1.25rem;
  border-radius: .9rem;
  background: color-mix(in srgb, #fff 50%, var(--bg2));
  border: 1px solid var(--line);
}
.about-feature i {
  color: var(--olive);
  font-size: 1.1rem;
  margin-bottom: .55rem;
  display: block;
}
.about-feature h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: .35rem;
}
.about-feature p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}
.about-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.75rem;
  border-radius: 1.1rem;
  background: var(--char);
  color: #f4f1ea;
}
.about-banner h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: .35rem;
  color: #fff;
}
.about-banner p {
  margin: 0;
  color: rgba(244, 241, 234, .72);
  max-width: 42ch;
  font-size: .92rem;
}
.about-banner__actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.about-banner .btn-primary {
  background: #f4f1ea;
  color: var(--ink);
}
.about-banner .btn-secondary {
  border-color: rgba(244, 241, 234, .35);
  color: #f4f1ea;
}

.product-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; margin-bottom: 2rem;
}
.product-images { display: flex; flex-direction: column; gap: .75rem; }
.main-image {
  aspect-ratio: 1; border-radius: 1rem; overflow: hidden; background: var(--card);
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail-images { display: flex; gap: .55rem; flex-wrap: wrap; }
.thumbnail {
  width: 4.2rem; height: 4.2rem; object-fit: cover; border-radius: .65rem;
  cursor: pointer; border: 2px solid transparent;
}
.thumbnail.active, .thumbnail:hover { border-color: var(--ink); }
.product-info-detail h1 {
  font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700; margin-bottom: .65rem;
}
.product-rating { display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem; }
.stars { color: var(--olive); font-size: .85rem; }
.rating-text { font-size: .82rem; color: var(--muted); }
.product-price-large {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; flex-wrap: wrap;
}
.current-price { font-size: 1.45rem; font-weight: 700; }
.old-price { text-decoration: line-through; color: var(--muted); }
.discount {
  background: var(--olive); color: #fff; padding: .2rem .55rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
}
.product-description { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.65; }
.product-options { margin-bottom: 1.1rem; }
.product-options h3 { font-family: var(--display); font-size: 1rem; margin-bottom: .55rem; }
.color-selector { display: flex; gap: .55rem; flex-wrap: wrap; }
.color-option-large {
  width: 2rem; height: 2rem; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent;
}
.color-option-large.active, .color-option-large:hover { border-color: var(--ink); }
.quantity-selector { display: flex; align-items: center; gap: .45rem; }
.qty-btn {
  width: 2.1rem; height: 2.1rem; border-radius: .55rem;
  background: #fff; border: 1px solid var(--line); font-size: 1rem;
}
.qty-btn:hover { background: var(--card); }
.qty-input {
  width: 3.2rem; text-align: center; border: 1px solid var(--line);
  border-radius: .55rem; padding: .45rem; font: inherit;
}
.product-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; margin-top: 1.25rem;
}
.feature-item-small {
  display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--muted);
}
.product-tabs { margin-top: 1.75rem; }
.tab-buttons {
  display: flex; gap: .35rem; border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem; overflow-x: auto;
}
.tab-btn {
  padding: .55rem .9rem; font-size: .82rem; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap;
}
.tab-btn.active { color: var(--ink); border-bottom-color: var(--olive); }
.tab-content { display: none; color: var(--muted); line-height: 1.65; }
.tab-content.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td {
  padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .88rem;
}
.specs-table td:first-child { color: var(--muted); width: 40%; }
.related-products { padding: 2.5rem 0 3.5rem; }
.section-title { font-size: 1.55rem; }

.cart-layout {
  display: grid; grid-template-columns: 1fr minmax(240px, 300px);
  gap: 1.75rem; align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: .9rem; }
.cart-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto auto auto;
  gap: 1rem; align-items: center; padding: 1rem;
  background: color-mix(in srgb, #fff 60%, var(--bg2));
  border: 1px solid var(--line); border-radius: .9rem;
}
.cart-item-image {
  width: 5.5rem; height: 5.5rem; border-radius: .65rem; overflow: hidden; background: var(--card);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h3 { font-size: .92rem; margin-bottom: .2rem; }
.cart-item-details { font-size: .78rem; color: var(--muted); }
.cart-item-price { font-weight: 600; font-size: .88rem; }
.cart-item-remove { color: var(--muted); padding: .4rem; }
.cart-item-remove:hover { color: #b33; }
.cart-summary {
  position: sticky; top: calc(var(--header-h) + 1rem);
  padding: 1.35rem; background: color-mix(in srgb, #fff 55%, var(--bg2));
  border: 1px solid var(--line); border-radius: 1rem;
}
.cart-summary h2 { font-family: var(--display); font-size: 1.25rem; margin-bottom: .9rem; }
.summary-row {
  display: flex; justify-content: space-between; padding: .55rem 0;
  font-size: .88rem; border-bottom: 1px solid var(--line);
}
.summary-row.total-row { font-weight: 700; font-size: 1.02rem; border-bottom: 0; }
.empty-cart {
  text-align: center; padding: 3rem 1.5rem;
  background: color-mix(in srgb, #fff 50%, var(--bg2)); border-radius: 1rem;
}
.empty-cart p { color: var(--muted); margin-bottom: 1rem; }

.contact-form, .checkout-form {
  display: flex; flex-direction: column; gap: .85rem; max-width: 32rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--line); border-radius: .65rem; padding: .7rem .85rem;
  font: inherit; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 2px solid color-mix(in srgb, var(--olive) 35%, transparent); border-color: var(--olive);
}
.contact-info-grid, .delivery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-card, .delivery-card {
  padding: 1.15rem; border-radius: .9rem; border: 1px solid var(--line);
  background: color-mix(in srgb, #fff 55%, var(--bg2));
}
.contact-card h3, .delivery-card h3 { font-family: var(--display); margin-bottom: .4rem; }
.contact-card p, .delivery-card p { color: var(--muted); margin: 0; font-size: .9rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info h2 { font-family: var(--display); font-size: 1.6rem; margin-bottom: .65rem; }
.contact-info > p { color: var(--muted); margin-bottom: 1.5rem; max-width: 42ch; }
.contact-item {
  display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.15rem;
}
.contact-icon {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--card); color: var(--olive);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-details h3 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-details p { margin: 0; font-weight: 600; }
.contact-hours { font-size: .78rem; color: var(--muted); }
.contact-form-wrapper h2 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 1rem; }

.faq-list { max-width: 46rem; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: .85rem;
  overflow: hidden;
  margin-bottom: .75rem;
  background: color-mix(in srgb, #fff 55%, var(--bg2));
}
.faq-question {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 1.15rem; cursor: pointer;
  font-family: var(--display); font-size: 1.05rem; font-weight: 700;
  background: transparent;
}
.faq-question h3 { margin: 0; font: inherit; flex: 1; }
.faq-icon { color: var(--muted); transition: transform .25s var(--ease); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.15rem;
  color: var(--muted); line-height: 1.65;
}
.faq-answer.is-open { padding-bottom: 1rem; }

.features { padding: 2.8rem var(--pad); }
.features-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1.8rem;
}
.feature-item { text-align: center; }
.feature-item i { color: var(--olive); margin-bottom: .55rem; }
.feature-item h3 { font-family: var(--display); text-transform: uppercase; margin-bottom: .35rem; }
.feature-item p { color: var(--muted); margin: 0; }
.notification-container { position: fixed; top: 1rem; right: 1rem; z-index: 100; }
.h-toast {
  background: #fff; border: 1px solid var(--line); border-radius: .75rem;
  padding: .85rem 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.08);
  font-size: .85rem; margin-bottom: .5rem;
}

@media (max-width: 920px) {
  .h-header__inner { gap: .75rem; }
  .h-menu-toggle { display: flex; order: -1; }
  .h-logo { margin-right: auto; }
  .h-nav {
    display: none; position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; z-index: 30;
  }
  .h-nav.active { display: flex; }
  .h-nav a { font-size: .85rem; letter-spacing: .2em; }
  .hero__copy { max-width: 85%; }
  .hero__title { max-width: none; font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .hero__badge { width: 4.2rem; height: 4.2rem; }
  .hero__stage {
    aspect-ratio: 16 / 9;
    min-height: clamp(240px, 55vw, 420px);
  }
  .hero__cta { left: .85rem; bottom: .85rem; height: 2.5rem; padding: 0 1.1rem; min-width: 0; }
  .cats {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: .75rem;
  }
  .cats__olive { display: none; }
  .cat--home, .cat--apparel, .cat--accessories {
    grid-row: auto;
    min-height: 160px;
    -webkit-clip-path: none;
    clip-path: none;
    border-radius: 2.4rem .9rem 2.4rem .9rem;
  }
  .cat--accessories { border-radius: .9rem 2.4rem .9rem 2.4rem; }
  .values { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured__media {
    aspect-ratio: 16/11;
    -webkit-clip-path: none;
    clip-path: none;
    border-radius: 1rem;
  }
  .h-footer__grid { grid-template-columns: 1fr 1fr; }
  .h-footer__news { grid-column: 1 / -1; }
  .sellers__row .round-nav { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item {
    grid-template-columns: 4.5rem 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img total"
      "img remove";
  }
  .cart-item-image { grid-area: img; width: 4.5rem; height: 4.5rem; }
  .cart-item-info { grid-area: info; }
  .cart-item-quantity { grid-area: qty; }
  .cart-item-total { grid-area: total; }
  .cart-item-remove { grid-area: remove; justify-self: start; }
  .pcard__cart { opacity: 1; transform: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__media { aspect-ratio: 16 / 11; max-height: 22rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .h-footer__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track, .hero__badge-ring { animation: none; }
}
