/* ============================================================
   KAP Vitrine — Complete Stylesheet
   Mockup classes + Legacy compat + Responsive
   ============================================================ */

/* ─── A. CSS Variables ─── */
/* NOTE: --kap stays in inline <style> (dynamic per tenant) */
:root {
  --noir: #0A0A0A;
  --noir-light: #141414;
  --noir-card: #1A1A1A;
  --noir-border: #2A2A2A;
  --cream: #F7F3EE;
  --cream-dark: #EDE8E0;
  --kap2: #D4710E;
  --gold: #C9A96E;
  --gris: #888;
  --gris-light: #AAA;
  --smoke: rgba(255,255,255,.06);
  --ghost: rgba(255,255,255,.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

/* ─── B. Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--noir);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
::selection { background: var(--kap); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--kap); border-radius: 3px; }

/* ─── C. Mockup Classes ─── */

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; background: var(--noir); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity .6s, visibility .6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .logo-anim {
  font-family: var(--sans); font-size: 42px; font-weight: 800;
  color: #fff; display: flex; align-items: center; gap: 4px;
}
#preloader .logo-anim span:first-child {
  background: var(--kap); padding: 6px 10px; border-radius: 6px; color: #fff;
}
#preloader .bar {
  width: 120px; height: 2px; background: var(--ghost);
  border-radius: 2px; overflow: hidden;
}
#preloader .bar-fill {
  height: 100%; background: var(--kap); animation: load 1.5s ease forwards;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed; width: 20px; height: 20px;
  border: 1.5px solid var(--kap); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform .15s, opacity .2s;
  mix-blend-mode: difference;
}
.cursor.grow { transform: scale(3); opacity: .5; }

/* ── Nav ── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .5s;
}
nav#nav.solid {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(24px) saturate(1.4);
  padding: 16px 56px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.n-logo { display: flex; align-items: center; gap: 6px; text-decoration: none; }
.n-logo-k {
  background: var(--kap); color: #fff; font-weight: 800; font-size: 20px;
  padding: 5px 8px; border-radius: 5px; line-height: 1;
}
.n-logo-t { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: .01em; }
.n-links { display: flex; gap: 36px; }
.n-links a {
  color: rgba(255,255,255,.5); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; transition: color .3s; position: relative;
}
.n-links a:hover { color: #fff; }
.n-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--kap); transition: width .3s;
}
.n-links a:hover::after { width: 100%; }
.n-actions { display: flex; align-items: center; gap: 16px; }
.n-phone {
  color: rgba(255,255,255,.5); font-size: 12px; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color .3s; font-weight: 500;
}
.n-phone:hover { color: #fff; }
.n-cta {
  background: var(--kap); color: #fff; padding: 10px 26px; border-radius: 99px;
  font-size: 11px; font-weight: 700; text-decoration: none; text-transform: uppercase;
  letter-spacing: .08em; transition: all .35s; border: none; cursor: pointer;
  font-family: var(--sans);
}
.n-cta:hover { background: #fff; color: var(--noir); box-shadow: 0 0 40px rgba(230,126,34,.3); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cream);
  position: absolute; left: 4px; transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.97); backdrop-filter: blur(20px);
  z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--cream); opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s;
}
.mobile-nav.open a { opacity: 1; transform: translateY(0); }
.mobile-nav.open a:nth-child(2) { transition-delay: .05s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .1s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .15s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .2s; }
.mobile-nav.open a:nth-child(6) { transition-delay: .25s; }
.mobile-nav.open a:nth-child(7) { transition-delay: .3s; }

/* ── Hero ── */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: -20px;
  background: linear-gradient(160deg, #1a1510 0%, #0e0c0a 30%, #151210 60%, #0a0a0a 100%);
  filter: brightness(.8);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .5;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-mosaic { position: absolute; inset: 0; z-index: 1; opacity: .06; }
.hero-mosaic div {
  position: absolute; border: 1px solid rgba(255,255,255,.15);
  animation: tileFloat 20s infinite ease-in-out;
}
.hero-content {
  position: relative; z-index: 5;
  padding: 0 56px; max-width: 800px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border: 1px solid rgba(230,126,34,.35);
  border-radius: 99px; font-size: 11px; font-weight: 600;
  color: var(--kap); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 36px; opacity: 0; animation: riseIn .9s .5s forwards;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--kap); animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 400; line-height: .92;
  color: #fff; margin-bottom: 28px;
  opacity: 0; animation: riseIn .9s .7s forwards;
}
.hero h1 strong { font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--kap); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.4);
  line-height: 1.7; max-width: 480px; margin-bottom: 44px;
  opacity: 0; animation: riseIn .9s .9s forwards;
}
.hero-btns {
  display: flex; gap: 14px;
  opacity: 0; animation: riseIn .9s 1.1s forwards;
}
.h-btn {
  padding: 16px 36px; border-radius: 99px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .35s; border: none; cursor: pointer;
  font-family: var(--sans); letter-spacing: .03em;
}
.h-btn-fill { background: var(--kap); color: #fff; }
.h-btn-fill:hover {
  background: #fff; color: var(--noir);
  transform: translateY(-2px); box-shadow: 0 20px 60px rgba(230,126,34,.25);
}
.h-btn-ghost {
  background: none; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
}
.h-btn-ghost:hover { color: #fff; border-color: #fff; }
.h-btn .material-symbols-outlined { font-size: 18px; }

/* Side vertical text */
.hero-side {
  position: absolute; right: 56px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: center;
  z-index: 5; font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.15); white-space: nowrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: float 3s infinite;
}
.hero-scroll span:first-child {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.hero-scroll .material-symbols-outlined { font-size: 18px; color: rgba(255,255,255,.2); }

/* ── Sections Common ── */
.sec { min-height: 100vh; position: relative; overflow: hidden; }
.sec-pad { padding: 120px 56px; }
.label {
  font-size: 10px; font-weight: 700; color: var(--kap);
  text-transform: uppercase; letter-spacing: .18em;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.label .line { width: 36px; height: 1px; background: var(--kap); }
.heading {
  font-family: var(--serif); font-size: clamp(38px, 5vw, 64px);
  font-weight: 400; line-height: 1.05; margin-bottom: 14px; color: #fff;
}
.heading strong { font-weight: 700; }
.heading em { font-style: italic; color: var(--kap); }
.subtext {
  font-size: 15px; color: rgba(255,255,255,.35);
  line-height: 1.7; max-width: 500px; margin-bottom: 48px;
}

/* ── Countdown Strip ── */
.cd-strip {
  background: var(--kap); padding: 14px 56px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  position: relative; overflow: hidden;
}
.cd-strip::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 300px, rgba(0,0,0,.04) 300px, rgba(0,0,0,.04) 600px);
}
.cd-label {
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .06em;
  display: flex; align-items: center; gap: 8px;
}
.cd-boxes { display: flex; gap: 8px; }
.cd-box {
  background: rgba(0,0,0,.18); border-radius: 8px;
  padding: 6px 14px; text-align: center; min-width: 58px;
}
.cd-box-v {
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1.1;
}
.cd-box-l {
  font-size: 7px; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.6);
}
.cd-end { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }

/* ── Promos Grid ── */
.promos { background: var(--cream); color: var(--noir); }
.promos .heading { color: var(--noir); }
.promos .subtext { color: rgba(10,10,10,.4); }
.promos .label { color: var(--kap2); }
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.p-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  position: relative; transition: all .5s cubic-bezier(.22,1,.36,1);
  cursor: pointer; box-shadow: 0 2px 20px rgba(0,0,0,.03);
  text-decoration: none; display: block; color: var(--noir);
}
.p-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,.1); }
.p-card-img { height: 260px; position: relative; overflow: hidden; }
.p-card-img .bg {
  position: absolute; inset: 0;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.p-card:hover .bg { transform: scale(1.1); }
.p-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 99px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; z-index: 2; color: #fff;
}
.p-badge.sale { background: var(--kap); }
.p-badge.new { background: var(--noir); }
.p-old {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  color: #fff; padding: 4px 12px; border-radius: 99px;
  font-size: 11px; text-decoration: line-through; z-index: 2;
}
.p-body { padding: 22px; }
.p-name {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--noir); margin-bottom: 2px;
}
.p-format {
  font-size: 11px; color: rgba(10,10,10,.4);
  margin-bottom: 14px; font-weight: 500;
}
.p-price { font-size: 34px; font-weight: 800; color: var(--noir); line-height: 1; }
.p-price span { font-size: 13px; color: rgba(10,10,10,.35); font-weight: 500; }
.p-tags { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.p-tag {
  font-size: 9px; padding: 4px 10px; border-radius: 99px;
  border: 1px solid rgba(10,10,10,.1); color: rgba(10,10,10,.45); font-weight: 500;
}
.p-arrow {
  position: absolute; bottom: 22px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--noir); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px) scale(.8);
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.p-card:hover .p-arrow { opacity: 1; transform: translateY(0) scale(1); }
.p-arrow .material-symbols-outlined { color: #fff; font-size: 18px; }

/* ── Featured (Split screen) ── */
.feat { display: grid; grid-template-columns: 1fr 1fr; background: var(--noir); }
.feat-img { position: relative; overflow: hidden; min-height: 100vh; }
.feat-img .big {
  position: absolute; inset: -30px;
  transition: transform 12s ease-out;
  background-size: cover; background-position: center;
}
.feat:hover .big { transform: scale(1.04); }
.feat-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--noir) 100%);
}
.feat-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 72px;
}
.feat-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.f-spec {
  padding: 18px; background: var(--smoke);
  border: 1px solid var(--ghost); border-radius: 14px;
}
.f-spec-l {
  font-size: 9px; color: rgba(255,255,255,.25);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px;
}
.f-spec-v { font-size: 15px; font-weight: 700; color: #fff; }
.feat-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 36px; }
.fp-old { font-size: 22px; color: rgba(255,255,255,.2); text-decoration: line-through; }
.fp-now { font-family: var(--serif); font-size: 56px; font-weight: 700; color: var(--kap); }
.fp-unit { font-size: 15px; color: rgba(255,255,255,.3); }

/* ── Social Mosaic ── */
.social-sec { background: #fff; color: var(--noir); }
.social-sec .heading { color: var(--noir); }
.social-sec .subtext { color: rgba(10,10,10,.35); }
.s-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 200px 200px; gap: 4px;
}
.s-grid .tall { grid-row: span 2; }
.s-item { position: relative; overflow: hidden; cursor: pointer; }
.s-item .s-bg {
  position: absolute; inset: 0;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  background-size: cover; background-position: center;
}
.s-item:hover .s-bg { transform: scale(1.12); }
.s-item .s-ov {
  position: absolute; inset: 0; background: rgba(10,10,10,.6);
  backdrop-filter: blur(2px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: opacity .35s;
}
.s-item:hover .s-ov { opacity: 1; }
.s-ov-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.s-ov-icon .material-symbols-outlined { color: #fff; font-size: 16px; }
.s-ov-text {
  color: #fff; font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
}
.s-ov-likes { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 500; }

/* ── Calculator ── */
.calc {
  background: var(--cream); color: var(--noir);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.calc .heading { color: var(--noir); }
.calc .subtext { color: rgba(10,10,10,.4); }
.calc-mock {
  background: #fff; border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,.08);
  padding: 40px; position: relative; overflow: hidden;
}
.calc-mock::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: var(--kap);
  opacity: .06; border-radius: 50%; filter: blur(60px);
}
.calc-mock h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  margin-bottom: 20px;
}
.c-row { display: flex; gap: 12px; margin-bottom: 16px; }
.c-input {
  flex: 1; padding: 14px 18px; border: 2px solid #eee;
  border-radius: 14px; font-size: 14px; font-family: var(--sans);
  background: #fafafa; color: var(--noir); transition: border-color .2s;
}
.c-input:focus { outline: none; border-color: var(--kap); }
.c-prod { font-size: 12px; color: rgba(10,10,10,.4); margin-bottom: 20px; }
.c-prod strong { color: var(--noir); }
.c-result {
  background: var(--noir); border-radius: 18px; padding: 28px; text-align: center;
}
.c-result-v {
  font-family: var(--serif); font-size: 52px; font-weight: 700; color: var(--kap);
}
.c-result-l { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; }
.c-send {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; background: var(--kap); color: #fff;
  padding: 12px 28px; border-radius: 99px;
  font-size: 12px; font-weight: 700; border: none; cursor: pointer;
  font-family: var(--sans); transition: all .3s;
}
.c-send:hover { background: var(--kap2); transform: translateY(-2px); }

/* ── Store ── */
.store-sec {
  background: var(--noir);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.store-map {
  width: 100%; aspect-ratio: 16/10; border-radius: 24px;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, #12121e, #1a1a2e);
}
.store-map-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.store-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.map-pin {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--kap);
  display: flex; align-items: center; justify-content: center;
  animation: pinFloat 3s infinite ease-in-out;
  box-shadow: 0 12px 40px rgba(230,126,34,.35);
}
.map-label { color: rgba(255,255,255,.25); font-size: 11px; font-weight: 500; }
.store-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.sd { display: flex; align-items: start; gap: 14px; }
.sd-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--smoke); border: 1px solid var(--ghost);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sd-icon .material-symbols-outlined { color: var(--kap); font-size: 18px; }
.sd-text { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.5; }
.sd-text strong { color: #fff; display: block; font-weight: 700; }
.hours { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 32px; }
.hr {
  display: flex; justify-content: space-between;
  padding: 8px 14px; border-radius: 8px;
  background: rgba(255,255,255,.02); font-size: 11px;
}
.hr-d { color: rgba(255,255,255,.3); }
.hr-t { color: #fff; font-weight: 600; }
.hr.now { background: rgba(230,126,34,.08); border: 1px solid rgba(230,126,34,.15); }
.hr.now .hr-d { color: var(--kap); }
.store-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.s-btn {
  padding: 12px 26px; border-radius: 99px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; border: none; cursor: pointer; font-family: var(--sans);
}
.s-btn-kap { background: var(--kap); color: #fff; }
.s-btn-kap:hover { background: var(--kap2); }
.s-btn-o { background: none; color: #fff; border: 1px solid rgba(255,255,255,.15); }
.s-btn-o:hover { border-color: #fff; }
.s-btn-wa { background: rgba(37,211,102,.08); color: #25D366; border: 1px solid rgba(37,211,102,.2); }
.s-btn-wa:hover { background: rgba(37,211,102,.15); }
.s-btn .material-symbols-outlined { font-size: 16px; }

/* ── Footer ── */
footer.site-footer {
  padding: 64px 56px 28px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.03);
}
.ft-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.ft-brand p {
  font-size: 12px; color: rgba(255,255,255,.2);
  line-height: 1.7; max-width: 300px; margin-top: 14px;
}
.ft-col-t {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.ft-col a {
  display: block; font-size: 12px; color: rgba(255,255,255,.2);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.ft-col a:hover { color: #fff; }
.ft-bot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.03);
  font-size: 10px; color: rgba(255,255,255,.12);
}
.ft-socials { display: flex; gap: 10px; }
.ft-s {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s;
}
.ft-s:hover { background: var(--kap); }
.ft-s .material-symbols-outlined { color: #fff; font-size: 15px; }

/* ── Live Bar ── */
.live {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10,10,10,.88); backdrop-filter: blur(20px) saturate(1.2);
  padding: 10px 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.04);
  transform: translateY(100%); transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.live.on { transform: translateY(0); }
.live-left {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.live-left strong { color: #fff; }
.l-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #27AE60; animation: pulse 2s infinite;
}
.l-dot.closed { background: #DC2626; }

/* ── Scroll Reveal (new) ── */
.rv {
  opacity: 0; transform: translateY(45px);
  transition: all .9s cubic-bezier(.22,1,.36,1);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; }
.rv-d5 { transition-delay: .5s; }

/* ── Flash Messages ── */
.flash-success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  color: #10B981; padding: 12px 20px;
  font-size: 14px; border-radius: 2px; margin-bottom: 24px;
}

/* ─── D. Animations ─── */
@keyframes riseIn { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.7); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes tileFloat { 0%, 100% { opacity: .3; transform: translate(0,0) rotate(0deg); } 25% { opacity: .6; transform: translate(10px,-20px) rotate(2deg); } 50% { opacity: .3; transform: translate(-5px,10px) rotate(-1deg); } 75% { opacity: .5; transform: translate(15px,5px) rotate(1.5deg); } }
@keyframes pinFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes load { to { width: 100%; } }

/* ─── E. Legacy Compat Classes ─── */

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Typography */
.font-serif { font-family: var(--serif); }
.font-mono { font-family: var(--mono); }
.text-kap { color: var(--kap); }
.text-cream { color: var(--cream); }
.text-gris { color: var(--gris); }
.text-gris-light { color: var(--gris-light); }

/* Eyebrow (legacy) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--kap);
  border: 1px solid var(--kap);
  padding: 6px 16px;
  border-radius: 100px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--kap); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* Buttons (legacy) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .5px; border-radius: 0; border: none; cursor: pointer;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
}
.btn-primary { background: var(--kap); color: #fff; }
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--noir); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--cream);
  border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* Section (legacy) */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-cream { background: var(--cream); color: var(--noir); }
.section-dark { background: var(--noir-light); }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; line-height: 1.2;
}
.section-link {
  font-size: 13px; font-weight: 500; color: var(--kap);
  letter-spacing: .5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; transition: gap .3s;
}
.section-link:hover { gap: 12px; }

/* Cards (legacy) */
.card {
  background: var(--noir-card); border: 1px solid var(--noir-border);
  border-radius: 2px; overflow: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s, border-color .4s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.1);
}
.card-light { background: #fff; border-color: #e5e2dc; color: var(--noir); }
.card-light:hover { box-shadow: 0 20px 60px rgba(0,0,0,.08); border-color: #d5d0c8; }
.card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--noir-light);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-body-sm { padding: 16px; }

/* Badge (legacy) */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  font-family: var(--mono); border-radius: 2px;
}
.badge-promo { background: #DC2626; color: #fff; }
.badge-new { background: var(--kap); color: #fff; }
.badge-format { background: rgba(255,255,255,.1); color: var(--cream); backdrop-filter: blur(8px); }
.badge-format-light { background: rgba(0,0,0,.06); color: var(--noir); }
.badge-gel { background: rgba(59,130,246,.15); color: #60A5FA; }
.badge-antiderapant { background: rgba(234,179,8,.15); color: #FBBF24; }
.badge-gel-light { background: rgba(59,130,246,.08); color: #2563EB; }
.badge-antiderapant-light { background: rgba(234,179,8,.08); color: #B45309; }

/* Product (legacy) */
.product-name {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-meta {
  font-size: 12px; color: var(--gris);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-price { font-family: var(--mono); font-size: 15px; font-weight: 500; }
.product-price-promo { color: #DC2626; }
.product-price-old { font-size: 12px; color: var(--gris); text-decoration: line-through; }

/* Grid (legacy) */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Glass Panel (legacy) */
.glass {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px); border-radius: 2px;
}

/* Breadcrumb (legacy) */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gris); margin-bottom: 24px;
}
.breadcrumb a { transition: color .3s; }
.breadcrumb a:hover { color: var(--kap); }
.breadcrumb .sep { color: var(--noir-border); }

/* Forms (legacy) */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gris); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--noir-light);
  border: 1px solid var(--noir-border); color: var(--cream);
  padding: 12px 16px; font-family: var(--sans); font-size: 14px;
  border-radius: 2px; transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--kap);
  box-shadow: 0 0 0 3px var(--kap-glow);
}
.form-input::placeholder, .form-textarea::placeholder { color: #555; }
.form-error { font-size: 12px; color: #EF4444; margin-top: 4px; }
.form-checkbox {
  accent-color: var(--kap); width: 16px; height: 16px;
  margin-right: 8px; cursor: pointer;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}

/* Pagination (legacy) */
.pagination-dark { display: flex; align-items: center; gap: 4px; justify-content: center; margin-top: 40px; }
.pagination-dark a, .pagination-dark span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 8px; font-size: 13px;
  border: 1px solid var(--noir-border); color: var(--gris); transition: all .3s;
}
.pagination-dark a:hover { border-color: var(--kap); color: var(--cream); }
.pagination-dark .active { background: var(--kap); border-color: var(--kap); color: #fff; }
.pagination-dark .disabled { opacity: .3; pointer-events: none; }

/* Prose (legacy) */
.prose-dark { color: var(--gris-light); line-height: 1.8; font-size: 16px; }
.prose-dark h2, .prose-dark h3 { color: var(--cream); font-family: var(--serif); margin: 32px 0 16px; }
.prose-dark p { margin-bottom: 16px; }
.prose-dark a { color: var(--kap); text-decoration: underline; }
.prose-dark img { border-radius: 2px; margin: 24px 0; }
.prose-dark ul, .prose-dark ol { padding-left: 24px; margin-bottom: 16px; }
.prose-dark li { margin-bottom: 8px; }

/* Specs Table (legacy) */
.specs-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--noir-border); font-size: 14px;
}
.specs-label { color: var(--gris); }
.specs-value { color: var(--cream); font-weight: 500; }

/* Scroll Reveal (legacy) */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Utilities */
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.aspect-square { aspect-ratio: 1/1; }
.aspect-video { aspect-ratio: 16/9; }
[x-cloak] { display: none !important; }
.hide-mobile { display: block; }
.show-mobile { display: none; }

/* Horaires (legacy) */
.horaires-text { white-space: pre-line; font-size: 14px; color: var(--gris); line-height: 1.8; }

/* Campaign Strip (legacy) */
.campaign-strip {
  background: var(--kap); color: #fff;
  font-size: 13px; font-weight: 500; text-align: center;
  padding: 10px 24px; position: relative; z-index: 101;
}
.campaign-strip a { color: #fff; }
.campaign-strip .countdown-item {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--mono); font-weight: 500; margin-left: 12px;
}

/* ─── F. Responsive ─── */
@media (max-width: 1200px) {
  .p-grid { grid-template-columns: repeat(2, 1fr); }
  .feat { grid-template-columns: 1fr; }
  .feat-img { min-height: 50vh; }
  .calc { grid-template-columns: 1fr; }
  .store-sec { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1023px) {
  .n-links, .n-actions { display: none; }
  .nav-toggle { display: block; }
  nav#nav { padding: 16px 24px; }
  nav#nav.solid { padding: 12px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-side { display: none; }
  .sec-pad { padding: 80px 24px; }
  .cd-strip { padding: 14px 24px; flex-wrap: wrap; gap: 12px; }
  .cd-end { display: none; }
  .feat-body { padding: 60px 24px; }
  .live { padding: 10px 24px; }
  footer.site-footer { padding: 48px 24px 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .s-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 160px 160px; }
  .s-grid .tall { grid-row: span 1; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: clamp(40px, 10vw, 60px); }
  .hero-btns { flex-direction: column; }
  .p-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .s-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .s-item { aspect-ratio: 1/1; }
  .ft-top { grid-template-columns: 1fr; gap: 24px; }
  .ft-bot { flex-direction: column; gap: 8px; text-align: center; }
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .hours { grid-template-columns: 1fr; }
  .feat-specs { grid-template-columns: 1fr; }
  .feat-price { flex-wrap: wrap; }
  .fp-now { font-size: 42px; }
  .cd-boxes { gap: 4px; }
  .cd-box { min-width: 48px; padding: 4px 8px; }
  .cd-box-v { font-size: 18px; }
}

@media (max-width: 479px) {
  .grid-2 { grid-template-columns: 1fr; }
  .s-grid { grid-template-columns: 1fr; }
  .heading { font-size: clamp(30px, 8vw, 42px); }
  .h-btn { padding: 14px 24px; font-size: 12px; }
  .live-left { font-size: 10px; }
}
