/* =====================================================================
   Luxury & Elegance by Ali — COMPACT LUXURY
   A private boutique showroom, not a full-bleed fashion campaign.

   Governing rule: every vertical band has a budget. The design spends its
   quality on typography, photography and proportion rather than on height.
   Fixed heights are declared where the brief sets them.

     01  Tokens
     02  Reset & base
     03  Typography
     04  Buttons & links
     05  Layout
     06  Promo bar         28px
     07  Header            66px
     08  Hero              460px
     09  Category bar      84px
     10  Section headings
     11  Product cards
     12  Trust strip       58px
     13  Editorial banner  200px
     14  Newsletter        90px
     15  Footer
     16  Shop
     17  Product detail
     18  Cart & checkout
     19  Forms & misc
     20  Overlays
     21  Motion
     22  Responsive
   ===================================================================== */


/* ------------------------------------------------------------------ */
/* 01  Tokens                                                          */
/* ------------------------------------------------------------------ */
:root {
  --ivory:        #faf8f4;
  --ivory-deep:   #f2ede4;
  --cream:        #f6f2ea;
  --white:        #ffffff;
  --ink:          #14120f;
  --charcoal:     #2a2723;
  --muted:        #56504a;
  --muted-light:  #857d73;

  /* Champagne. Small labels, thin rules, active states — nothing more. */
  --gold:         #a3814f;
  --gold-light:   #c2a273;

  --line:         rgba(20, 18, 15, 0.13);
  --line-soft:    rgba(20, 18, 15, 0.07);
  --line-dark:    rgba(255, 255, 255, 0.14);

  --sale:         #8a2f2f;

  --serif:  "Cormorant Garamond", "Didot", Georgia, "Times New Roman", serif;
  --sans:   "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Parisienne", "Snell Roundhand", cursive;

  /* Fixed band heights from the brief */
  --promo-h:     28px;
  --header-h:    66px;
  --hero-h:      460px;
  --catbar-h:    84px;
  --trust-h:     58px;
  --editorial-h: 200px;
  --news-h:      90px;

  /* Sections are compact by default; nothing gets a full screen. */
  --section-y: clamp(26px, 2.6vw, 40px);

  /* Wide editorial layout — horizontal space does the work vertical used to. */
  --gutter: clamp(16px, 3vw, 40px);
  --maxw:   1800px;

  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      0.45s;
  --dur-fast: 0.24s;
}


/* ------------------------------------------------------------------ */
/* 02  Reset & base                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; height: auto; display: block; }
svg { display: block; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }
::selection { background: #ece0cc; color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 18px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* ------------------------------------------------------------------ */
/* 03  Typography                                                      */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}

.h1 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }

.script { font-family: var(--script); color: var(--gold); font-weight: 400; }

/* The small uppercase label. Restrained tracking so it still reads. */
.eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 400;
}
.eyebrow--muted { color: var(--muted-light); }

.lede { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 42ch; }

p { margin: 0 0 0.9em; }
p:last-child { margin-bottom: 0; }
.text-center { text-align: center; }
.rule { height: 1px; background: var(--line); border: 0; }


/* ------------------------------------------------------------------ */
/* 04  Buttons & links                                                 */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn:hover, .btn:focus-visible { background: var(--charcoal); border-color: var(--charcoal); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--ink); color: var(--white); }

.btn--line { background: transparent; color: var(--ink); border-color: var(--line); padding: 10px 20px; }
.btn--line:hover { border-color: var(--ink); }

.btn--sm    { padding: 9px 18px; font-size: 10px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* The small gold "VIEW ALL →" beside section headings. */
.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--dur-fast) var(--ease);
}
.link-more:hover { gap: 12px; }

.link-underline {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid currentColor;
}


/* ------------------------------------------------------------------ */
/* 05  Layout                                                          */
/* ------------------------------------------------------------------ */
/* 94% of the viewport — wide, so horizontal space saves vertical. */
.wrap {
  width: 94%;
  max-width: var(--maxw);
  margin-inline: auto;
}
.wrap--narrow { max-width: 980px; }

.section { padding-block: var(--section-y); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--flush { padding-block: 0; }


/* ------------------------------------------------------------------ */
/* 06  Promo bar — 28px                                                */
/* ------------------------------------------------------------------ */
.promo {
  height: var(--promo-h);
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.promo p { margin: 0; }
.promo strong { color: var(--gold-light); font-weight: 400; }
.promo__close {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.5); line-height: 1; padding: 4px;
  transition: color var(--dur-fast) var(--ease);
}
.promo__close:hover { color: #fff; }


/* ------------------------------------------------------------------ */
/* 07  Header — 66px, sticky                                           */
/* ------------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color var(--dur) var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }

.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand { line-height: 1; }
.brand__main {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.brand__sub {
  display: block;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 3px;
}

/* Centre nav, no boxes — letterforms and a hairline. */
.nav { display: flex; justify-content: center; gap: clamp(14px, 1.6vw, 26px); }
.nav__link {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  position: relative;
  display: grid; place-items: center;
  width: 22px; height: 22px;
  color: var(--charcoal);
  transition: color var(--dur-fast) var(--ease);
}
.icon-btn:hover { color: var(--gold); }

.cart-count {
  position: absolute; top: -5px; right: -7px;
  min-width: 15px; height: 15px; padding: 0 3px;
  background: var(--gold); color: #fff;
  border-radius: 999px;
  font-size: 9px; line-height: 15px; text-align: center;
}

.burger { display: none; width: 22px; height: 15px; position: relative; }
.burger span {
  position: absolute; left: 0; width: 100%; height: 1px; background: var(--ink);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 7px; }
.burger span:nth-child(3) { top: 14px; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ------------------------------------------------------------------ */
/* 08  Hero — 460px, 42/58                                             */
/* ------------------------------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  height: var(--hero-h);
  background: var(--cream);
}
.hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(24px, 3.4vw, 62px);
}
.hero__title { font-size: clamp(2.4rem, 3.6vw, 3.4rem); line-height: 1.02; margin-bottom: 2px; }
.hero__script { display: block; font-size: clamp(1.7rem, 2.4vw, 2.2rem); margin: 0 0 16px 4px; }
.hero__text { margin-bottom: 22px; max-width: 30ch; font-size: 14px; }
.hero__cta { align-self: flex-start; }

.hero__media { position: relative; overflow: hidden; background: var(--ivory-deep); }
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}


/* ------------------------------------------------------------------ */
/* 09  Category bar — 84px                                             */
/* ------------------------------------------------------------------ */
/* A boutique directory strip: thumbnail, name, arrow, hairline divider.
   Deliberately not four large picture cards. */
.catbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--catbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.catbar__item {
  display: flex; align-items: center; gap: 14px;
  padding-inline: clamp(14px, 2vw, 34px);
  border-left: 1px solid var(--line-soft);
  transition: background var(--dur-fast) var(--ease);
}
.catbar__item:first-child { border-left: 0; }
.catbar__item:hover { background: var(--cream); }

.catbar__thumb { width: 54px; height: 54px; flex-shrink: 0; overflow: hidden; background: var(--ivory-deep); }
.catbar__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.catbar__item:hover .catbar__thumb img { transform: scale(1.08); }

.catbar__name {
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 9px;
}
.catbar__name .arrow { color: var(--gold); transition: transform var(--dur-fast) var(--ease); }
.catbar__item:hover .arrow { transform: translateX(4px); }


/* ------------------------------------------------------------------ */
/* 10  Section headings                                                */
/* ------------------------------------------------------------------ */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 16px;
}
.sec-head__title { font-size: clamp(1.4rem, 2vw, 1.85rem); }
.sec-head .eyebrow { margin-bottom: 4px; }


/* ------------------------------------------------------------------ */
/* 11  Product cards — barely a card at all                            */
/* ------------------------------------------------------------------ */
.grid-products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.4vw, 24px) clamp(12px, 1.2vw, 20px);
}
.grid-products--4 { grid-template-columns: repeat(4, 1fr); }
.grid-products--6 { grid-template-columns: repeat(6, 1fr); }

.card { position: relative; display: flex; flex-direction: column; }

.card__media {
  position: relative;
  aspect-ratio: 5 / 4.2;
  overflow: hidden;
  background: var(--ivory-deep);
  margin-bottom: 10px;
}
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.card:hover .card__img { transform: scale(1.045); }

/* Small understated label, not a giant coloured badge. */
.badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(20, 18, 15, 0.86);
  color: #fff;
  font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px;
}
.badge--sale     { background: rgba(138, 47, 47, 0.9); }
.badge--new      { background: rgba(163, 129, 79, 0.92); }
.badge--vintage  { background: rgba(20, 18, 15, 0.86); }
.badge--like-new { background: rgba(42, 39, 35, 0.86); }
.badge--sold     { background: rgba(86, 80, 74, 0.9); left: auto; right: 8px; }

/* Wishlist heart, top right, fades in on hover. */
.card__wish {
  position: absolute; top: 6px; right: 6px; z-index: 3;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: rgba(250, 248, 244, 0.9);
  color: var(--charcoal);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.card:hover .card__wish, .card:focus-within .card__wish { opacity: 1; }
.card__wish:hover, .card__wish.is-on { color: var(--gold); }

/* "ADD TO BAG +" slides up from the image edge — a thin bar, not an overlay. */
.card__add {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 9px 6px;
  background: rgba(20, 18, 15, 0.9);
  color: #fff;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease-out), background var(--dur-fast) var(--ease);
}
.card:hover .card__add, .card:focus-within .card__add { transform: translateY(0); }
.card__add:hover { background: var(--gold); }

.card__brand { font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.card__name  { font-size: 13px; line-height: 1.35; margin-bottom: 5px; color: var(--ink); }
.card:hover .card__name { text-decoration: underline; text-underline-offset: 3px; }

.card__prices { display: flex; align-items: baseline; gap: 7px; }
.price      { font-size: 13.5px; }
.price--now { color: var(--sale); }
.price--was { font-size: 11.5px; color: var(--muted-light); text-decoration: line-through; }

.card__meta { font-size: 10.5px; color: var(--muted-light); margin-top: 3px; }


/* ------------------------------------------------------------------ */
/* 12  Trust strip — 58px                                              */
/* ------------------------------------------------------------------ */
.trust {
  height: var(--trust-h);
  background: var(--ink);
  color: rgba(255,255,255,0.86);
  display: flex; align-items: center;
}
.trust__row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.trust__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: 0.17em; text-transform: uppercase;
}
.trust__item svg { width: 15px; height: 15px; stroke-width: 1.1; color: var(--gold-light); flex-shrink: 0; }
.trust__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.28); flex-shrink: 0; }


/* ------------------------------------------------------------------ */
/* 13  Editorial banner — 200px                                        */
/* ------------------------------------------------------------------ */
.editorial {
  display: grid;
  grid-template-columns: 42% 58%;
  height: var(--editorial-h);
  background: var(--cream);
}
.editorial__copy { display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(24px, 3.4vw, 62px); }
.editorial__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.editorial__text { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.editorial__media { position: relative; overflow: hidden; background: var(--ivory-deep); }
.editorial__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }


/* ------------------------------------------------------------------ */
/* 14  Newsletter — 90px, one line                                     */
/* ------------------------------------------------------------------ */
.newsletter {
  min-height: var(--news-h);
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center;
}
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; }
.newsletter__title { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 3px; }
.newsletter__copy  { font-size: 12.5px; color: var(--muted-light); margin: 0; }
.newsletter__form  { display: flex; align-items: center; gap: 14px; flex: 0 1 560px; }
.newsletter__form input {
  flex: 1; padding: 11px 14px;
  border: 1px solid var(--line); background: var(--ivory); font-size: 13px;
}
.newsletter__form input:focus { outline: 0; border-color: var(--gold); }
.newsletter__form button {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.newsletter__form button:hover { color: var(--gold); }


/* ------------------------------------------------------------------ */
/* 15  Footer                                                          */
/* ------------------------------------------------------------------ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: 30px; }
.footer a { color: rgba(255,255,255,0.7); transition: color var(--dur-fast) var(--ease); }
.footer a:hover { color: var(--gold-light); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 26px;
}
.footer__brand .brand__main { color: #fff; font-size: 17px; }
.footer__brand .brand__sub  { color: rgba(255,255,255,0.45); }
.footer__tag { margin: 12px 0 0; font-size: 12.5px; max-width: 26ch; line-height: 1.5; }

.footer__title { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.footer__list li { margin-bottom: 7px; font-size: 12.5px; }

.footer__social { display: flex; gap: 14px; margin-top: 16px; }
.footer__social a { color: rgba(255,255,255,0.6); }
.footer__social a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 14px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: rgba(255,255,255,0.45);
}
.footer__policies { display: flex; gap: 18px; }


/* ------------------------------------------------------------------ */
/* 16  Shop                                                            */
/* ------------------------------------------------------------------ */
.page-head { padding-block: 22px 14px; border-bottom: 1px solid var(--line-soft); }
.page-head__title { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.page-head__text  { color: var(--muted); font-size: 13.5px; margin-top: 5px; max-width: 60ch; }

.breadcrumb { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); padding-block: 12px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin-inline: 7px; color: var(--line); }

.shop { display: grid; grid-template-columns: 190px 1fr; gap: 30px; align-items: start; padding-block: 18px var(--section-y); }

.filters { position: sticky; top: calc(var(--header-h) + 12px); }
.filters__group { border-top: 1px solid var(--line-soft); padding-block: 14px; }
.filters__group:first-child { border-top: 0; padding-top: 0; }
.filters__legend { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; color: var(--muted); }
.filters__list li { margin-bottom: 7px; }
.filters__list label { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); cursor: pointer; }
.filters__list label:hover { color: var(--ink); }
.filters__list input { accent-color: var(--gold); width: 13px; height: 13px; }
.filters__price { display: flex; align-items: center; gap: 8px; }
.filters__price input { width: 100%; padding: 7px 9px; border: 1px solid var(--line); background: var(--white); font-size: 12px; }

.shop__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.shop__count { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); }
.shop__sort  { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); }
.shop__sort select {
  border: 0; border-bottom: 1px solid var(--line); background: none;
  padding: 4px 18px 4px 2px; font-size: 12px; color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6'%3E%3Cpath d='M1 1l3.5 3.5L8 1' fill='none' stroke='%2314120f'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
.shop__sort select:focus { outline: 0; border-bottom-color: var(--gold); }
.filters-toggle { display: none; }

.empty { text-align: center; padding-block: 60px; }
.empty__title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 8px; }
.empty p { color: var(--muted); margin-bottom: 18px; }

.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 28px; }
.pagination a, .pagination span {
  min-width: 32px; height: 32px; display: grid; place-items: center;
  border: 1px solid var(--line); font-size: 12px;
}
.pagination a:hover { border-color: var(--ink); }
.pagination .is-current { background: var(--ink); color: #fff; border-color: var(--ink); }


/* ------------------------------------------------------------------ */
/* 17  Product detail                                                  */
/* ------------------------------------------------------------------ */
.pdp { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(22px, 3vw, 48px); align-items: start; padding-block: 14px var(--section-y); }

.gallery__main { position: relative; aspect-ratio: 4/3.6; overflow: hidden; background: var(--ivory-deep); cursor: zoom-in; margin-bottom: 10px; }
.gallery__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.gallery__main.is-zoomed img { transform: scale(2); transform-origin: var(--zx, 50%) var(--zy, 50%); }

.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.gallery__thumb { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ivory-deep); border: 1px solid transparent; opacity: 0.6; }
.gallery__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { opacity: 1; }
.gallery__thumb.is-active { border-color: var(--ink); opacity: 1; }

.pdp__brand  { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.pdp__title  { font-size: clamp(1.4rem, 2.1vw, 1.9rem); line-height: 1.15; margin-bottom: 10px; }
.pdp__prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.pdp__price  { font-size: 21px; }
.pdp__was    { font-size: 14px; color: var(--muted-light); text-decoration: line-through; }
.pdp__save   { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sale); border: 1px solid currentColor; padding: 3px 7px; }

.pdp__cond { display: flex; gap: 26px; flex-wrap: wrap; padding-block: 12px; border-block: 1px solid var(--line-soft); margin-bottom: 14px; }
.pdp__cond dt { font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 3px; }
.pdp__cond dd { margin: 0; font-size: 13px; }

.pdp__desc { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.pdp__actions { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.pdp__row { display: flex; gap: 9px; }

.qty { display: flex; align-items: center; border: 1px solid var(--ink); flex-shrink: 0; }
.qty button { width: 34px; min-height: 42px; display: grid; place-items: center; }
.qty button:hover { background: var(--ink); color: #fff; }
.qty input { width: 38px; text-align: center; border: 0; background: none; font-size: 13px; }
.qty input:focus { outline: 0; }

.wishlist-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.wishlist-btn:hover, .wishlist-btn.is-on { color: var(--gold); }

.reassure { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 12px 14px; background: var(--cream); margin-bottom: 14px; }
.reassure div { display: flex; gap: 8px; align-items: center; font-size: 11.5px; color: var(--muted); }
.reassure svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.acc { border-top: 1px solid var(--line-soft); }
.acc details { border-bottom: 1px solid var(--line-soft); }
.acc summary {
  list-style: none; cursor: pointer; padding: 12px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--gold); font-size: 14px; }
.acc details[open] summary::after { content: "–"; }
.acc__body { padding-bottom: 14px; color: var(--muted); font-size: 13px; }
.acc__body dl { display: grid; grid-template-columns: 110px 1fr; gap: 6px 14px; margin: 0; }
.acc__body dt { color: var(--ink); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.acc__body dd { margin: 0; }


/* ------------------------------------------------------------------ */
/* 18  Cart & checkout                                                 */
/* ------------------------------------------------------------------ */
.cart-layout   { display: grid; grid-template-columns: 1.7fr 1fr; gap: 32px; align-items: start; padding-block: 18px var(--section-y); }
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; padding-block: 18px var(--section-y); }

.cart-row { display: grid; grid-template-columns: 78px 1fr auto; gap: 16px; padding-block: 14px; border-bottom: 1px solid var(--line-soft); align-items: center; }
.cart-row__media { aspect-ratio: 5/4.2; overflow: hidden; background: var(--ivory-deep); position: relative; }
.cart-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-row__name { font-size: 13.5px; margin-bottom: 3px; display: block; }
.cart-row__meta { font-size: 11.5px; color: var(--muted-light); }
.cart-row__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.cart-row__remove { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); }
.cart-row__remove:hover { color: var(--sale); }

.summary { background: var(--white); border: 1px solid var(--line-soft); padding: 22px; position: sticky; top: calc(var(--header-h) + 12px); }
.summary__title { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 14px; }
.summary__row { display: flex; justify-content: space-between; padding-block: 7px; font-size: 13px; }
.summary__row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 11px; font-size: 15px; }
.summary__row--discount { color: var(--gold); }
.summary__note { font-size: 11px; color: var(--muted-light); margin-top: 10px; }

.coupon { display: flex; gap: 7px; margin-block: 12px; }
.coupon input { flex: 1; padding: 9px 11px; border: 1px solid var(--line); background: var(--ivory); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.coupon input:focus { outline: 0; border-color: var(--gold); }


/* ------------------------------------------------------------------ */
/* 19  Forms & misc                                                    */
/* ------------------------------------------------------------------ */
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line); background: var(--white); font-size: 13.5px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); }
.field textarea { min-height: 110px; resize: vertical; }
.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.form-narrow { max-width: 400px; margin-inline: auto; }
.fieldset-title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line-soft); }

.flash { padding: 10px 14px; margin-bottom: 14px; font-size: 12.5px; border: 1px solid; }
.flash--success { background: #f3f6f2; border-color: #cbdcc6; color: #3d6b33; }
.flash--error   { background: #fbf2f2; border-color: #e3c6c6; color: var(--sale); }
.flash--info    { background: var(--cream); border-color: var(--line); color: var(--ink); }

.tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--line-soft); margin-bottom: 20px; }
.tabs a { padding-bottom: 9px; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); border-bottom: 1px solid transparent; margin-bottom: -1px; }
.tabs a.is-active { color: var(--ink); border-bottom-color: var(--ink); }

.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th { text-align: left; font-weight: 400; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); padding: 9px 8px; border-bottom: 1px solid var(--line); }
.table td { padding: 11px 8px; border-bottom: 1px solid var(--line-soft); }

.pill { display: inline-block; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--line); }
.pill--paid { border-color: #cbdcc6; color: #3d6b33; }
.pill--pending { border-color: var(--gold-light); color: var(--gold); }
.pill--cancelled { border-color: #e3c6c6; color: var(--sale); }


/* ------------------------------------------------------------------ */
/* 20  Overlays                                                        */
/* ------------------------------------------------------------------ */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
  background: var(--ivory); z-index: 200;
  transform: translateX(100%); transition: transform var(--dur) var(--ease-out);
  display: flex; flex-direction: column; padding: 20px 22px 30px; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { font-family: var(--serif); font-size: 20px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.drawer__nav a:hover { color: var(--gold); }
.drawer__foot { margin-top: auto; padding-top: 24px; }

.scrim { position: fixed; inset: 0; background: rgba(20,18,15,0.45); z-index: 150; opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease); }
.scrim.is-open { opacity: 1; pointer-events: auto; }

.search-panel {
  position: fixed; top: 0; left: 0; right: 0; z-index: 210;
  background: var(--ivory); padding: 34px var(--gutter);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%); transition: transform var(--dur) var(--ease-out);
}
.search-panel.is-open { transform: translateY(0); }
.search-panel form { display: flex; align-items: center; gap: 14px; max-width: 680px; margin-inline: auto; border-bottom: 1px solid var(--ink); }
.search-panel input { flex: 1; border: 0; background: none; font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); padding: 8px 0; }
.search-panel input:focus { outline: 0; }

.modal { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(20,18,15,0.4); }
.modal.is-open { display: block; }
.modal__panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(94vw, 780px); max-height: 88vh; overflow-y: auto; background: var(--ivory); padding: 28px; }
.modal__close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; display: grid; place-items: center; }

.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  background: var(--ink); color: #fff; padding: 12px 18px;
  font-size: 12px; max-width: min(90vw, 330px);
  transform: translateY(160%); transition: transform var(--dur) var(--ease-out);
}
.toast.is-on { transform: translateY(0); }

.mobile-cart-bar { display: none; }


/* ------------------------------------------------------------------ */
/* 21  Motion — restrained                                             */
/* ------------------------------------------------------------------ */
[data-reveal] {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.05s; }
[data-reveal][data-delay="2"] { transition-delay: 0.1s; }
[data-reveal][data-delay="3"] { transition-delay: 0.15s; }
[data-reveal][data-delay="4"] { transition-delay: 0.2s; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* ------------------------------------------------------------------ */
/* 22  Responsive                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1180px) {
  .grid-products, .grid-products--6 { grid-template-columns: repeat(4, 1fr); }
  .nav { gap: 12px; }
  .nav__link { font-size: 10.5px; letter-spacing: 0.08em; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__inner { grid-template-columns: auto 1fr; }
  .header__actions { justify-self: end; }
  .shop { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 320px);
    background: var(--ivory); z-index: 200; padding: 22px; overflow-y: auto;
    transform: translateX(100%); transition: transform var(--dur) var(--ease-out);
  }
  .filters.is-open { transform: translateX(0); }
  .filters-toggle { display: inline-flex; }
  .grid-products, .grid-products--4, .grid-products--6 { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .cart-layout, .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
}

@media (max-width: 860px) {
  /* Purpose-built mobile: shorter hero, categories swipe, products 2-up. */
  :root { --hero-h: 420px; --editorial-h: auto; }

  .hero { grid-template-columns: 1fr; grid-template-rows: 46% 54%; }
  .hero__media { order: -1; }
  .hero__copy { padding: 18px var(--gutter); }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero__text { margin-bottom: 14px; }

  .catbar { display: flex; height: auto; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .catbar::-webkit-scrollbar { display: none; }
  .catbar__item { flex: 0 0 auto; scroll-snap-align: start; padding: 12px 18px; min-height: 78px; }

  .grid-products, .grid-products--4, .grid-products--6 { grid-template-columns: repeat(2, 1fr); }

  .trust { height: auto; padding-block: 12px; }
  .trust__row { flex-wrap: wrap; justify-content: flex-start; gap: 10px 22px; }
  .trust__dot { display: none; }
  .trust__item { flex: 0 0 calc(50% - 11px); font-size: 9.5px; }

  .editorial { grid-template-columns: 1fr; }
  .editorial__media { height: 170px; }
  .editorial__copy { padding: 20px var(--gutter); }

  .newsletter { min-height: 0; padding-block: 18px; }
  .newsletter__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .newsletter__form { flex: 1 1 auto; }

  /* Footer columns collapse to accordions. */
  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__col { border-top: 1px solid var(--line-dark); }
  .footer__col .footer__title {
    margin: 0; padding: 13px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer__col .footer__title::after { content: "+"; font-size: 14px; color: var(--gold-light); }
  .footer__col.is-open .footer__title::after { content: "–"; }
  .footer__col .footer__list { display: none; padding-bottom: 12px; }
  .footer__col.is-open .footer__list { display: block; }
  .footer__brand { padding-bottom: 20px; }

  .cart-row { grid-template-columns: 66px 1fr; }
  .cart-row__right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .gallery__thumbs { grid-template-columns: repeat(5, 1fr); }
  .field--half { grid-template-columns: 1fr; }

  .table thead { display: none; }
  .table tr { display: block; border-bottom: 1px solid var(--line); padding-block: 8px; }
  .table td { display: flex; justify-content: space-between; gap: 14px; border: 0; padding: 4px 0; }
  .table td::before { content: attr(data-label); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }

  .mobile-cart-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px var(--gutter);
    background: var(--ink); color: #fff;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    transform: translateY(100%); transition: transform var(--dur) var(--ease-out);
  }
  .mobile-cart-bar.is-on { transform: translateY(0); }
  body.has-cart-bar { padding-bottom: 46px; }
}

@media (max-width: 480px) {
  .brand__main { font-size: 16px; letter-spacing: 0.16em; }
  .brand__sub  { font-size: 7px; }
  .header__actions { gap: 12px; }
  .sec-head__title { font-size: 1.25rem; }
  .promo { font-size: 9.5px; letter-spacing: 0.1em; }
}

@media print {
  .header, .footer, .promo, .drawer, .scrim, .mobile-cart-bar, .trust { display: none !important; }
  body { background: #fff; }
}

/* Two-column helper used by the contact page and the quick-view modal. */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
