/* ==================================================================
   THE OUTFIT CLUBS — style.css
   Luxury · Minimal · Mobile-first · No frameworks
   ================================================================== */

/* ------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------ */
:root {
  --ink:        #0d0d0d;
  --coal:       #1a1a1c;
  --smoke:      #55524c;
  --stone:      #8b857b;
  --line:       #e8e2d6;
  --beige:      #f5f0e8;
  --cream:      #fbf9f5;
  --white:      #ffffff;
  --gold:       #c6a15b;
  --gold-deep:  #a8863f;
  --gold-soft:  #f0e6d2;
  --green:      #1e7d4f;
  --red:        #b3402f;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 10px 34px rgba(13, 13, 13, .08);
  --shadow-lg:  0 24px 60px rgba(13, 13, 13, .16);
  --speed:      .28s;
  --ease:       cubic-bezier(.33, 1, .48, 1);

  --header-h:   64px;
  --bar-h:      60px;   /* mobile bottom bar */
}

/* ------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--coal);
  background: var(--cream);
  overflow-x: hidden;
  padding-bottom: var(--bar-h);            /* room for mobile bottom bar */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; display: block; }

/* The hidden attribute must always win, even over display rules below
   (closed modals/overlays would otherwise block clicks invisibly). */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
em { font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }
.container--narrow { max-width: 780px; }

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

.skip-link {
  position: fixed; top: -60px; left: 1rem; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: .6rem 1.2rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--speed);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ------------------------------------------------------------------
   3. Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.9rem;
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed), background var(--speed), color var(--speed);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--gold  { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-deep); color: var(--white); }
.btn--dark  { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--coal); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost-dark { border-color: var(--ink); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--white); }
.btn[disabled] { opacity: .55; pointer-events: none; }

.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  transition: background var(--speed);
}
.icon-btn:hover { background: var(--beige); }
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }

.badge-count {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  font-size: .66rem; font-weight: 600; border-radius: 999px;
}

/* ------------------------------------------------------------------
   4. Announcement bar + header
   ------------------------------------------------------------------ */
.announce {
  background: var(--ink); color: var(--beige);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  text-align: center; padding: .55rem 1rem;
}

.header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(251, 249, 245, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--speed);
}
.header.is-scrolled { box-shadow: 0 8px 30px rgba(13,13,13,.08); }

.nav { height: var(--header-h); display: flex; align-items: center; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand__mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--ink); color: var(--gold);
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  border-radius: 11px;
}
.brand__text {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: .22em; color: var(--ink); white-space: nowrap;
}
.brand__text em { color: var(--gold-deep); font-style: normal; }

.nav__links { display: none; gap: 1.8rem; }
.nav__link {
  position: relative; font-size: .82rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--smoke);
  padding: .4rem 0; transition: color var(--speed);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--speed) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; gap: .15rem; }

.nav__burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; border-radius: 10px;
}
.nav__burger span {
  height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* Small phones: compress the brand so burger + logo + actions fit ≤360px */
@media (max-width: 480px) {
  .nav { gap: .4rem; }
  .brand { gap: .45rem; }
  .brand__mark { width: 32px; height: 32px; font-size: .9rem; border-radius: 9px; }
  .brand__text { font-size: .8rem; letter-spacing: .13em; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: calc(var(--header-h)) auto 0 0;
  width: min(320px, 86vw); z-index: 118;
  background: var(--white); border-right: 1px solid var(--line);
  padding: 2rem 1.6rem; display: flex; flex-direction: column; gap: .4rem;
  transform: translateX(-104%);
  transition: transform .34s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); box-shadow: var(--shadow-lg); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  padding: .8rem 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu a:hover { color: var(--gold-deep); padding-left: .4rem; transition: all var(--speed); }
.mobile-menu__note { margin-top: auto; padding-top: 2rem; font-size: .85rem; color: var(--stone); }

/* ------------------------------------------------------------------
   5. Search overlay
   ------------------------------------------------------------------ */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,13,13,.55); backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8vh; opacity: 0; transition: opacity var(--speed);
}
.search-overlay.is-open { opacity: 1; }
.search-overlay__panel {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.2rem; width: min(720px, 100% - 2rem);
  max-height: 80vh; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(-14px); transition: transform var(--speed) var(--ease);
}
.search-overlay.is-open .search-overlay__panel { transform: translateY(0); }
.search-overlay__bar {
  display: flex; align-items: center; gap: .7rem;
  border-bottom: 2px solid var(--ink); padding-bottom: .6rem;
}
.search-overlay__bar svg { width: 20px; height: 20px; fill: none; stroke: var(--stone); stroke-width: 1.7; flex: none; }
.search-overlay__bar input {
  flex: 1; border: 0; background: none; font: inherit; font-size: 1.05rem;
  color: var(--ink); outline: none; min-width: 0;
}
.search-overlay__hint { padding: .8rem 0 .2rem; font-size: .8rem; color: var(--stone); display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.search-overlay__hint button {
  border: 1px solid var(--line); border-radius: 999px; padding: .18rem .8rem;
  font-size: .76rem; letter-spacing: .06em; background: var(--white);
  transition: all var(--speed);
}
.search-overlay__hint button:hover { border-color: var(--gold); color: var(--gold-deep); }
.search-results { overflow-y: auto; margin-top: .6rem; }
.search-results__row {
  display: flex; align-items: center; gap: .9rem; width: 100%; text-align: left;
  padding: .55rem .5rem; border-radius: var(--radius-sm);
  transition: background var(--speed);
}
.search-results__row:hover { background: var(--beige); }
.search-results__row img { width: 52px; height: 62px; object-fit: cover; border-radius: 8px; flex: none; }
.search-results__row h4 { font-size: 1.02rem; }
.search-results__row p { font-size: .76rem; color: var(--stone); letter-spacing: .08em; text-transform: uppercase; }
.search-results__row strong { margin-left: auto; font-weight: 600; white-space: nowrap; }
.search-results__empty { padding: 2.4rem 1rem; text-align: center; color: var(--stone); }

/* ------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: 88svh;
  display: flex; align-items: center;
  color: var(--white); overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 72% at 78% 28%, rgba(198,161,91,.34), transparent 62%),
    radial-gradient(46% 60% at 14% 82%, rgba(198,161,91,.14), transparent 60%),
    linear-gradient(160deg, #171614 0%, #0d0d0d 55%, #1c1a16 100%);
}
.hero__bg::after {
  content: "OC";
  position: absolute; right: -4%; bottom: -12%;
  font-family: var(--font-display); font-size: clamp(16rem, 38vw, 34rem);
  line-height: 1; color: rgba(198,161,91,.07); user-select: none;
}
.hero__inner { position: relative; padding: 6rem 0 4.5rem; }
.hero__kicker {
  font-size: .74rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  color: var(--white); margin-bottom: 1.2rem;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub { max-width: 34rem; color: rgba(255,255,255,.78); margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.8rem; }
.hero__stats { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); }
.hero__stats span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); animation: rise .8s var(--ease) forwards; }
  .reveal:nth-child(2) { animation-delay: .12s; }
  .reveal:nth-child(3) { animation-delay: .22s; }
  .reveal:nth-child(4) { animation-delay: .32s; }
  .reveal:nth-child(5) { animation-delay: .42s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------------
   7. Sections
   ------------------------------------------------------------------ */
.section { padding: 4.2rem 0; }
@media (min-width: 900px) { .section { padding: 5.5rem 0; } }
.section--tint { background: var(--beige); }
.section--dark { background: var(--ink); color: rgba(255,255,255,.8); }
.section--dark .section__title { color: var(--white); }

.section__head { margin-bottom: 2.4rem; text-align: center; }
.section__head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; text-align: left;
}
.section__kicker {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .5rem;
}
.section__kicker--gold { color: var(--gold); }
.section__title { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
.link-more {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--smoke); border-bottom: 1px solid var(--gold);
  padding-bottom: .2rem; white-space: nowrap; transition: color var(--speed);
}
.link-more:hover { color: var(--gold-deep); }

/* ------------------------------------------------------------------
   8. Category row
   ------------------------------------------------------------------ */
.cat-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: 132px;
  gap: 1rem; overflow-x: auto; padding: .4rem .2rem 1.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.cat-scroll::-webkit-scrollbar { height: 5px; }
.cat-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
@media (min-width: 900px) {
  .cat-scroll { grid-auto-flow: row; grid-template-columns: repeat(9, 1fr); grid-auto-columns: unset; overflow: visible; }
}

.cat-card {
  scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  padding: 1.2rem .6rem 1rem; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed), border-color var(--speed);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.cat-card__art {
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.7rem;
  background: linear-gradient(145deg, var(--gold-soft), var(--beige));
  border: 1px solid var(--line);
}
.cat-card h3 { font-family: var(--font-body); font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--coal); }
.cat-card span { font-size: .68rem; color: var(--stone); }

/* ------------------------------------------------------------------
   9. Product grid & cards
   ------------------------------------------------------------------ */
.grid--products {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .grid--products { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
@media (min-width: 1024px) { .grid--products { grid-template-columns: repeat(4, 1fr); } }

.p-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.p-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--beige); }
.p-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .5s var(--ease), transform .8s var(--ease);
}
.p-card__media img.alt { opacity: 0; }
.p-card:hover .p-card__media img.main { transform: scale(1.06); }
.p-card:hover .p-card__media img.alt { opacity: 1; transform: scale(1.06); }

.p-card__badges { position: absolute; top: .7rem; left: .7rem; display: flex; flex-direction: column; gap: .35rem; z-index: 2; }
.p-badge {
  font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 999px; width: max-content;
}
.p-badge--new      { background: var(--ink);  color: var(--gold); }
.p-badge--sale     { background: var(--gold); color: var(--ink); }
.p-badge--best     { background: var(--green); color: var(--white); }
.p-badge--limited  { background: var(--red);   color: var(--white); }
.p-badge--stock    { background: rgba(255,255,255,.92); color: var(--red); }

.p-card__wish {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.94); box-shadow: 0 3px 12px rgba(0,0,0,.12);
  transition: transform var(--speed) var(--ease), color var(--speed);
  color: var(--smoke);
}
.p-card__wish:hover { transform: scale(1.12); }
.p-card__wish.is-on { color: var(--red); }
.p-card__wish svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.p-card__wish.is-on svg { fill: currentColor; }

.p-card__quick {
  position: absolute; left: 50%; bottom: .8rem; transform: translate(-50%, 10px);
  z-index: 2; opacity: 0; pointer-events: none;
  background: rgba(13,13,13,.88); color: var(--white);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .55rem 1.2rem; border-radius: 999px;
  transition: opacity var(--speed), transform var(--speed) var(--ease);
  white-space: nowrap;
}
.p-card:hover .p-card__quick, .p-card:focus-within .p-card__quick {
  opacity: 1; transform: translate(-50%, 0); pointer-events: auto;
}
@media (hover: none) { .p-card__quick { display: none; } }

.p-card__body { display: flex; flex-direction: column; gap: .3rem; padding: .9rem .9rem 1rem; flex: 1; }
.p-card__cat { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.p-card__name { font-size: 1.06rem; line-height: 1.25; }
.p-card__rating { display: flex; align-items: center; gap: .35rem; font-size: .74rem; color: var(--smoke); }
.p-card__stars { color: var(--gold-deep); letter-spacing: 2px; font-size: .8rem; }
.p-card__price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; margin-top: .1rem; }
.p-card__price strong { font-size: 1.06rem; font-weight: 600; color: var(--ink); }
.p-card__price s { font-size: .8rem; color: var(--stone); }
.p-card__price .off { font-size: .74rem; font-weight: 600; color: var(--green); }
.p-card__stock { font-size: .7rem; color: var(--green); }
.p-card__stock.low { color: var(--red); }

.p-card__notify {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; margin-top: .7rem;
  background: var(--ink); color: var(--white);
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px;
  transition: background var(--speed), transform var(--speed) var(--ease);
}
.p-card__notify:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* ------------------------------------------------------------------
   10. Toolbar (filters + sort)
   ------------------------------------------------------------------ */
.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
}
.chip-row { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .3rem; flex: 1; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: .45rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white);
  font-size: .78rem; letter-spacing: .08em; color: var(--smoke);
  transition: all var(--speed); white-space: nowrap;
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--gold); }

.sort { display: flex; align-items: center; gap: .55rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.sort select {
  font: inherit; color: var(--coal); background: var(--white);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; cursor: pointer;
}
.result-count { font-size: .8rem; color: var(--stone); margin-bottom: 1rem; }
.load-wrap { text-align: center; margin-top: 2.2rem; }

/* ------------------------------------------------------------------
   11. Collections (dark editorial cards)
   ------------------------------------------------------------------ */
.collections { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .collections { grid-template-columns: repeat(3, 1fr); } }

.collection-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  background: var(--coal); border: 1px solid rgba(198,161,91,.25);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed), border-color var(--speed);
}
.collection-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 22px 50px rgba(0,0,0,.4); }
.collection-card__art {
  aspect-ratio: 16 / 10; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 4rem; color: rgba(255,255,255,.25);
}
.collection-card__art--a { background: linear-gradient(140deg, #2c261b, #46381f 60%, #1c1913); }
.collection-card__art--b { background: linear-gradient(140deg, #20242b, #39414d 60%, #15181d); }
.collection-card__art--c { background: linear-gradient(140deg, #1d2733, #2c3f52 60%, #131b23); }
.collection-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.collection-card__body h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .3rem; }
.collection-card__body p { font-size: .86rem; color: rgba(255,255,255,.62); margin-bottom: .9rem; }
.collection-card__cta { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ------------------------------------------------------------------
   12. Trust grid
   ------------------------------------------------------------------ */
.trust-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.trust-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-card__ico {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep);
  font-size: 1.3rem; margin-bottom: .8rem;
}
.trust-card h3 { font-family: var(--font-body); font-size: .92rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .35rem; }
.trust-card p { font-size: .82rem; color: var(--smoke); }

/* ------------------------------------------------------------------
   13. Testimonials
   ------------------------------------------------------------------ */
.testi { position: relative; max-width: 760px; margin-inline: auto; }
.testi__track { overflow: hidden; }
.testi__slide {
  display: none; text-align: center; padding: 1rem 1.2rem 0;
  animation: fadeIn .5s var(--ease);
}
.testi__slide.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } }
.testi__stars { color: var(--gold-deep); letter-spacing: 3px; margin-bottom: 1rem; }
.testi__quote { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.7rem); font-style: italic; color: var(--ink); margin-bottom: 1.4rem; }
.testi__who strong { display: block; font-weight: 600; font-size: .95rem; }
.testi__who span { font-size: .78rem; color: var(--stone); letter-spacing: .1em; text-transform: uppercase; }
.testi__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.6rem; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all var(--speed); }
.testi__dot.is-active { background: var(--gold); transform: scale(1.25); }

/* ------------------------------------------------------------------
   14. Instagram grid
   ------------------------------------------------------------------ */
.ig-grid { display: grid; gap: .7rem; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 900px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.ig-tile {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  display: block;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ig-tile::after {
  content: "♥ " attr(data-likes); position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(13,13,13,.55); color: var(--white); font-size: .9rem;
  opacity: 0; transition: opacity var(--speed);
}
.ig-tile:hover::after { opacity: 1; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-follow { text-align: center; margin-top: 1.8rem; }

/* ------------------------------------------------------------------
   15. Newsletter
   ------------------------------------------------------------------ */
.newsletter__inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .newsletter__inner { grid-template-columns: 1.2fr 1fr; } }
.newsletter .section__title { margin-bottom: .6rem; }
.newsletter__sub { color: rgba(255,255,255,.65); max-width: 30rem; }
.newsletter__form { position: relative; display: flex; flex-wrap: wrap; gap: .7rem; }
.newsletter__form input {
  flex: 1 1 240px; min-height: 48px; padding: .75rem 1.3rem;
  font: inherit; color: var(--white);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; outline: none; transition: border-color var(--speed);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter__form input:focus { border-color: var(--gold); }
.form-msg { flex-basis: 100%; font-size: .84rem; min-height: 1.3em; }
.form-msg.ok { color: #8fd6ae; }
.form-msg.err { color: #f0a08e; }

/* ------------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------------ */
.faq { display: flex; flex-direction: column; gap: .8rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.2rem; transition: border-color var(--speed), box-shadow var(--speed);
}
.faq__item[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  padding: 1.05rem 2rem 1.05rem 0; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: .1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold-deep); font-family: var(--font-body); font-weight: 300;
  transition: transform var(--speed) var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 1.15rem; font-size: .92rem; color: var(--smoke); }

/* ------------------------------------------------------------------
   17. Contact
   ------------------------------------------------------------------ */
.contact { display: grid; gap: 1.6rem; }
@media (min-width: 900px) { .contact { grid-template-columns: 1.1fr 1fr; } }
.contact__map {
  border-radius: var(--radius); overflow: hidden; min-height: 300px;
  background:
    linear-gradient(rgba(232,226,214,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,226,214,.55) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
}
.contact__map-inner { padding: 2rem; color: var(--smoke); font-size: .92rem; }
.contact__pin { font-size: 2.2rem; display: block; margin-bottom: .6rem; }
.contact__list { display: flex; flex-direction: column; gap: 1rem; }
.contact__list li {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.1rem 1.2rem;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}
.contact__list li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact__ico {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold-deep); border-radius: 50%;
  font-size: 1.15rem;
}
.contact__list h3 { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-bottom: .15rem; }
.contact__list a { color: var(--ink); font-weight: 500; }
.contact__list a:hover { color: var(--gold-deep); }
.contact__list p { font-size: .9rem; color: var(--coal); }

/* ------------------------------------------------------------------
   18. Footer
   ------------------------------------------------------------------ */
.footer { background: var(--ink); color: rgba(255,255,255,.66); font-size: .88rem; }
.footer__grid {
  display: grid; gap: 2.2rem; padding: 3.6rem 0 2.6rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer__brand { grid-column: auto; } }
.brand__text--footer { font-size: 1.2rem; color: var(--white); margin-bottom: .8rem; display: block; }
.footer__brand p { max-width: 30rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  font-size: .72rem; letter-spacing: .05em;
  transition: all var(--speed);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer__col { display: flex; flex-direction: column; gap: .55rem; align-items: flex-start; }
.footer__col h3 {
  font-family: var(--font-body); font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}
.footer__col a, .footer__legal { color: rgba(255,255,255,.66); transition: color var(--speed); padding: .1rem 0; text-align: left; }
.footer__col a:hover, .footer__legal:hover { color: var(--gold); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.2rem 1.4rem calc(1.2rem + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.45);
  text-align: center;
}
.footer__bar p { margin-inline: auto; }
@media (min-width: 700px) { .footer__bar p { margin-inline: 0; } }

/* ------------------------------------------------------------------
   19. Sticky mobile bar + floats
   ------------------------------------------------------------------ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  height: calc(var(--bar-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(13,13,13,.97); backdrop-filter: blur(10px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(198,161,91,.3);
}
.mobile-bar a, .mobile-bar button {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.mobile-bar span[aria-hidden] { font-size: 1.15rem; line-height: 1; }
.mobile-bar a:active, .mobile-bar button:active { color: var(--gold); }
.badge-count--bar { top: 4px; right: 18%; }
@media (min-width: 900px) { .mobile-bar { display: none; } }

.wa-float {
  position: fixed; right: 1rem; bottom: calc(var(--bar-h) + 1rem + env(safe-area-inset-bottom)); z-index: 105;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: var(--white);
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform var(--speed) var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@media (min-width: 900px) { .wa-float { bottom: 1.4rem; } }

.to-top {
  position: fixed; right: 1rem; bottom: calc(var(--bar-h) + 4.6rem + env(safe-area-inset-bottom)); z-index: 105;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all var(--speed);
}
.to-top.is-show { opacity: 1; pointer-events: auto; transform: none; }
@media (min-width: 900px) { .to-top { bottom: 5.2rem; } }

/* ------------------------------------------------------------------
   20. Modals, drawer, scrim, toast
   ------------------------------------------------------------------ */
.scrim {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(13,13,13,.55); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--speed);
}
.scrim.is-open { opacity: 1; }

.modal {
  position: fixed; inset: 0; z-index: 180;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  background: rgba(13,13,13,.55); backdrop-filter: blur(5px);
  opacity: 0; transition: opacity var(--speed);
  overflow-y: auto;
}
@media (min-width: 640px) { .modal { align-items: center; padding: 2rem 1rem; } }
.modal.is-open { opacity: 1; }
.modal__card {
  background: var(--cream); width: 100%; max-width: 860px;
  border-radius: var(--radius) var(--radius) 0 0;
  max-height: 94svh; overflow-y: auto;
  transform: translateY(24px);
  transition: transform .32s var(--ease);
  position: relative;
}
@media (min-width: 640px) { .modal__card { border-radius: var(--radius); max-height: 88vh; } }
.modal.is-open .modal__card { transform: none; }
.modal__close {
  position: absolute; top: .8rem; right: .8rem; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow);
  display: grid; place-items: center; font-size: 1rem;
}
.modal__card--narrow { max-width: 560px; }

/* Quick view */
.qv { display: grid; }
@media (min-width: 760px) { .qv { grid-template-columns: 1fr 1.05fr; } }
.qv__media { aspect-ratio: 4/5; background: var(--beige); }
@media (min-width: 760px) { .qv__media { aspect-ratio: auto; min-height: 100%; } }
.qv__media img { width: 100%; height: 100%; object-fit: cover; }
.qv__body { padding: 1.6rem 1.5rem 2rem; display: flex; flex-direction: column; gap: .7rem; }
.qv__cat { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); }
.qv__name { font-size: 1.7rem; }
.qv__meta { font-size: .74rem; color: var(--stone); }
.qv__desc { font-size: .94rem; color: var(--smoke); }
.qv__price { display: flex; align-items: baseline; gap: .7rem; margin: .4rem 0; }
.qv__price strong { font-size: 1.5rem; font-weight: 600; }
.qv__price s { color: var(--stone); }
.qv__price .off { color: var(--green); font-weight: 600; font-size: .85rem; }
.qv__actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .4rem; }
.qv__trust { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .74rem; color: var(--stone); }

/* Notify form */
.nf { padding: 1.7rem 1.5rem 2rem; }
.nf__product {
  display: flex; gap: 1rem; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .8rem; margin-bottom: 1.4rem;
}
.nf__product img { width: 64px; height: 76px; object-fit: cover; border-radius: 8px; flex: none; }
.nf__product h3 { font-size: 1.1rem; line-height: 1.2; }
.nf__product p { font-size: .74rem; color: var(--stone); letter-spacing: .06em; }
.nf__product strong { font-size: .95rem; color: var(--gold-deep); }
.nf__title { font-size: 1.5rem; margin-bottom: .2rem; }
.nf__sub { font-size: .85rem; color: var(--smoke); margin-bottom: 1.3rem; }
.nf__grid { display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .nf__grid { grid-template-columns: 1fr 1fr; } }
.nf__field { display: flex; flex-direction: column; gap: .3rem; }
.nf__field--full { grid-column: 1 / -1; }
.nf__field label { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.nf__field input, .nf__field select {
  font: inherit; color: var(--ink); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .78rem 1rem; min-height: 48px; outline: none;
  transition: border-color var(--speed), box-shadow var(--speed);
  width: 100%;
}
.nf__field input:focus, .nf__field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18); }
.nf__field input.invalid { border-color: var(--red); }
.nf__err { font-size: .74rem; color: var(--red); min-height: 1em; }
.nf__consent { display: flex; gap: .7rem; align-items: flex-start; margin: 1.1rem 0 1.2rem; font-size: .82rem; color: var(--smoke); }
.nf__consent input { width: 19px; height: 19px; margin-top: .15rem; accent-color: var(--gold-deep); flex: none; }
.nf__submit { width: 100%; }
.nf__secure { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 1rem; font-size: .72rem; color: var(--stone); }
.nf__status { margin-top: .9rem; font-size: .88rem; text-align: center; min-height: 1.3em; }
.nf__status.ok { color: var(--green); }
.nf__status.err { color: var(--red); }

/* success state */
.nf__success { text-align: center; padding: 2.4rem 1.4rem 1.6rem; }
.nf__success-ico {
  width: 74px; height: 74px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem;
  background: var(--gold-soft); color: var(--green);
  animation: pop .5s var(--ease);
}
@keyframes pop { from { transform: scale(.5); opacity: 0; } }
.nf__success h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.nf__success p { color: var(--smoke); font-size: .92rem; max-width: 26rem; margin: 0 auto .6rem; }
.nf__success .ref { font-size: .78rem; color: var(--stone); letter-spacing: .08em; }

/* Legal modal */
.legal { padding: 2rem 1.6rem 2.2rem; }
.legal h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.legal h3 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; margin: 1.2rem 0 .3rem; }
.legal p { font-size: .9rem; color: var(--smoke); margin-bottom: .6rem; }

/* Drawer (wishlist) */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 190;
  width: min(400px, 92vw);
  background: var(--cream); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(104%);
  transition: transform .34s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line);
}
.drawer__head h2 { font-size: 1.35rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.3rem 1.4rem; }
.drawer__empty { text-align: center; color: var(--stone); padding: 3.4rem 1rem; }
.drawer__empty span { display: block; font-size: 2.2rem; margin-bottom: .8rem; }
.wl-item {
  display: flex; gap: .9rem; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .7rem; margin-bottom: .8rem;
}
.wl-item img { width: 58px; height: 70px; object-fit: cover; border-radius: 8px; flex: none; }
.wl-item__info { flex: 1; min-width: 0; }
.wl-item__info h4 { font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-item__info p { font-size: .72rem; color: var(--stone); }
.wl-item__info strong { font-size: .88rem; }
.wl-item__actions { display: flex; flex-direction: column; gap: .4rem; }
.wl-item__actions .mini {
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .42rem .8rem; border-radius: 999px; white-space: nowrap;
}
.mini--dark { background: var(--ink); color: var(--white); }
.mini--dark:hover { background: var(--gold-deep); }
.mini--line { border: 1px solid var(--line); color: var(--stone); }
.mini--line:hover { border-color: var(--red); color: var(--red); }

/* Toast */
.toast-zone {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(var(--bar-h) + 1rem + env(safe-area-inset-bottom));
  z-index: 250; display: flex; flex-direction: column; gap: .5rem;
  width: min(420px, calc(100vw - 2rem));
}
@media (min-width: 900px) { .toast-zone { bottom: 1.6rem; } }
.toast {
  background: var(--ink); color: var(--white);
  border-left: 3px solid var(--gold);
  padding: .8rem 1.2rem; border-radius: var(--radius-sm);
  font-size: .86rem; box-shadow: var(--shadow-lg);
  animation: toastIn .35s var(--ease);
}
.toast--err { border-left-color: var(--red); }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

/* ------------------------------------------------------------------
   21. Scroll-reveal helper (added by JS)
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .io-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
}
.io-reveal.is-in { opacity: 1; transform: none; }

/* Lock body scroll when an overlay is open */
body.no-scroll { overflow: hidden; }
