/* ════════════════════════════════════════════════════════════════
   KORO FASHIONS — store.css  v4  (luxury edition)
   Pink · Black · White  —  Refined · Immersive · Premium
   Cormorant Garamond (display) · DM Sans (body)
   ════════════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* ── Core palette ── */
  --pink:         #D4607A;   /* signature rose   */
  --pink-d:       #A8455C;   /* deep rose        */
  --pink-l:       #E8A0B0;   /* rose gold        */
  --pink-ghost:   rgba(212,96,122,.09);
  --pink-glow:    rgba(212,96,122,.22);
  --blush:        #FAF0F2;   /* near-white pink  */

  --black:        #080808;
  --charcoal:     #121212;
  --charcoal2:    #1C1C1C;
  --ink:          #0A0A0A;
  --ink2:         #2A2A2A;
  --ink3:         #7A7A7A;
  --white:        #FFFFFF;
  --off-white:    #FDFAFB;
  --card-bg:      #F7F4F5;

  /* ── Semantic aliases (keeps backward-compat) ── */
  --koro-pink-deep:    var(--pink);
  --koro-pink-mid:     var(--pink-l);
  --koro-pink-blush:   var(--blush);
  --koro-pink-powder:  #EFC8D1;
  --koro-pink-accent:  var(--pink-l);
  --koro-black:        var(--black);
  --koro-charcoal:     var(--charcoal);
  --koro-white:        var(--white);
  --koro-off-white:    var(--off-white);
  --koro-grey-card:    var(--card-bg);
  --koro-rose-gold:    var(--pink-l);

  --cream:       var(--off-white);
  --warm-white:  var(--white);
  --pearl:       var(--blush);
  --terra:       var(--pink);
  --terra-d:     var(--pink-d);
  --terra-light: var(--blush);
  --terra-glow:  var(--pink-ghost);
  --gold:        #25D366;
  --gold-d:      #1DA851;

  /* ── Borders ── */
  --border:      rgba(10,10,10,.06);
  --border2:     rgba(10,10,10,.12);
  --border-pink: rgba(212,96,122,.18);

  /* ── Shadows ── */
  --sh:      0 1px 4px rgba(0,0,0,.04), 0 2px 12px rgba(0,0,0,.03);
  --sh-md:   0 4px 24px rgba(0,0,0,.07), 0 8px 40px rgba(0,0,0,.04);
  --sh-lg:   0 12px 48px rgba(0,0,0,.10), 0 24px 72px rgba(0,0,0,.06);
  --sh-pink: 0 8px 32px rgba(212,96,122,.14), 0 2px 8px rgba(212,96,122,.10);

  /* ── Radii ── */
  --r:    0px;   /* flat luxury — no radius by default */
  --r-sm: 0px;
  --r-pill: 40px;

  /* ── Typography ── */
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* ── Layout ── */
  --nav-h: 64px;
  --announce-h: 36px;

  /* ── Motion ── */
  --tr:          all .26s cubic-bezier(.4,0,.2,1);
  --ease-luxury: cubic-bezier(.16,1,.3,1);
  --ease-silk:   cubic-bezier(.4,0,.2,1);
  --ease-snap:   cubic-bezier(.34,1.56,.64,1);
  --dur-fast:    180ms;
  --dur-med:     320ms;
  --dur-slow:    600ms;
}

/* ── BASE ────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-b);
  background: var(--off-white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; }
input  { font-family: var(--font-b); }
.hidden    { display: none !important; }
.sr-only   { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(212,96,122,.3); border-radius: 2px; }

/* ── CUSTOM CURSOR ──────────────────────────────────────────────── */
#k-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; mix-blend-mode: difference; }
.k-cursor-dot {
  position: absolute; top: -3px; left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  transform: translate(-50%,-50%);
  transition: transform .1s, opacity .2s;
  will-change: transform;
}
.k-cursor-ring {
  position: absolute; top: -16px; left: -16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6);
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease-luxury), width .22s, height .22s, border-color .22s;
  will-change: transform;
}
body.cursor-hover .k-cursor-ring { width: 48px; height: 48px; top: -24px; left: -24px; border-color: rgba(255,255,255,.4); }
body.cursor-text  .k-cursor-ring { width: 4px;  height: 32px; border-radius: 2px; border-color: rgba(255,255,255,.7); }
@media (hover: none) { #k-cursor { display: none; } }

/* ── PREMIUM LOADER ─────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity .6s var(--ease-silk), transform .6s var(--ease-silk);
}
#loader.hide { opacity: 0; transform: scale(1.03); pointer-events: none; }
.loader-brand {
  font-family: var(--font-d); font-size: 11px;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(255,255,255,.65); overflow: hidden; position: relative;
  animation: loaderBrandReveal .9s var(--ease-luxury) .1s both;
}
@keyframes loaderBrandReveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
}
.loader-rule {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(212,96,122,.5) 50%, transparent);
  animation: loaderRuleGrow .8s var(--ease-luxury) .4s both;
}
@keyframes loaderRuleGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
.loader-bar {
  width: 160px; height: 1px;
  background: rgba(255,255,255,.08); overflow: hidden; position: relative;
}
.loader-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--pink) 50%, transparent);
  transform: translateX(-100%);
  animation: loaderShimmer 1.6s var(--ease-luxury) .2s infinite;
}
.loader-fill {
  height: 100%; width: 0%;
  background: var(--pink);
  transition: width 1.8s cubic-bezier(.4,0,.2,1);
}
@keyframes loaderShimmer {
  to { transform: translateX(100%); }
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────── */
#announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--black);
  color: rgba(255,255,255,.6);
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  text-align: center; padding: 0 20px;
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: var(--announce-h); width: 100%; z-index: 200;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 48px; height: var(--nav-h);
  background: transparent;
  transition: background var(--dur-slow) var(--ease-silk),
              border-color var(--dur-slow) var(--ease-silk);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255,255,255,.05);
}
.nav-left  { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 400;
  position: relative; padding-bottom: 2px;
  transition: color var(--dur-med) ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--pink-l);
  transition: right var(--dur-med) var(--ease-luxury);
}
.nav-link:hover { color: rgba(255,255,255,.95); }
.nav-link:hover::after { right: 0; }
.nav-center { grid-column: 2; text-align: center; }
.nav-logo {
  font-family: var(--font-d); font-size: 14px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase; color: #fff;
  white-space: nowrap; transition: opacity var(--dur-med) ease, letter-spacing var(--dur-slow) ease;
}
.nav-logo:hover { opacity: .6; letter-spacing: 0.52em; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.nav-icon-btn {
  background: none; border: none; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; padding: 0;
  transition: color var(--dur-med) ease;
}
.nav-icon-btn:hover { color: rgba(255,255,255,.95); }
.nav-icon-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-wa-label { display: none; }
@media (min-width: 860px) { .nav-wa-label { display: inline; } }
@media (max-width: 640px) {
  .site-nav { padding: 0 20px; height: 56px; }
  .nav-left  { display: none; }
  .nav-logo  { font-size: 12px; letter-spacing: 0.34em; }
  .nav-right { gap: 18px; }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100vw; min-height: 100svh;
  overflow: hidden; background: var(--black);
}
.hero-bg { position: relative; width: 100%; line-height: 0; }
.hero-bg img, .hero-bg video {
  width: 100%; height: auto; min-height: 100svh;
  object-fit: cover; object-position: center top; display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top,  rgba(0,0,0,.88) 0%, rgba(0,0,0,.22) 40%, transparent 70%),
    linear-gradient(to right, rgba(0,0,0,.28) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.008) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-text {
  position: absolute; bottom: 0; left: 0; z-index: 10;
  padding: 0 64px 80px; max-width: 760px;
  animation: heroFadeUp 1s var(--ease-luxury) .15s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-category {
  font-size: 9px; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 20px; font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.hero-category::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--pink-l); opacity: .6;
}
.hero-headline {
  font-family: var(--font-d); font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.015em;
  color: #fff; margin-bottom: 32px;
}
.hero-headline em { font-style: italic; font-weight: 300; color: var(--pink-l); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,.75); padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: color var(--dur-med) ease, border-color var(--dur-med) ease, gap var(--dur-med) ease;
}
.hero-cta::after {
  content: '→'; font-size: 11px; transition: transform var(--dur-med) var(--ease-luxury);
}
.hero-cta:hover {
  color: #fff; border-bottom-color: var(--pink-l); gap: 20px;
}
.hero-cta:hover::after { transform: translateX(4px); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column;
  align-items: center; gap: 10px; pointer-events: none;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4) 50%, transparent);
  transform-origin: top; animation: scrollPulse 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: .9; transform: scaleY(1.15); }
}
.hero-scroll-text {
  font-size: 7px; letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
@media (max-width: 640px) {
  .hero-text  { padding: 0 24px 72px; }
  .hero-scroll { display: none; }
}

/* ── CATEGORY STRIP ─────────────────────────────────────────────── */
#category-strip {
  background: var(--black); padding: 0; overflow: hidden; display: none;
}
.cat-strip-inner {
  display: flex; overflow-x: auto; scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-strip-card {
  flex: 0 0 280px; scroll-snap-align: start;
  position: relative; height: 340px; overflow: hidden; cursor: pointer;
}
.cat-strip-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.08) 55%);
  pointer-events: none; z-index: 1;
  transition: background var(--dur-slow) ease;
}
.cat-strip-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.04) 60%);
}
.cat-strip-bg { position: absolute; inset: 0; }
.cat-strip-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-luxury);
}
.cat-strip-card:hover .cat-strip-bg img { transform: scale(1.05); }
.cat-strip-text {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 24px 24px;
}
.cat-strip-label {
  font-family: var(--font-d); font-size: 24px;
  font-weight: 300; color: #fff; letter-spacing: 0.02em;
  margin-bottom: 4px; line-height: 1.2;
}
.cat-strip-tagline {
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.cat-strip-count {
  display: inline-block; margin-top: 12px;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px; transition: color var(--dur-med) ease, border-color var(--dur-med) ease;
}
.cat-strip-card:hover .cat-strip-count { color: var(--pink-l); border-bottom-color: var(--pink-l); }
@media (max-width: 640px) { .cat-strip-card { flex: 0 0 220px; height: 270px; } }

/* ── CATALOG SECTION ────────────────────────────────────────────── */
.catalog-section {
  padding: 80px clamp(20px, 5vw, 64px) 96px;
  background: var(--off-white);
}
.catalog-toolbar {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 48px;
}
.catalog-title {
  font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 5px;
}
.catalog-title span { font-style: italic; font-weight: 300; color: var(--pink); }
.catalog-count {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink3); display: block;
}
.catalog-tools { display: flex; align-items: center; gap: 14px; }
.search-wrap {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border2); padding: 9px 0;
  transition: border-color var(--dur-med) ease;
}
.search-wrap:focus-within { border-bottom-color: var(--pink); }
.search-wrap svg { width: 14px; height: 14px; color: var(--ink3); flex-shrink: 0; }
.search-wrap input {
  border: none; background: transparent; outline: none;
  font-size: 12px; color: var(--ink); width: 200px; letter-spacing: .01em;
}
.search-wrap input::placeholder { color: var(--ink3); }
.btn-filter-open {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border2);
  background: transparent; padding: 9px 18px;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink2); transition: var(--tr); white-space: nowrap;
}
.btn-filter-open:hover { border-color: var(--pink); color: var(--pink); }
.btn-filter-open svg { width: 13px; height: 13px; }
.filter-active-badge {
  display: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--pink); color: #fff;
  font-size: 9px; font-weight: 700;
  align-items: center; justify-content: center;
}
.filter-active-badge.show { display: flex; }

/* Grouped sections */
#catalog-sections { display: flex; flex-direction: column; gap: 64px; }
.cat-section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border2);
}
.cat-section-title {
  font-family: var(--font-d); font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300; color: var(--ink); letter-spacing: 0.01em;
}
.cat-section-meta { display: flex; align-items: center; gap: 18px; }
.cat-section-count {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink3);
}
.cat-section-browse {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); border-bottom: 1px solid var(--pink);
  padding-bottom: 1px; cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-b); transition: opacity var(--dur-fast) ease;
}
.cat-section-browse:hover { opacity: .55; }
.cat-section-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
@media (max-width: 1100px) { .cat-section-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .cat-section-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; } }
@media (max-width: 380px)  { .cat-section-grid { grid-template-columns: 1fr; gap: 1px; } }

.admin-notice { text-align: center; padding: 80px 20px; }
.notice-icon  { font-size: 40px; margin-bottom: 18px; opacity: .25; }
.admin-notice h2 { font-family: var(--font-d); font-size: 28px; margin-bottom: 10px; }
.admin-notice p  { font-size: 14px; color: var(--ink3); max-width: 400px; margin: 0 auto; line-height: 1.75; }
.no-results {
  grid-column: 1/-1; text-align: center;
  padding: 80px 20px; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.no-results svg { width: 36px; height: 36px; color: var(--ink3); opacity: .25; }
.no-results h3  { font-family: var(--font-d); font-size: 24px; }
.no-results p   { font-size: 13px; color: var(--ink3); }

/* ── PRODUCT CARD ───────────────────────────────────────────────── */
.product-card {
  background: var(--card-bg); border: none; overflow: hidden;
  display: flex; flex-direction: column; cursor: pointer;
  position: relative; will-change: transform;
  transition: box-shadow var(--dur-slow) var(--ease-luxury),
              transform  var(--dur-slow) var(--ease-luxury);
}
.product-card:focus-visible { outline: 2px solid var(--pink); outline-offset: -2px; }
.product-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);
  transform: translateY(-2px);
  z-index: 2;
}

/* 3D tilt — driven by interactions.js */
.product-card.card-tilting {
  transition: box-shadow var(--dur-slow) var(--ease-luxury),
              transform  80ms linear;
}

/* Card glare */
.card-glare {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0; z-index: 6;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.18) 0%, transparent 60%);
  transition: opacity var(--dur-med) ease;
}
.product-card:hover .card-glare { opacity: 1; }

/* Media */
.card-media {
  position: relative; aspect-ratio: 3/4;
  background: var(--card-bg); overflow: hidden;
}
.card-media img:not(.card-model-img) {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform var(--dur-slow) var(--ease-luxury);
  will-change: transform;
}
.product-card:hover .card-media img:not(.card-model-img) { transform: scale(1.06); }
.card-media .card-model-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 540ms var(--ease-silk); z-index: 2; pointer-events: none;
}
.product-card:hover .card-media .card-model-img { opacity: 1; }
.card-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(40px, 8vw, 64px); opacity: .08;
}
.card-media-count {
  position: absolute; top: 10px; left: 10px;
  background: rgba(8,8,8,.62); color: rgba(255,255,255,.85);
  font-size: 8px; font-weight: 500; letter-spacing: 0.06em;
  padding: 3px 8px; backdrop-filter: blur(6px); z-index: 4;
}
.card-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; padding: 3px 8px; z-index: 4;
}
.badge-in  { background: rgba(15,100,45,.09); color: #0f6430; }
.badge-low { background: rgba(180,83,9,.09);  color: #b45309; }
.badge-out { background: rgba(180,45,45,.09); color: #b42d2d; }

/* Quick view */
.card-quick-view {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18px;
  opacity: 0; transition: opacity var(--dur-med) ease; z-index: 4;
  background: linear-gradient(0deg, rgba(0,0,0,.36) 0%, transparent 60%);
}
.product-card:hover .card-quick-view { opacity: 1; }
.btn-quick-view {
  background: rgba(8,8,8,.84); color: #fff;
  border: none; padding: 9px 24px; border-radius: 50px;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  backdrop-filter: blur(8px); transition: background var(--dur-fast) ease;
}
.btn-quick-view:hover { background: var(--pink); }

/* Wishlist */
.card-wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 5; color: rgba(10,10,10,.3);
  transition: color var(--dur-med) ease, transform var(--dur-med) var(--ease-snap);
  display: flex; align-items: center;
}
.card-wishlist-btn:hover { color: var(--ink); transform: scale(1.15); }
.card-wishlist-btn.active { color: var(--pink); }
.card-wishlist-btn svg { width: 18px; height: 18px; display: block; }

/* Compare */
.card-compare-btn {
  position: absolute; top: 10px; right: 40px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.78); border: 1px solid rgba(0,0,0,.1);
  font-size: 13px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr); color: var(--ink3); z-index: 5;
  opacity: 0; backdrop-filter: blur(4px);
}
.product-card:hover .card-compare-btn { opacity: 1; }
.card-compare-btn:hover  { background: var(--ink); color: #fff; border-color: var(--ink); }
.card-compare-btn.in-compare { background: var(--ink); color: #fff; border-color: var(--ink); opacity: 1; }

/* Card body */
.card-body {
  padding: 14px 14px 0; flex: 1;
  display: flex; flex-direction: column; gap: 3px;
  background: var(--white);
}
.card-badge-new {
  font-size: 7px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 2px;
}
.card-cat   { font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink3); }
.card-name  {
  font-family: var(--font-b); font-size: 12px; font-weight: 400;
  line-height: 1.35; color: var(--ink); letter-spacing: .01em;
}
.card-sub   { font-size: 11px; color: var(--ink3); }
.card-low-warn { font-size: 8px; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.card-color-dots { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; align-items: center; }
.card-color-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12); flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-snap);
}
.card-color-dot:hover { transform: scale(1.25); }

/* Card footer */
.card-footer {
  padding: 12px 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--white);
}
.card-price {
  font-family: var(--font-d); font-size: 18px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em;
}
.btn-order-card {
  flex-shrink: 0; background: var(--ink); color: #fff; border: none;
  padding: 8px 16px;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; display: flex; align-items: center; gap: 6px;
  transition: background var(--dur-med) ease, transform var(--dur-fast) ease;
}
.btn-order-card:hover:not(:disabled) { background: var(--pink); transform: translateY(-1px); }
.btn-order-card:active { transform: translateY(0); }
.btn-order-card:disabled { background: rgba(0,0,0,.08); color: var(--ink3); cursor: not-allowed; }

/* ── FILTER PANEL ───────────────────────────────────────────────── */
#filter-overlay {
  display: none; position: fixed; inset: 0; z-index: 700;
  background: rgba(8,8,8,.4); backdrop-filter: blur(4px);
}
#filter-overlay.open { display: block; animation: fadeIn .22s ease; }
#filter-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 800;
  width: 320px; max-width: 92vw; background: var(--white);
  box-shadow: -12px 0 60px rgba(0,0,0,.12);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease-luxury);
}
#filter-panel.open { transform: translateX(0); }
.filter-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px; border-bottom: 1px solid var(--border);
}
.filter-header h3 { font-family: var(--font-d); font-size: 24px; font-weight: 400; }
.btn-filter-close { background: none; border: none; font-size: 17px; color: var(--ink3); padding: 4px; transition: color var(--dur-fast) ease; }
.btn-filter-close:hover { color: var(--ink); }
.filter-body { flex: 1; overflow-y: auto; padding: 22px 24px; }
.filter-group { margin-bottom: 30px; }
.filter-group-title {
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink3); font-weight: 600; margin-bottom: 16px;
}
.filter-option {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  cursor: pointer; font-size: 13px; color: var(--ink2);
  border: none; background: none; width: 100%;
  text-align: left; font-family: var(--font-b); transition: color var(--dur-fast) ease;
}
.filter-option:hover { color: var(--pink); }
.filter-option input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--pink); cursor: pointer; flex-shrink: 0; }
.filter-option-count { margin-left: auto; font-size: 11px; color: var(--ink3); }
.filter-footer {
  padding: 16px 24px 28px; border-top: 1px solid var(--border);
  display: flex; gap: 10px;
}
.btn-filter-clear {
  flex: 1; padding: 12px; border: 1px solid var(--border2); background: transparent;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink2); font-family: var(--font-b); transition: var(--tr);
}
.btn-filter-clear:hover { border-color: var(--pink); color: var(--pink); }
.btn-filter-apply {
  flex: 2; padding: 12px; background: var(--ink); color: #fff; border: none;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; font-family: var(--font-b); transition: background var(--dur-med) ease;
}
.btn-filter-apply:hover { background: var(--pink); }

/* ── EDITORIAL STRIP ─────────────────────────────────────────────── */
.editorial-strip {
  padding: 96px clamp(20px, 5vw, 64px);
  background: var(--off-white);
}
.editorial-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 14px;
}
.editorial-eyebrow {
  font-size: 8px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 10px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.editorial-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--pink); }
.editorial-heading {
  font-family: var(--font-d); font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 300; color: var(--ink); line-height: 1.08; letter-spacing: -0.01em;
}
.editorial-heading em { font-style: italic; color: var(--pink); }
.editorial-see-all {
  background: none; border: none; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--border2);
  padding-bottom: 3px; cursor: pointer; font-family: var(--font-b);
  transition: color var(--dur-med) ease, border-color var(--dur-med) ease; white-space: nowrap;
}
.editorial-see-all:hover { color: var(--pink); border-bottom-color: var(--pink); }
.editorial-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px;
}
@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-hero-card { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-hero-card { grid-column: 1; }
}
.editorial-card { position: relative; overflow: hidden; cursor: pointer; }
.editorial-hero-card .editorial-img { aspect-ratio: 16/10; }
.editorial-side-card .editorial-img { aspect-ratio: 3/4; }
.editorial-img {
  position: relative; width: 100%; overflow: hidden;
  background: var(--charcoal);
}
.editorial-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-luxury);
  will-change: transform;
}
.editorial-card:hover .editorial-img img { transform: scale(1.05); }
.editorial-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.15) 45%, transparent 72%);
}
.editorial-img-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--pink-d) 100%);
  font-family: var(--font-d); font-size: 22px; color: rgba(255,255,255,.6);
  padding: 20px; text-align: center;
}
.editorial-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px 22px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.editorial-cat {
  display: block; font-size: 7px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 6px;
}
.editorial-name {
  font-family: var(--font-d); font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 300; color: #fff; line-height: 1.2;
}
.editorial-price {
  font-family: var(--font-d); font-size: 17px; color: rgba(255,255,255,.8);
  white-space: nowrap; flex-shrink: 0;
}

/* ── CATEGORY MOSAIC ────────────────────────────────────────────── */
.mosaic-section { overflow: hidden; }
.mosaic { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.mosaic-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item img {
  width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4;
  transition: transform var(--dur-slow) var(--ease-luxury), filter var(--dur-slow) ease;
  will-change: transform;
}
.mosaic-item.wide img { aspect-ratio: 16/10; }
.mosaic-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(0,0,0,.15);
  transition: background var(--dur-slow) ease; z-index: 1;
}
.mosaic-item:hover img  { transform: scale(1.04); }
.mosaic-item:hover::after { background: rgba(0,0,0,.05); }
.mosaic-fallback {
  aspect-ratio: 3/4; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 20px; text-align: center; position: relative; overflow: hidden;
}
.mosaic-item.wide .mosaic-fallback { aspect-ratio: 16/10; }
.mosaic-item:nth-child(1) .mosaic-fallback { background: linear-gradient(160deg, #080808 0%, #1a0010 50%, #3a001f 100%); }
.mosaic-item:nth-child(2) .mosaic-fallback { background: linear-gradient(160deg, var(--pink) 0%, var(--pink-d) 60%, #080808 100%); }
.mosaic-item:nth-child(3) .mosaic-fallback { background: linear-gradient(160deg, var(--blush) 0%, #EFC8D1 50%, rgba(212,96,122,.15) 100%); }
.mosaic-item:nth-child(4) .mosaic-fallback { background: linear-gradient(160deg, var(--charcoal) 0%, #3a001f 60%, var(--pink) 100%); }
.mosaic-item:nth-child(1) .mf-cat,
.mosaic-item:nth-child(2) .mf-cat,
.mosaic-item:nth-child(4) .mf-cat { color: rgba(255,255,255,.45); }
.mosaic-item:nth-child(3) .mf-cat { color: var(--pink-d); }
.mosaic-item:nth-child(1) .mf-name,
.mosaic-item:nth-child(2) .mf-name,
.mosaic-item:nth-child(4) .mf-name { color: #fff; }
.mosaic-item:nth-child(3) .mf-name { color: var(--black); }
.mf-cat  { font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.mf-name { font-family: var(--font-d); font-size: clamp(22px, 3vw, 40px); font-weight: 300; line-height: 1.12; letter-spacing: -0.01em; }
.mf-cta  {
  margin-top: 22px; font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px;
}
.mosaic-item:nth-child(3) .mf-cta { color: var(--pink-d); border-bottom-color: var(--pink-d); }
.mosaic-label {
  font-size: 8px; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 12px 0 8px; text-align: center; color: var(--ink3);
  background: var(--off-white);
}
@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2,1fr); }
  .mosaic-item.wide { grid-column: span 2; }
  .mosaic-item.wide img { aspect-ratio: 16/9; }
  .mosaic-item.wide .mosaic-fallback { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-item.wide { grid-column: 1/-1; }
  .mosaic-item.wide img { aspect-ratio: 3/2; }
  .mosaic-item.wide .mosaic-fallback { aspect-ratio: 3/2; }
}

/* ── BREAKER SECTIONS ───────────────────────────────────────────── */
.breaker {
  width: 100%; position: relative; overflow: hidden;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.breaker-1 { min-height: 88vh; }
.breaker-2 { min-height: 76vh; }
.breaker-bg { position: absolute; inset: 0; }
.breaker-bg img, .breaker-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform 8s ease; /* slow parallax on hover */
}
.breaker:hover .breaker-bg img { transform: scale(1.03); }
.breaker-bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(0,0,0,.44);
}
/* Ambient glow blobs */
.breaker-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.breaker-glow-1 {
  width: 500px; height: 500px; top: -120px; right: -60px;
  background: radial-gradient(circle, rgba(212,96,122,.12) 0%, transparent 60%);
  animation: blobDrift 12s ease-in-out infinite;
}
.breaker-glow-2 {
  width: 360px; height: 360px; bottom: -100px; left: -30px;
  background: radial-gradient(circle, rgba(212,96,122,.08) 0%, transparent 60%);
  animation: blobDrift 16s ease-in-out infinite reverse;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0,0); }
  33%  { transform: translate(20px,-15px); }
  66%  { transform: translate(-10px,10px); }
}
.breaker-inner {
  position: relative; z-index: 10;
  text-align: center; padding: 0 48px; max-width: 600px;
}
.breaker-eyebrow {
  font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 24px;
}
.breaker-headline {
  font-family: var(--font-d); font-size: clamp(32px, 5vw, 64px);
  font-weight: 300; line-height: 1.08; color: #fff; letter-spacing: -0.01em;
}
.breaker-headline em { font-style: italic; color: var(--pink-l); }
.breaker-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 36px; font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 4px;
  transition: color var(--dur-med) ease, border-color var(--dur-med) ease, gap var(--dur-med) ease;
}
.breaker-cta::after { content: '→'; font-size: 12px; transition: transform var(--dur-med) var(--ease-luxury); }
.breaker-cta:hover { color: #fff; border-bottom-color: var(--pink-l); gap: 20px; }
.breaker-cta:hover::after { transform: translateX(4px); }
@media (max-width: 640px) {
  .breaker-1 { min-height: 68vh; }
  .breaker-2 { min-height: 58vh; }
  .breaker-inner { padding: 0 24px; }
}

/* ── BRAND STORY ────────────────────────────────────────────────── */
#brand-story {
  background: var(--white); padding: 112px 48px; text-align: center;
}
.story-inner { max-width: 700px; margin: 0 auto; }
.story-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 8px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 24px;
}
.story-eyebrow::before, .story-eyebrow::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--pink); opacity: .5;
}
.story-heading {
  font-family: var(--font-d); font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300; line-height: 1.15; color: var(--black);
  margin-bottom: 28px; letter-spacing: -0.015em;
}
.story-body {
  font-size: .95rem; line-height: 1.9; color: #555;
  max-width: 580px; margin: 0 auto 40px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--black); color: var(--black);
  padding: 15px 44px; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; transition: var(--tr);
}
.btn-outline::after { content: '→'; font-size: 13px; transition: transform var(--dur-med) var(--ease-luxury); }
.btn-outline:hover { background: var(--black); color: var(--white); gap: 18px; }
.btn-outline:hover::after { transform: translateX(4px); }
@media (max-width: 640px) {
  #brand-story { padding: 72px 24px; }
}

/* ── MATERIALS STRIP ────────────────────────────────────────────── */
#materials-strip {
  background: var(--black); padding: 88px 48px; text-align: center;
  position: relative; overflow: hidden;
}
#materials-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(212,96,122,.1) 0%, transparent 70%);
  pointer-events: none;
}
.strip-title {
  font-family: var(--font-d); color: rgba(255,255,255,.7);
  font-size: .75rem; letter-spacing: 0.4em; text-transform: uppercase;
  margin-bottom: 60px; position: relative;
}
.materials-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 48px; max-width: 960px; margin: 0 auto; position: relative;
}
@media (max-width: 640px) { .materials-grid { grid-template-columns: repeat(2,1fr); gap: 36px; } }
.material-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.material-icon { font-size: 1.75rem; color: var(--pink-l); }
.material-item span {
  font-size: .72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); line-height: 1.6;
}

/* ── FEATURED SPREAD ────────────────────────────────────────────── */
.featured-section { padding: 104px 64px; background: var(--off-white); }
.featured-label {
  display: block; font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 64px;
}
.featured-spread {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center; margin-bottom: 96px;
}
.featured-spread:last-child { margin-bottom: 0; }
.featured-spread.flip { direction: rtl; }
.featured-spread.flip > * { direction: ltr; }
.featured-img-wrap {
  position: relative; overflow: hidden; cursor: pointer;
}
.featured-img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-luxury);
  will-change: transform;
}
.featured-img-wrap:hover img { transform: scale(1.04); }
.featured-copy-cat {
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink3); display: block; margin-bottom: 18px;
}
.featured-copy-name {
  font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.12; margin-bottom: 22px; color: var(--ink);
  letter-spacing: -0.01em;
}
.featured-copy-name em { font-style: italic; color: var(--pink); }
.featured-copy-desc { font-size: 14px; line-height: 1.85; color: var(--ink2); margin-bottom: 28px; }
.featured-copy-price {
  font-family: var(--font-d); font-size: 28px; margin-bottom: 32px;
  color: var(--ink); letter-spacing: -0.01em;
}
.featured-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--border2);
  padding-bottom: 4px; cursor: pointer;
  transition: color var(--dur-med) ease, border-color var(--dur-med) ease, gap var(--dur-med) ease;
}
.featured-cta::after { content: '→'; font-size: 12px; transition: transform var(--dur-med) var(--ease-luxury); }
.featured-cta:hover { color: var(--pink); border-bottom-color: var(--pink); gap: 18px; }
.featured-cta:hover::after { transform: translateX(4px); }
@media (max-width: 780px) {
  .featured-section { padding: 64px 24px; }
  .featured-spread { grid-template-columns: 1fr; gap: 32px; }
  .featured-spread.flip { direction: ltr; }
}

/* ── NEWSLETTER ─────────────────────────────────────────────────── */
#newsletter {
  background: var(--black); padding: 112px 48px; text-align: center;
  position: relative; overflow: hidden;
}
#newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,96,122,.1) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; position: relative; }
.newsletter-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 8px; letter-spacing: 0.4em;
  color: rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 24px;
}
.newsletter-eyebrow::before, .newsletter-eyebrow::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--pink); opacity: .4;
}
#newsletter h2 {
  font-family: var(--font-d); color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 300;
  letter-spacing: -0.01em; margin-bottom: 18px;
}
#newsletter p {
  color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.8;
  max-width: 440px; margin: 0 auto 44px;
}
.newsletter-form {
  display: flex; align-items: flex-end; justify-content: center; gap: 0; flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: var(--white); padding: 14px 0;
  width: 280px; font-size: 14px; outline: none;
  transition: border-bottom-color var(--dur-med) ease;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input[type="email"]:focus { border-bottom-color: var(--pink-l); }
.btn-newsletter {
  background: var(--pink); color: #fff; border: none;
  padding: 14px 32px; font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  margin-left: 16px; transition: background var(--dur-med) ease, transform var(--dur-fast) ease;
}
.btn-newsletter:hover { background: var(--pink-d); transform: translateY(-1px); }
@media (max-width: 640px) {
  #newsletter { padding: 72px 24px; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input[type="email"] { width: 100%; }
  .btn-newsletter { width: 100%; margin-left: 0; margin-top: 14px; }
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer { background: var(--black); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 72px 56px 44px; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; margin-bottom: 56px; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
}
.footer-brand-name {
  font-family: var(--font-d); font-size: 13px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.75; max-width: 300px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-social-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); transition: color var(--dur-med) ease;
}
.footer-social-link:hover { color: rgba(255,255,255,.75); }
.footer-social-link svg { width: 14px; height: 14px; }
.footer-wa-cta {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500;
  transition: background var(--dur-med) ease, border-color var(--dur-med) ease; white-space: nowrap;
}
.footer-wa-cta:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: #fff; }
.footer-wa-cta svg { width: 22px; height: 22px; color: #25D366; flex-shrink: 0; }
.footer-wa-sub { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 3px; font-weight: 400; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 26px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 10px; color: rgba(255,255,255,.22); letter-spacing: 0.08em;
}
@media (max-width: 780px) {
  .footer-inner { padding: 52px 24px 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-wa-cta { white-space: normal; }
}

/* ── PRODUCT MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,8,8,.75); backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  align-items: center; justify-content: center; padding: 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fadeIn .22s ease; }
.modal-box {
  background: var(--white); width: 100%; max-width: 980px; position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.28), 0 8px 32px rgba(0,0,0,.16);
  animation: slideUp .32s var(--ease-luxury);
  overflow: hidden; margin: auto;
}
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(28px) scale(.99); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 10; }
.btn-modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.07); border: none; font-size: 13px;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) ease;
}
.btn-modal-close:hover { background: rgba(0,0,0,.16); }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
@media (max-width: 640px) { .modal-content { grid-template-columns: 1fr; } }

/* Gallery */
.modal-gallery {
  background: var(--card-bg);
  display: flex; flex-direction: column; overflow: hidden; position: relative;
}
@media (max-width: 640px) { .modal-gallery { max-height: 55vw; } }
.gallery-main {
  flex: 1; position: relative; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card-bg); overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-main-placeholder { font-size: 60px; opacity: .1; }
.gallery-nav {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.gallery-nav-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(8,8,8,.6); color: #fff; border: none;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); transition: background var(--dur-fast) ease;
}
.gallery-nav-btn:hover { background: rgba(8,8,8,.88); }
.gallery-nav-btn.hidden-nav { display: none; }
.gallery-thumbs {
  display: flex; gap: 6px; padding: 10px 12px;
  overflow-x: auto; flex-shrink: 0; background: var(--white);
  border-top: 1px solid var(--border);
}
.gallery-thumb {
  width: 48px; height: 48px; overflow: hidden;
  border: 1.5px solid transparent; cursor: pointer; flex-shrink: 0;
  transition: border-color var(--dur-med) ease;
}
.gallery-thumb img, .gallery-thumb video { width: 100%; height: 100%; object-fit: contain; padding: 2px; }
.gallery-thumb-video { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--charcoal); color: rgba(255,255,255,.6); font-size: 16px; }
.gallery-thumb.active { border-color: var(--pink); }
.gallery-counter { font-size: 9px; color: var(--ink3); text-align: center; padding: 4px; }

/* Modal info */
.modal-info {
  padding: 36px 32px 32px; display: flex; flex-direction: column; gap: 0;
  overflow-y: auto; max-height: min(80vh, 620px);
}
.modal-breadcrumb { font-size: 8px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink3); margin-bottom: 12px; }
.modal-name {
  font-family: var(--font-d); font-size: clamp(22px, 3vw, 34px);
  font-weight: 400; line-height: 1.12; margin-bottom: 6px; color: var(--ink);
}
.modal-sub  { font-size: 11px; color: var(--ink3); margin-bottom: 16px; }
.modal-stock { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.modal-low-warn { font-size: 11px; color: var(--pink); }
.modal-pricing { margin-bottom: 18px; }
.price-full { font-family: var(--font-d); font-size: 28px; color: var(--ink); letter-spacing: -0.01em; }
.price-sale { font-size: 12px; color: var(--ink3); margin-top: 3px; }
.price-save { color: var(--pink); font-weight: 600; }
.modal-meta { margin-bottom: 18px; }
.meta-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; }
.meta-label { color: var(--ink3); }
.meta-val   { color: var(--ink); font-weight: 500; text-align: right; }
.info-tabs  { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 14px; flex-shrink: 0; }
.info-tab-btn {
  flex: 1; background: none; border: none; border-bottom: 1.5px solid transparent;
  padding: 9px 4px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3); cursor: pointer; transition: var(--tr); text-align: center;
}
.info-tab-btn:hover { color: var(--ink); }
.info-tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }
.info-tab-panel { display: none; padding: 12px 0 4px; font-size: 13px; color: var(--ink2); line-height: 1.85; flex-shrink: 0; }
.info-tab-panel.active { display: block; }
.info-tab-panel p + p { margin-top: 8px; }
.btn-modal-order {
  width: 100%; padding: 15px; margin-top: auto; padding-top: 24px;
  background: var(--gold); color: #fff; border: none;
  font-size: 13px; font-weight: 600; display: flex;
  align-items: center; justify-content: center; gap: 10px;
  transition: background var(--dur-med) ease, transform var(--dur-fast) ease;
}
.btn-modal-order:hover:not(:disabled) { background: var(--gold-d); transform: translateY(-1px); }
.btn-modal-order:active { transform: translateY(0); }
.btn-modal-order:disabled { background: rgba(0,0,0,.08); color: var(--ink3); cursor: not-allowed; }
.btn-modal-order svg { width: 18px; height: 18px; }

/* ── COMPARE ────────────────────────────────────────────────────── */
.compare-tray {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--black); padding: 12px clamp(16px, 4vw, 32px);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .35s var(--ease-luxury);
  box-shadow: 0 -6px 40px rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.05);
}
.compare-tray.visible { transform: translateY(0); }
.compare-tray-label  { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); white-space: nowrap; }
.compare-tray-items  { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; align-items: center; }
.compare-chip { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 5px 10px 5px 7px; }
.compare-chip img { width: 26px; height: 26px; object-fit: contain; background: var(--blush); }
.compare-chip span { font-size: 11px; color: #fff; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compare-chip-rm { background: none; border: none; color: rgba(255,255,255,.35); cursor: pointer; font-size: 13px; padding: 0 2px; line-height: 1; transition: color var(--dur-fast) ease; }
.compare-chip-rm:hover { color: #fff; }
.btn-compare-go { padding: 9px 22px; background: var(--pink); color: #fff; border: none; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background var(--dur-med) ease; }
.btn-compare-go:hover { background: var(--pink-d); }
.btn-compare-clear { padding: 8px 14px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); font-size: 11px; cursor: pointer; white-space: nowrap; transition: var(--tr); }
.btn-compare-clear:hover { background: rgba(255,255,255,.12); color: #fff; }
@media (max-width: 500px) { .compare-tray { flex-direction: column; align-items: stretch; gap: 10px; } }

.compare-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(8,8,8,.8); backdrop-filter: blur(10px); padding: 20px; align-items: flex-start; justify-content: center; overflow-y: auto; }
.compare-overlay.open { display: flex; animation: fadeIn .22s ease; }
.compare-box { background: var(--white); width: 100%; max-width: 1080px; box-shadow: var(--sh-lg); overflow: hidden; animation: slideUp .28s var(--ease-luxury); margin: auto; }
.compare-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); background: var(--white); }
.compare-header h2 { font-family: var(--font-d); font-size: 24px; font-weight: 400; }
.compare-grid-scroll { overflow-x: auto; }
.compare-grid { display: grid; min-width: 0; }
.compare-cell { padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 13px; display: flex; align-items: center; min-height: 48px; }
.compare-cell-hdr { padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--ink3); background: var(--off-white); display: flex; align-items: center; min-height: 48px; }
.compare-img-cell { aspect-ratio: 3/4; background: var(--card-bg); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
.compare-img-cell img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 10px; }
.compare-item-col { border-left: 1px solid var(--border); }
.compare-price { font-family: var(--font-d); font-size: 20px; }
.compare-order-btn { display: flex; align-items: center; gap: 6px; padding: 9px 16px; background: var(--gold); color: #fff; border: none; font-size: 11px; font-weight: 600; cursor: pointer; transition: background var(--dur-med) ease; }
.compare-order-btn:hover:not(:disabled) { background: var(--gold-d); }
.compare-order-btn:disabled { background: rgba(0,0,0,.08); color: var(--ink3); cursor: not-allowed; }

/* ── CAPTURE MODAL ──────────────────────────────────────────────── */
#capture-modal {
  display: none; position: fixed; inset: 0; z-index: 1500;
  background: rgba(8,8,8,.72); backdrop-filter: blur(8px);
  align-items: flex-end; justify-content: center; padding: 0;
}
#capture-modal.open { display: flex; animation: fadeIn .22s ease; }
.capture-box {
  background: var(--white); border-top-left-radius: 16px; border-top-right-radius: 16px;
  width: 100%; max-width: 520px;
  box-shadow: 0 -20px 60px rgba(0,0,0,.22); overflow: hidden;
  animation: slideUp .32s var(--ease-luxury);
}

/* ── TOAST ──────────────────────────────────────────────────────── */
.store-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(24px);
  background: var(--black); color: #fff;
  padding: 12px 28px; font-size: 12px; font-weight: 500;
  border-radius: 50px;
  z-index: 3000; opacity: 0; transition: all .3s var(--ease-luxury);
  white-space: nowrap; pointer-events: none; max-width: 92vw;
  border: 1px solid rgba(255,255,255,.07);
  letter-spacing: .02em;
}
.store-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.store-toast.toast-error   { background: #7a1f1f; border-color: rgba(255,80,80,.2); }
.store-toast.toast-success { background: #0e4426; border-color: rgba(37,211,102,.2); }

/* ── SCROLL TOP ─────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink); color: #fff; border: none;
  box-shadow: 0 4px 18px rgba(212,96,122,.35);
  opacity: 0; transform: translateY(16px);
  transition: opacity .32s var(--ease-luxury), transform .32s var(--ease-luxury), background var(--dur-med) ease;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--pink-d); }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 800ms var(--ease-luxury), transform 800ms var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays for child reveals */
.reveal-stagger > *:nth-child(1) { transition-delay: 0ms;   }
.reveal-stagger > *:nth-child(2) { transition-delay: 80ms;  }
.reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ── GLASSMORPHISM UTILITIES ────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.08);
}
.glass-dark {
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.06);
}

/* ── MAGNETIC BUTTON TARGET ─────────────────────────────────────── */
.mag-btn { position: relative; display: inline-flex; }
.mag-btn-inner {
  transition: transform var(--dur-med) var(--ease-luxury);
  will-change: transform;
}

/* ── COUNT-UP UTILITY ───────────────────────────────────────────── */
[data-countup] { font-variant-numeric: tabular-nums; }

/* ── PAGE TRANSITION ────────────────────────────────────────────── */
.page-transitioning * { pointer-events: none !important; }
#page-flash {
  position: fixed; inset: 0; z-index: 9998; background: var(--black);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-silk);
}
#page-flash.flash { opacity: .7; }

/* ── LOADING SKELETON ───────────────────────────────────────────── */
.skel {
  background: linear-gradient(90deg, var(--card-bg) 25%, #ede8ea 50%, var(--card-bg) 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.6s ease-in-out infinite;
}
@keyframes skelShimmer {
  to { background-position: -200% 0; }
}

/* ── GLOBAL KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1; }
}

/* ── SELECTION COLOR ────────────────────────────────────────────── */
::selection { background: rgba(212,96,122,.18); color: var(--ink); }

/* ── ORDER CAPTURE MODAL ────────────────────────────────────────── */
#capture-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.48); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease-luxury), visibility .28s;
}
#capture-modal.open { opacity: 1; visibility: visible; }
#capture-modal.open .capture-box {
  transform: translateY(0) scale(1);
}

.capture-box {
  background: var(--white); width: 100%; max-width: 420px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.12);
  transform: translateY(20px) scale(.98);
  transition: transform .32s var(--ease-luxury);
  max-height: 92dvh; overflow-y: auto;
}

.capture-product {
  padding: 20px 28px 0;
  display: flex; align-items: flex-start; gap: 16px;
}
.capture-product-img {
  width: 70px; height: 70px; border-radius: 10px;
  background: var(--card-bg); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.capture-product-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.capture-img-placeholder { font-size: 28px; opacity: .3; }
.capture-product-info { flex: 1; min-width: 0; }
.capture-product-eyebrow {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 4px;
}
.capture-product-name {
  font-family: var(--font-d); font-size: 18px; font-weight: 400;
  color: var(--ink); line-height: 1.25;
}
.capture-product-sub  { font-size: 12px; color: var(--ink3); margin-top: 3px; }
.capture-product-price {
  font-family: var(--font-d); font-size: 20px; color: var(--ink); margin-top: 6px;
}

.capture-form {
  padding: 20px 28px; display: flex; flex-direction: column; gap: 14px;
}
.capture-field { display: flex; flex-direction: column; gap: 6px; }
.capture-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: var(--ink3);
}
.capture-label-opt { font-weight: 400; text-transform: none; letter-spacing: 0; }
.capture-input {
  width: 100%; padding: 11px 14px; border-radius: 9px;
  border: 1.5px solid var(--border2);
  font-family: var(--font-b); font-size: 14px; outline: none;
  background: var(--white); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.capture-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(212,96,122,.12);
}
.capture-error {
  display: none; padding: 9px 13px;
  background: var(--blush); border-radius: 8px;
  font-size: 12.5px; color: var(--pink-d);
  border: 1px solid rgba(168,69,92,.14);
}
.capture-error.visible { display: block; }

.capture-actions {
  padding: 0 28px 24px; display: flex; gap: 10px;
}
.btn-capture-cancel {
  flex: 1; padding: 13px; border-radius: 9px;
  border: 1.5px solid var(--border2); background: transparent;
  font-family: var(--font-b); font-size: 14px; cursor: pointer;
  color: var(--ink2); transition: background .18s;
}
.btn-capture-cancel:hover { background: var(--card-bg); }
.btn-capture-submit {
  flex: 2; padding: 13px; border-radius: 9px;
  background: var(--gold); color: #fff; border: none;
  font-family: var(--font-b); font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 8px; transition: background .18s;
}
.btn-capture-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-capture-submit:hover { background: var(--gold-d); }
.btn-capture-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ── NEWSLETTER SUCCESS ──────────────────────────────────────────── */
.newsletter-success {
  color: rgba(255,255,255,.9); margin-top: 12px; font-size: 13px;
  text-align: center; animation: fadeInUp .4s var(--ease-luxury) both;
}

/* ── ORDER CONFIRMATION STRIP ───────────────────────────────────── */
.order-confirm-strip {
  background: var(--gold); color: #fff;
  text-align: center; padding: 12px 48px 12px 20px;
  font-size: 14px; font-weight: 500;
  position: relative; z-index: 100;
}
.order-confirm-strip code {
  background: rgba(255,255,255,.2); padding: 2px 8px; border-radius: 4px;
}
.order-confirm-close {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: #fff;
  font-size: 18px; cursor: pointer; line-height: 1;
  padding: 4px;
}

/* ── FILTER EMPTY STATE ─────────────────────────────────────────── */
.filter-empty { font-size: 12px; color: var(--ink3); }

/* ── SEARCH OVERLAY ─────────────────────────────────────────────── */
#search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-luxury), visibility .35s;
}
#search-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.search-overlay-inner {
  width: min(680px, 92vw);
  position: relative;
  padding-top: 2rem;
}
.search-overlay-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: var(--ink2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.search-overlay-close svg { width: 22px; height: 22px; }
.search-overlay-close:hover { color: var(--pink); }
.search-overlay-hint {
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1.4rem;
  text-align: center;
}
.search-overlay-field {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: .6rem;
  gap: .8rem;
}
.search-overlay-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ink3);
}
.search-overlay-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-s);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  caret-color: var(--pink);
  letter-spacing: .02em;
}
.search-overlay-input::placeholder { color: rgba(255,255,255,.22); }
.search-overlay-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink3);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color .2s;
}
.search-overlay-clear svg { width: 18px; height: 18px; }
.search-overlay-clear:hover { color: var(--pink); }
.search-overlay-count {
  font-family: var(--font-d);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink3);
  margin-top: 1rem;
  text-align: right;
  min-height: 1.2em;
}
