/* ============================================================
   CH LIGHTING — Design System v4
   Font: DM Sans · Style: Lumeers-inspired Modern Minimalist
   Black & White · Pill Buttons · 25px Card Radius · Blur Navbar
   ============================================================ */

/* ── Tokens ── */
:root {
  --bg:           #ffffff;
  --bg-off:       #f7f7f7;
  --bg-dark:      #000000;
  --text:         #000000;
  --text-muted:   rgba(0,0,0,0.55);
  --text-light:   rgba(0,0,0,0.35);
  --accent:       #c8a96e;
  --accent-dark:  #a8894e;
  --border:       rgba(0,0,0,0.1);
  --border-soft:  rgba(0,0,0,0.06);
  --red:          #c72a21;

  --font: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --r-card: 25px;
  --r-btn:  50px;
  --r-sm:   10px;

  --nav-h:     70px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.25s;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.10);
  --container: 1700px;
  --gap:       30px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body  { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 15px; line-height: 1.55; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; font-size: inherit; }
ul    { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }

/* ══════════════════════════════════════════════════════
   SITE INTRO — Full-screen logo splash
══════════════════════════════════════════════════════ */
#site-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: opacity;
  animation: introFadeOut 0.8s ease-in-out 2.6s forwards;
}
.intro-logo {
  width: 320px;
  max-width: 62vw;
  position: relative;
  z-index: 3;
  filter: none;
  content: url('../images/logo-full.png'); /* always gold+white on black bg */
  will-change: transform, opacity;
  animation: introLogoIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.intro-tagline {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 18px;
  position: relative;
  z-index: 3;
  will-change: opacity;
  animation: introFadeIn 0.8s ease-out 0.9s both;
}

/* Large outer glow — warm ambient light */
.intro-glow {
  position: absolute;
  width: 90vmax;
  height: 90vmax;
  background: radial-gradient(circle,
    rgba(200,169,110,0.45) 0%,
    rgba(200,169,110,0.18) 25%,
    rgba(200,169,110,0.05) 55%,
    transparent 72%
  );
  border-radius: 50%;
  will-change: transform, opacity;
  animation: introGlowIn 0.9s ease-out 0.2s both,
             introGlowPulse 2s ease-in-out 1s infinite alternate;
  pointer-events: none;
  z-index: 1;
}

/* Sweeping spotlight beam — spins 360° fast */
.intro-rays {
  display: block;
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent       0deg,
    rgba(200,169,110,0.12) 12deg,
    rgba(255,220,130,0.45) 18deg,
    rgba(200,169,110,0.12) 24deg,
    transparent       40deg,
    transparent      360deg
  );
  will-change: transform;
  animation: introFadeIn 0.5s ease-out 0.4s both,
             introBeamSpin 1.2s linear 0.4s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes introLogoIn {
  from { opacity: 0; transform: translateY(14px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes introFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes introGlowIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes introGlowPulse {
  from { transform: scale(0.95); opacity: 0.8; }
  to   { transform: scale(1.08); opacity: 1; }
}
@keyframes introBeamSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes introFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ══════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════ */
.nav-top-bar {
  background: linear-gradient(90deg, #b01010 0%, #e01c1c 40%, #c91010 60%, #b01010 100%);
  background-size: 200% 100%;
  animation: topBarShine 4s ease-in-out infinite alternate;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 9px 24px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}
@keyframes topBarShine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ══════════════════════════════════════════════════════
   NAVBAR — Lumeers style
   Logo | MENU pill | ←flex→ | Search bar | Pro btn | Lang
══════════════════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Transparent state over hero */
#navbar.dark-hero {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
#navbar.dark-hero .nav-logo            { color: #fff; }
#navbar.dark-hero .nav-menu-btn        { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
#navbar.dark-hero .nav-menu-btn svg path,
#navbar.dark-hero .nav-menu-btn svg line { stroke: #fff; }
#navbar.dark-hero .nav-search-trigger  { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
#navbar.dark-hero .nav-search-trigger svg { color: rgba(255,255,255,0.6); }
#navbar.dark-hero .nav-pro-btn         { border-color: rgba(255,255,255,0.55); color: #fff; }
#navbar.dark-hero .nav-pro-btn:hover   { background: #fff; color: #000; border-color: #fff; }
#navbar.dark-hero .nav-icon-btn        { color: #fff; }
#navbar.dark-hero .nav-icon-btn:hover  { background: rgba(255,255,255,0.15); }
#navbar.dark-hero .nav-lang button     { color: rgba(255,255,255,0.7); }
#navbar.dark-hero .nav-lang span       { color: rgba(255,255,255,0.3); }

/* Scrolled state */
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* Default: dark logo (black + gold) for light backgrounds */
  content: url('../images/logo-dark.png');
  filter: none;
  transition: filter var(--t);
}
/* Dark hero (homepage over video): original gold + white */
#navbar.dark-hero .nav-logo-img {
  content: url('../images/logo-full.png');
}
/* Drawer header: dark logo on white background */
.drawer-logo .nav-logo-img {
  content: url('../images/logo-dark.png');
}
/* Footer: always gold + white (dark background) */
.footer-logo .nav-logo-img {
  content: url('../images/logo-full.png') !important;
  filter: none !important;
}
.nav-logo span { color: var(--accent); }

/* MENU pill button — Lumeers style */
.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 40px;
  background: var(--text);
  color: #fff;
  border: 1.5px solid var(--text);
  border-radius: var(--r-btn);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.22s var(--ease);
  font-family: inherit;
}
.nav-menu-btn:hover { opacity: 0.82; }
.nav-menu-btn svg   { flex-shrink: 0; }

/* Spacer — pushes search+right to the right */
.nav-spacer { flex: 1; }

/* Search trigger (pill) */
.nav-search-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  height: 40px;
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  min-width: 220px;
  max-width: 340px;
  flex: 1;
  transition: all var(--t);
  font-family: inherit;
}
.nav-search-trigger:hover { border-color: rgba(0,0,0,0.25); background: #fff; }
.nav-search-trigger svg   { flex-shrink: 0; color: var(--text-light); }

/* Pro button */
.nav-pro-btn {
  display: flex;
  align-items: center;
  padding: 0 22px;
  height: 44px;
  border: 1.5px solid var(--text);
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t), color var(--t), border-color var(--t);
  text-decoration: none;
}
.nav-pro-btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Nav icon buttons (account, bag) */
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text);
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.nav-icon-btn:hover { background: var(--bg-off); }

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
}
.nav-lang button {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 5px;
  color: var(--text-muted);
  transition: color var(--t);
  font-family: inherit;
}
.nav-lang button:hover,
.nav-lang button.active { color: var(--text); }
.nav-lang span { color: var(--border); font-size: 11px; }


/* ──────────────────────────────────────────────
   SEARCH OVERLAY
────────────────────────────────────────────── */
#search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
#search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay-top {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  flex-shrink: 0;
}
.search-overlay-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: inherit;
  background: transparent;
  color: var(--text);
}
.search-overlay-input::placeholder { color: var(--text-light); }
.search-overlay-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--t);
  flex-shrink: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1;
}
.search-overlay-close:hover { background: var(--bg-off); color: var(--text); }

.search-overlay-body {
  flex: 1;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-overlay-hint {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gap);
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Search results (live) */
.search-results-panel {
  background: #fff;
  max-height: 420px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px var(--gap);
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition: background var(--t);
  text-decoration: none;
  color: var(--text);
}
.search-result-item:hover { background: var(--bg-off); }
.search-result-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--bg-off);
  overflow: hidden;
  flex-shrink: 0;
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-name { font-size: 14px; font-weight: 500; }
.search-result-ref  { font-size: 12px; color: var(--text-muted); }

/* ──────────────────────────────────────────────
   DRAWER — Lumeers style
   Full-height left panel with category pills
────────────────────────────────────────────── */
#nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(460px, 92vw);
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}
#nav-drawer.open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}
.drawer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}
.drawer-logo span { color: var(--accent); }
.drawer-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: none;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1;
  transition: all var(--t);
  font-family: inherit;
}
.drawer-close:hover { border-color: var(--text); color: var(--text); }

/* Drawer body */
.drawer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}

/* Promo block */
.drawer-promo {
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  transition: opacity var(--t);
}
.drawer-promo:hover { opacity: 0.9; }
.drawer-promo-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* Category section */
.drawer-section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.drawer-cats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-off);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: background var(--t), color var(--t);
}
.drawer-cat-link:hover {
  background: #000;
  color: #fff;
}
.drawer-cat-link span:last-child {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.4;
  transition: opacity var(--t), transform var(--t);
}
.drawer-cat-link:hover span:last-child {
  opacity: 0.7;
  transform: translateX(3px);
}

/* Bottom links */
.drawer-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  margin-top: auto;
}
.drawer-footer-links a,
.drawer-footer-links button {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  transition: color var(--t);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.drawer-footer-links a:hover,
.drawer-footer-links button:hover { color: var(--text); }

/* Drawer lang */
.drawer-lang {
  display: flex;
  gap: 16px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border-soft);
}
.drawer-lang button {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.drawer-lang button.active,
.drawer-lang button:hover { color: var(--text); font-weight: 600; }

/* Overlay behind drawer */
#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
#drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-btn);
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-primary:hover {
  opacity: 0.82;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.12);
}
.btn-gold {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-outline-light {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.btn-ghost { color: var(--text-muted); border-color: transparent; }
.btn-ghost:hover { color: var(--text); background: var(--bg-off); }
.btn-sm { padding: 8px 18px; font-size: 12.5px; }
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { background: #1da851; border-color: #1da851; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* iOS Safari: dynamic viewport height — no jump on scroll */
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* Slide hero UP behind the sticky navbar so the
     transparent dark-hero navbar overlays the image */
  margin-top: calc(-1 * var(--nav-h));
  background: #0e0e0e; /* dark fallback if image missing */
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0)    20%,
    rgba(0,0,0,0)    45%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 var(--gap) 60px;
  max-width: min(700px, 50%);
}
.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.07;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--accent); font-weight: 300; }
.hero-sub {
  font-size: 16px;
  opacity: 0.82;
  margin-bottom: 32px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════ */
.section { padding: 70px 0; }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 600px;
}
.section-link {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--t);
  white-space: nowrap;
}
.section-link:hover { color: var(--text); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════════════════
   CATEGORY CARDS GRID — Lumeers style
══════════════════════════════════════════════════════ */
.collections-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  /* Hide scrollbar but keep scrolling */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.collections-grid::-webkit-scrollbar { display: none; }

.cat-item {
  flex: 0 0 calc(25% - 15px); /* 4 visible on desktop */
  min-width: 220px;
}

/* Each item = image card + text below */
.cat-item {
  display: flex;
  flex-direction: column;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 3/4;
  display: block;
  background: var(--bg-off);
  flex-shrink: 0;
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }

/* No overlay — clean image */
.cat-card-overlay { display: none; }
.cat-card-content { display: none; }

/* Text below the card */
.cat-caption {
  padding: 14px 4px 0;
}
.cat-caption-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.cat-caption-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Featured "Pièces Choisies" grid — 6 per row × 3 rows */
#featured-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) { #featured-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px)  { #featured-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 520px)  { #featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ── "Night showroom" — toggle Lumière turns the room dark and lights the lamps ── */
.featured-showroom { transition: background .7s ease; }
.featured-showroom .product-card,
.featured-showroom .card-media,
.featured-showroom .card-name,
.featured-showroom .section-title,
.featured-showroom .card-material,
.featured-showroom .card-ref { transition: background .7s ease, color .7s ease, box-shadow .7s ease, border-color .7s ease; }
body.lights-on .featured-showroom { background: #15110a; }
body.lights-on .featured-showroom .section-eyebrow { color: #c8a96e; }
body.lights-on .featured-showroom .section-title,
body.lights-on .featured-showroom .section-link,
body.lights-on .featured-showroom .lights-toggle-label { color: #f2ead8; }
body.lights-on .featured-showroom .product-card {
  background: #1d1810;
  border-color: rgba(200,169,110,.22);
  box-shadow: 0 10px 44px rgba(255,165,75,.18);
}
body.lights-on .featured-showroom .card-media { background: #0d0a06; }
/* warm glow blooming from each lamp */
body.lights-on .featured-showroom .card-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: radial-gradient(circle at 50% 44%, rgba(255,198,124,.42), rgba(255,170,80,.12) 46%, transparent 70%);
  mix-blend-mode: screen;
}
body.lights-on .featured-showroom .card-name { color: #f2ead8; }
body.lights-on .featured-showroom .card-ref,
body.lights-on .featured-showroom .card-material { color: #b6ab93; }

.product-card {
  cursor: pointer;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #fff;
  border: 1.5px solid transparent;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: rgba(200,169,110,.3);
}
/* Featured: no special border — same as regular cards */

.card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-off);
  border-radius: var(--r-card) var(--r-card) 0 0;
}
.card-media .img-off,
.card-media .img-on {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* show top of product, not cropped at center */
  transition: opacity 0.55s var(--ease), transform 0.65s var(--ease);
}
.card-media .img-off { opacity: 1; z-index: 1; }
.card-media .img-on  { opacity: 0; z-index: 2; transform: scale(1); }
body.lights-on .card-media .img-off { opacity: 0; }
body.lights-on .card-media .img-on  { opacity: 1; }
/* Hover (desktop) / touch (mobile): show lit photo (image 2) */
.product-card:hover .card-media .img-on,
.product-card.is-touched .card-media .img-on  { opacity: 1; }
.product-card:hover .card-media .img-off,
.product-card:hover .card-media .img-on,
.product-card.is-touched .card-media .img-off,
.product-card.is-touched .card-media .img-on  { transform: scale(1.04); }


.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--bg-off);
}
.ph-text { font-size: 10.5px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; opacity: .5; }

/* card-actions no longer used — buttons moved to card-info */

/* Cart badge on nav icon */
.nav-cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.card-info { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.card-ref   { font-size: 10.5px; color: var(--text-light); margin-bottom: 3px; letter-spacing: 0.08em; text-transform: uppercase; }
.card-name  { font-size: 14px; font-weight: 500; margin-bottom: 4px; line-height: 1.35; color: var(--text); }
.card-meta  { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.card-material { font-size: 12px; color: var(--text-muted); }
.card-dot   { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); flex-shrink: 0; }
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-btn);
  z-index: 3;
}

/* ══════════════════════════════════════════════════════
   LIGHTS TOGGLE
══════════════════════════════════════════════════════ */
.lights-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t), background var(--t);
  user-select: none;
}
.lights-toggle:hover { border-color: rgba(0,0,0,0.3); color: var(--text); }
.lights-toggle.on { border-color: var(--accent); color: var(--accent); background: rgba(200,169,110,0.06); }

.lights-toggle-track {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.15);
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.lights-toggle.on .lights-toggle-track { background: var(--accent); }
.lights-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.lights-toggle.on .lights-toggle-thumb { transform: translateX(14px); }

/* ══════════════════════════════════════════════════════
   FEATURED SECTION CONTROLS
══════════════════════════════════════════════════════ */
.featured-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ══════════════════════════════════════════════════════
   BRAND PILLARS (dark section)
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════
   AMBIANCE — 3-panel full-bleed photos
══════════════════════════════════════ */
.ambiance-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ambiance-panel {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.amb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.75s ease, transform 0.85s ease;
}
.amb-off { opacity: 1; z-index: 1; }
.amb-on  { opacity: 0; z-index: 2; }
body.lights-on .amb-on  { opacity: 1; }
body.lights-on .amb-off { opacity: 0; }
.ambiance-panel:hover .amb-off,
.ambiance-panel:hover .amb-on  { transform: scale(1.03); }

@media (max-width: 900px) {
  .ambiance-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .ambiance-panel { aspect-ratio: 2/3; }
}
@media (max-width: 600px) {
  .ambiance-grid { grid-template-columns: 1fr; gap: 3px; }
  .ambiance-panel { aspect-ratio: 4/3; }
}

/* ── Trust Strip (replaces dark brand-strip) ── */
/* ══════════════════════════════════════════════════════
   CH PRO — 3D PROMO BANNER (pure CSS, no media)
══════════════════════════════════════════════════════ */
.pro-banner-section {
  padding: 56px 0;
  background: var(--bg);
}
.pro3d {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  text-decoration: none;
  isolation: isolate;
  /* Deep luxury dark base */
  background:
    radial-gradient(120% 120% at 80% -10%, #2a2118 0%, #14110c 38%, #0a0a0a 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  perspective: 1200px;
  transition: box-shadow .5s var(--ease);
}
.pro3d:hover { box-shadow: 0 28px 80px rgba(0,0,0,.4); }

/* Animated gold aurora blobs */
.pro3d-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
.pro3d-aurora-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,169,110,.7), transparent 70%);
  top: -160px; right: -80px;
  animation: aurora1 14s ease-in-out infinite;
}
.pro3d-aurora-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(168,137,78,.5), transparent 70%);
  bottom: -180px; left: -60px;
  animation: aurora2 18s ease-in-out infinite;
}
@keyframes aurora1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-40px,30px) scale(1.15); }
}
@keyframes aurora2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(50px,-20px) scale(1.1); }
}

/* Subtle perspective grid floor */
.pro3d-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 75%);
}

/* Architectural blueprint — center decorative */
.pro3d-blueprint {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 52%;
  width: 380px;
  height: auto;
  transform: translate(-50%, -50%) rotate(-1deg);
  opacity: .45;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 72% 82% at 50% 50%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 72% 82% at 50% 50%, #000 50%, transparent 100%);
}
.pro3d-blueprint path,
.pro3d-blueprint circle {
  stroke: var(--accent);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}
.bp-dot { fill: none; }
.bp-dash { stroke-dasharray: 5 6; opacity: .7; }
.bp-dim  { stroke-dasharray: 2 4; opacity: .55; }
/* Draw-in animation */
.pro3d-blueprint .bp-line,
.pro3d-blueprint .bp-arc,
.pro3d-blueprint .bp-dot {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: bpDraw 3.5s ease forwards;
}
.pro3d-blueprint .bp-arc { animation-delay: .8s; }
.pro3d-blueprint .bp-dot { animation-delay: 1.2s; }
@keyframes bpDraw { to { stroke-dashoffset: 0; } }
/* gentle pulse on the fixture symbols after draw */
.pro3d:hover .bp-dot { opacity: 1; transition: opacity .4s; }

@media (max-width: 980px) { .pro3d-blueprint { display: none; } }

/* 3D stage — two columns */
.pro3d-stage {
  position: relative;
  z-index: 2;
  min-height: 440px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}

@keyframes floatA { 0%,100%{ transform: translateY(0) rotate(var(--rot,0deg)) } 50%{ transform: translateY(-18px) rotate(var(--rot,0deg)) } }
@keyframes floatB { 0%,100%{ transform: translateY(0) rotate(var(--rot,0deg)) } 50%{ transform: translateY(16px) rotate(var(--rot,0deg)) } }

/* ── LEFT branding ── */
.pro3d-left {
  position: relative;
  will-change: transform;
  transition: transform .25s ease-out;
}

/* Badge */
.pro-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,.14);
  border: 1px solid rgba(200,169,110,.35);
  color: #f0d8a8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.pro-banner-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200,169,110,.7);
  animation: proPulse 2s infinite;
}
@keyframes proPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,169,110,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(200,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,169,110,0); }
}

/* Big CH PRO wordmark */
.pro3d-wordmark {
  color: #fff;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.pro3d-wordmark em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #e8c98e 0%, #c8a96e 50%, #a8894e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 0.08em;
}

.pro3d-sub {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 24px;
}

/* Inline stats row */
.pro3d-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}
.pro3d-stat { display: flex; flex-direction: column; }
.pro3d-stat strong {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.pro3d-stat span {
  color: rgba(255,255,255,.55);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* CTA pill */
.pro-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: gap .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.pro-banner-btn svg { transition: transform .3s var(--ease); }
.pro3d:hover .pro-banner-btn {
  gap: 14px;
  background: var(--accent);
  color: #111;
  box-shadow: 0 10px 32px rgba(200,169,110,.55);
}
.pro3d:hover .pro-banner-btn svg { transform: translateX(3px); }

/* ── RIGHT — floating 3D-model tiles ── */
.pro3d-showcase {
  position: relative;
  height: 380px;
  transform-style: preserve-3d;
}
.pro3d-tile {
  position: absolute;
  width: 168px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 44px rgba(0,0,0,.45);
  will-change: transform;
  transition: transform .25s ease-out, box-shadow .35s;
  backface-visibility: hidden;
}
.pro3d-tile img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.pro3d-tile figcaption {
  padding: 9px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  background: rgba(20,17,12,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pro3d-tile-badge {
  position: absolute;
  top: 9px; right: 9px;
  background: rgba(200,169,110,.92);
  color: #1a1207;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
/* Stagger positions + gentle float + slight rotation */
.pro3d-tile-1 { top: 0;     left: 30%; --rot:-4deg;  transform: rotate(-4deg); animation: floatA 7s ease-in-out infinite; z-index: 4; }
.pro3d-tile-2 { top: 36px;  right: 2%; --rot:5deg;   transform: rotate(5deg);  animation: floatB 8.5s ease-in-out infinite; z-index: 3; }
.pro3d-tile-3 { bottom: 6px; left: 16%; --rot:3deg;  transform: rotate(3deg);  animation: floatB 9s ease-in-out infinite; z-index: 5; }
.pro3d-tile-4 { bottom: 24px; right: 12%; --rot:-6deg; transform: rotate(-6deg); animation: floatA 7.5s ease-in-out infinite; z-index: 2; width: 140px; }
.pro3d-tile-4 img { height: 140px; }
.pro3d:hover .pro3d-tile { box-shadow: 0 26px 54px rgba(0,0,0,.55); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .pro3d-stage { grid-template-columns: 1fr; gap: 0; min-height: auto; padding: 44px 40px; }
  .pro3d-showcase { display: none; }   /* hide floating tiles, keep clean on tablet/mobile */
  .pro3d { min-height: auto; }
}
@media (max-width: 560px) {
  .pro-banner-section { padding: 36px 0; }
  .pro3d { border-radius: 20px; }
  .pro3d-stage { padding: 34px 24px; }
  .pro3d-wordmark { font-size: clamp(46px, 16vw, 64px); }
  .pro3d-sub { font-size: 14px; }
  /* more breathing room between the 3 stats + their sub-labels */
  .pro3d-stats { gap: 26px; margin-bottom: 30px; }
  .pro3d-stat strong { font-size: 19px; margin-bottom: 4px; }
  .pro3d-stat span { margin-top: 8px; line-height: 1.3; }
  .pro-banner-btn { width: 100%; justify-content: center; }
}

.trust-strip {
  background: var(--bg);
  padding: 60px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t);
}
.trust-body {
  flex: 1;
  min-width: 0;
}

.trust-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(200,169,110,0.08);
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-strip { padding: 40px 0; }
}

/* ══════════════════════════════════════════════════════
   CATALOGUES SECTION
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   CATALOGUES SECTION
══════════════════════════════════════════════════════ */
.catalogues-section {
  padding: 80px 0 100px;
  background: #fafafa;
  border-top: 1px solid var(--border-soft);
}

.catalogues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 52px;
  align-items: start;
}

/* ── Item ── */
.catalogue-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  cursor: default;
}

/* ── 3D Book ── */
.book-wrap {
  perspective: 1400px;
  width: 190px;
  height: 268px;
}

.book {
  width: 190px;
  height: 268px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(2deg);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              filter    0.55s cubic-bezier(0.22,1,0.36,1);
  filter: drop-shadow(18px 22px 36px rgba(0,0,0,0.22));
}

/* ── Cover base ── */
.book-cover {
  position: absolute;
  inset: 0;
  border-radius: 2px 8px 8px 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateZ(14px);
  padding: 24px 20px;
}

/* ── Cover per-catalogue colours ── */
.book-cover-interior {
  background: linear-gradient(160deg, #1c1104 0%, #2e1e0a 45%, #1a1208 100%);
  border: 1px solid rgba(200,169,110,0.12);
}
.book-cover-exterior {
  background: linear-gradient(160deg, #05161e 0%, #0b2435 45%, #061520 100%);
  border: 1px solid rgba(100,180,200,0.1);
}
.book-cover-arch {
  background: linear-gradient(160deg, #0c0c0c 0%, #1c1c1c 45%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Cover top tag ── */
.book-soon-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

/* ── Cover icon ── */
.book-cover-icon {
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 4px;
}

/* ── CH monogram ── */
.book-cover-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.14em;
}

/* ── Cover title text ── */
.book-cover-title {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

/* ── Cover horizontal rule ── */
.book-cover::after {
  content: '';
  position: absolute;
  bottom: 28px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* ── Spine ── */
.book-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 22px;
  transform: rotateY(-90deg) translateX(-11px);
  transform-origin: left center;
  border-radius: 2px 0 0 2px;
}
.book-spine-interior { background: linear-gradient(to right, #0c0802, #1e1509); }
.book-spine-exterior { background: linear-gradient(to right, #020d14, #091e2d); }
.book-spine-arch     { background: linear-gradient(to right, #060606, #141414); }

/* ── Pages ── */
.book-pages {
  position: absolute;
  right: -3px; top: 5px; bottom: 5px;
  width: 9px;
  background: repeating-linear-gradient(
    to bottom,
    #f2efe9 0px,
    #e9e5de 1.5px,
    #f5f2ec 3px
  );
  border-radius: 0 2px 2px 0;
  transform: translateZ(0);
}

/* ── Hover lift (subtle — all are coming soon) ── */
.catalogue-item:hover .book {
  transform: rotateY(-10deg) rotateX(1deg) translateY(-4px);
  filter: drop-shadow(24px 28px 44px rgba(0,0,0,0.26));
}

/* ── Info block ── */
.catalogue-info { text-align: center; }

.catalogue-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.catalogue-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalogue-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t);
}
.catalogue-btn-soon::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.catalogue-item:hover .catalogue-btn-soon {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Flipbook Modal ── */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.pdf-modal.open { opacity: 1; pointer-events: all; }

.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  background: #0d0d0d;
}
.pdf-modal-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pdf-modal-actions { display: flex; align-items: center; gap: 14px; }
.pdf-dl-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background var(--t), color var(--t);
}
.pdf-dl-btn:hover { background: var(--accent); color: #000; }
.pdf-modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.pdf-modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Flip stage */
.flip-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 0 8px;
  position: relative;
}

/* Loading screen */
.flip-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #0a0a0a;
}
.flip-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.flip-loader-logo {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.flip-loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.flip-loader-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.2s ease;
  width: 0%;
}
.flip-loader-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Flip container */
.flip-container {
  transition: opacity 0.4s ease;
  position: relative;
}
.flip-page {
  background: #fff;
  overflow: hidden;
}
.flip-page canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Controls bar */
.flip-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 0 18px;
  flex-shrink: 0;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.flip-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.flip-btn:hover { background: var(--accent); color: #000; }
.flip-page-count {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  min-width: 80px;
  text-align: center;
  letter-spacing: 0.05em;
}
#flip-current { color: rgba(255,255,255,0.9); font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
  .catalogues-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px) {
  .catalogues-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-wrap, .book { width: 160px; height: 224px; }
}

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
/* ── Old CTA (kept for other pages) ── */
.cta-section { background: var(--bg-off); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: 30px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.2; }
.cta-text p  { font-size: 15px; color: var(--text-muted); max-width: 500px; }
.cta-text .section-eyebrow { margin-bottom: 10px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   HOME CONTACT SECTION — Luxury Animated
══════════════════════════════════════════════════════ */
.hcq-section {
  background: #050505;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Animated background lines */
.hcq-bg { position: absolute; inset: 0; pointer-events: none; }
.hcq-line {
  position: absolute;
  top: -10%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent 0%, rgba(200,169,110,.15) 40%, rgba(200,169,110,.05) 70%, transparent 100%);
  animation: hcq-fade 7s ease-in-out infinite;
}
.hcq-line-1 { left: 15%; animation-delay: 0s; }
.hcq-line-2 { left: 48%; animation-delay: -2.5s; }
.hcq-line-3 { left: 82%; animation-delay: -5s; }
@keyframes hcq-fade {
  0%, 100% { opacity: 0; transform: scaleY(.3) translateY(-20%); }
  50%       { opacity: 1; transform: scaleY(1)  translateY(0); }
}
.hcq-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.07) 0%, transparent 70%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  animation: hcq-pulse 6s ease-in-out infinite;
}
@keyframes hcq-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  50%       { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

/* Layout */
.hcq-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left column */
.hcq-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hcq-title {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 200;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hcq-title em { font-style: normal; color: var(--accent); }
.hcq-sub {
  font-size: 15px;
  color: rgba(255,255,255,.42);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 36px;
}
.hcq-contacts { display: flex; flex-direction: column; gap: 14px; }
.hcq-contact-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 0;
  transition: color .2s;
}
.hcq-contact-item:hover { color: var(--accent); }
.hcq-contact-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.hcq-contact-icon svg { width: 14px; height: 14px; }

/* Form card */
.hcq-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 44px;
  backdrop-filter: blur(12px);
}
.hcq-form-title {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.hcq-form-title em { font-style: normal; color: var(--accent); }
.hcq-form { display: flex; flex-direction: column; gap: 16px; }
.hcq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Floating label fields */
.hcq-field { position: relative; }
.hcq-field input,
.hcq-field textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 22px 16px 10px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.hcq-field textarea { padding-top: 26px; resize: none; min-height: 110px; line-height: 1.6; }
.hcq-field input:focus,
.hcq-field textarea:focus {
  border-color: var(--accent);
  background: rgba(200,169,110,.04);
  box-shadow: 0 0 0 3px rgba(200,169,110,.1);
}
.hcq-field label {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 13.5px;
  color: rgba(255,255,255,.3);
  pointer-events: none;
  transition: all .2s ease;
}
.hcq-field textarea ~ label { top: 18px; transform: none; }
.hcq-field input:focus ~ label,
.hcq-field input:not(:placeholder-shown) ~ label,
.hcq-field textarea:focus ~ label,
.hcq-field textarea:not(:placeholder-shown) ~ label {
  top: 9px; transform: none;
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}

/* Submit row */
.hcq-actions {
  display: flex; align-items: center; gap: 20px; margin-top: 4px;
}
.hcq-submit {
  background: var(--accent);
  color: #000;
  border: none; border-radius: 50px;
  padding: 14px 36px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 8px;
  transition: all .3s; overflow: hidden; position: relative;
}
.hcq-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-110%);
  transition: transform .5s ease;
}
.hcq-submit:hover::before { transform: translateX(110%); }
.hcq-submit:hover { background: #d4b87a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,.3); }
.hcq-btn-arrow { transition: transform .2s; font-size: 15px; }
.hcq-submit:hover .hcq-btn-arrow { transform: translateX(4px); }
.hcq-submit.loading { pointer-events: none; opacity: .75; }
.hcq-spinner { display: none; width: 14px; height: 14px; border: 2px solid rgba(0,0,0,.2); border-top-color: #000; border-radius: 50%; animation: cf-spin .7s linear infinite; }
.hcq-submit.loading .hcq-spinner { display: block; }
.hcq-submit.loading .hcq-btn-text,
.hcq-submit.loading .hcq-btn-arrow { display: none; }
.hcq-full-link {
  font-size: 13px; color: rgba(255,255,255,.35);
  text-decoration: none; transition: color .2s;
}
.hcq-full-link:hover { color: var(--accent); }

/* Success */
.hcq-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  animation: cf-fadein .5s ease forwards;
}
.hcq-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #25d366;
}
.hcq-success-icon svg { width: 24px; height: 24px; }
.hcq-success-title { font-size: 20px; font-weight: 300; color: #fff; margin-bottom: 8px; }
.hcq-success-msg { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; }

/* Responsive */
@media (max-width: 860px) {
  .hcq-inner { grid-template-columns: 1fr; gap: 48px; }
  .hcq-form-wrap { padding: 32px 24px; }
  .hcq-row { grid-template-columns: 1fr; gap: 16px; }
  .hcq-actions { flex-direction: column; align-items: stretch; }
}
@media (max-width: 540px) {
  .hcq-section { padding: 72px 0; }
  .hcq-form-wrap { padding: 24px 18px; border-radius: 18px; }
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.footer-logo span { color: var(--accent); }
.footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-col ul li a:hover { color: #fff; }
.footer-wa-link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-align: left;
}
.footer-wa-link:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-btn);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--t);
}
.whatsapp-btn:hover { background: #1da851; }

/* ══════════════════════════════════════════════════════
   CATALOGUE LAYOUT
══════════════════════════════════════════════════════ */
.page-catalogue { padding-top: 0; }

/* ── Catalogue Hero Banner ── */
.cat-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 72px var(--gap) 64px;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.78);
  z-index: 1;
}
.cat-hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn .6s ease both;
}
@keyframes heroFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.cat-hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.cat-hero-title { font-size: clamp(28px, 4vw, 52px); font-weight: 300; letter-spacing: -0.02em; }
.cat-hero-title-wrap { position: relative; display: inline-block; }
.cat-hero-title-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  animation: catLineIn .65s .35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes catLineIn { to { transform: scaleX(1); } }

/* ── Category Tiles ── */
.cat-tiles-wrap {
  padding: 28px 0 20px;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease, padding .4s ease;
}
.cat-tiles-wrap.hidden { max-height: 0 !important; opacity: 0; padding: 0; pointer-events: none; }
/* Main universe tiles (Tous) — same horizontal scrolling row as the subcategory tiles */
.cat-tiles-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cat-tiles-grid::-webkit-scrollbar { height: 6px; }
.cat-tiles-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
.cat-tiles-grid::-webkit-scrollbar-track { background: transparent; }
.cat-tiles-grid .cat-tile { flex: 0 0 210px; }
@media (max-width: 600px) { .cat-tiles-grid .cat-tile { flex: 0 0 62vw; max-width: 280px; } }
.cat-tile {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.cat-tile-media {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-off);
  position: relative;
}
.cat-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
  display: block;
}
.cat-tile:hover .cat-tile-media img { transform: scale(1.07); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 55%);
  transition: opacity .3s;
}
.cat-tile:hover .cat-tile-overlay { opacity: .85; }
.cat-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 10px 10px;
  color: #fff;
  text-align: center;
}
.cat-tile-name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.cat-tile-count {
  display: block;
  font-size: 10px;
  opacity: .75;
  margin-top: 2px;
}

/* Subcategory tiles — single horizontal scrolling row */
.subcat-uni-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.subcat-uni-grid::-webkit-scrollbar { height: 6px; }
.subcat-uni-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
.subcat-uni-grid::-webkit-scrollbar-track { background: transparent; }
.subcat-uni-grid .cat-tile {
  flex: 0 0 210px;
}
@media (max-width: 600px) {
  .subcat-uni-grid { gap: 10px; }
  .subcat-uni-grid .cat-tile { flex: 0 0 62vw; max-width: 280px; }
}

/* ── Lightbox ── */
.gallery-lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.gallery-lb.open { opacity: 1; pointer-events: all; }
.gallery-lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lb img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .2s;
}
.gallery-lb-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-lb-close:hover { background: rgba(255,255,255,.24); }
.gallery-lb-btn {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-lb-btn:hover { background: rgba(255,255,255,.22); }
.gallery-lb-prev { left: 20px; }
.gallery-lb-next { right: 20px; }
.gallery-lb-counter {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.gallery-main-wrap { cursor: zoom-in; }

/* ── Certifications ── */
.product-certs {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.product-certs-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-certs-grid {
  display: flex;
  flex-wrap: nowrap;          /* keep all badges on ONE line */
  gap: 8px;
  align-items: center;
  overflow-x: auto;           /* scroll horizontally if they don't all fit */
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-certs-grid::-webkit-scrollbar { display: none; }
.cert-badge {
  height: 32px;
  width: auto;
  flex-shrink: 0;             /* never squish — stay one line, scroll instead */
  object-fit: contain;
  opacity: .6;
  filter: grayscale(30%);
  transition: opacity .2s, filter .2s;
  border-radius: 4px;
}
.cert-badge:hover { opacity: 1; filter: grayscale(0%); }

/* ── Download buttons ── */
.product-downloads { margin-top: 32px; }
.product-downloads .product-certs-title { margin-bottom: 14px; }
.download-btns { display: flex; flex-direction: column; gap: 10px; }

.btn-dl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-dl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, rgba(200,169,110,0) 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-dl:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(200,169,110,0.15); transform: translateY(-1px); }
.btn-dl:hover::before { opacity: 1; }

.btn-dl-spec { border-left: 3px solid var(--accent); }

.btn-dl-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5efe4, #ede3d0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s;
}
.btn-dl:hover .btn-dl-icon { transform: scale(1.08); }

.btn-dl-text { flex: 1; }
.btn-dl-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.btn-dl-sub { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.03em; }

.btn-dl-arrow {
  font-size: 16px;
  color: var(--accent);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.2s ease;
}
.btn-dl:hover .btn-dl-arrow { opacity: 1; transform: translate(0, 0); }

/* ── Sticky product bar — all viewports, slides in on scroll ── */
.product-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 28px rgba(0,0,0,.10);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  transform: translateY(125%);
  opacity: 0;
  visibility: hidden;
  transition: transform .42s cubic-bezier(.5,0,.2,1), opacity .42s ease, visibility .42s;
}
.product-sticky-cta.visible { transform: translateY(0); opacity: 1; visibility: visible; }
.psc-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 18px;
}
.psc-product { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 1; }
.psc-thumb {
  width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
  background: #f3f2ef; flex-shrink: 0; border: 1px solid var(--border);
}
.psc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.psc-meta { min-width: 0; }
.psc-name {
  font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 340px;
}
.psc-ref { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.psc-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.psc-qty {
  display: flex; align-items: center; border: 1px solid var(--border);
  border-radius: 30px; overflow: hidden; background: #fff;
}
.psc-qbtn {
  width: 40px; height: 44px; border: none; background: none; cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--text);
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.psc-qbtn:hover { background: #f3f2ef; }
.psc-qval { min-width: 30px; text-align: center; font-size: 15px; font-weight: 600; }
.psc-cta { white-space: nowrap; }
.psc-wa { flex: 0 0 auto; padding: 13px 16px; }

@media (max-width: 768px) {
  .psc-inner { padding: 0 14px; gap: 10px; }
  .psc-thumb { width: 44px; height: 44px; }
  .psc-name { font-size: 14px; max-width: 42vw; }
  .psc-ref { display: none; }
  .psc-controls { gap: 8px; }
  .psc-qbtn { width: 34px; height: 40px; font-size: 18px; }
  .psc-qval { min-width: 24px; font-size: 14px; }
  .psc-cta { font-size: 13px; padding: 12px 14px; }
  .psc-wa { padding: 12px 13px; }
  .page-product, .product-info { padding-bottom: 86px; }
}
@media (max-width: 430px) {
  .psc-product { display: none; }            /* hide thumb+name — controls fill the bar */
  .psc-controls { flex: 1; gap: 10px; }
  .psc-cta { flex: 1; text-align: center; }
}

/* Size selector (variant dropdown, like reference) */
.product-variant { margin: 6px 0 18px; max-width: 460px; }
.pv-label { display: block; font-size: 14px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
.pv-count { color: var(--text-light); font-weight: 400; }
.pv-select-wrap { position: relative; }
.pv-select {
  width: 100%; appearance: none; -webkit-appearance: none;
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 44px 14px 18px;
  font-size: 15px; font-weight: 600; color: var(--text); background: #fff;
  font-family: inherit; cursor: pointer; transition: border-color .15s;
}
.pv-select:hover { border-color: var(--text-muted); }
.pv-select:focus { outline: none; border-color: var(--text); }
.pv-select:disabled { cursor: default; opacity: 1; }
.pv-static {
  display: inline-block; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 20px; font-size: 15px; font-weight: 600; color: var(--text);
  background: var(--bg-off); letter-spacing: .01em;
}
/* Premium colour / material swatches */
.pc-swatches { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pc-swatch {
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid rgba(0,0,0,.12); padding: 0; position: relative;
  background-size: cover; background-position: center;
  box-shadow: inset 0 1px 3px rgba(255,255,255,.25), 0 1px 4px rgba(0,0,0,.12);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.pc-swatch:hover { transform: translateY(-2px) scale(1.05); }
.pc-swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), inset 0 1px 3px rgba(255,255,255,.25);
}
.pc-swatch.active::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  border: 2px solid rgba(255,255,255,.7);
}
.pc-swatch.pc-static { cursor: default; }
.pc-swatch.pc-static:hover { transform: none; }
.pc-mat-name { font-size: 14px; font-weight: 600; color: var(--text); text-transform: capitalize; }
.pv-select-wrap::after {
  content: '⌄'; position: absolute; right: 18px; top: 42%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 20px; pointer-events: none;
}
@media (max-width: 600px) { .product-variant { max-width: 100%; } }

/* In-page buy row (quantity + add to cart) */
.product-buy { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.product-buy .psc-qty { flex: 0 0 auto; }
.product-addcart { flex: 1; }
@media (max-width: 600px) { .product-buy { display: none; } }  /* matches .product-actions — sticky bar handles below this */

.catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - var(--nav-h));
  align-items: start;
}

/* ── Filter Sidebar ── */
.filter-sidebar {
  border-right: 1px solid var(--border);
  position: static;
  height: auto;
  overflow-y: visible;
  padding: 28px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.filter-sidebar-inner { padding: 0 22px; }
.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.filter-sidebar-header span { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); }
.filter-clear {
  font-size: 11.5px;
  color: var(--text-muted);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
  font-family: inherit;
}
.filter-clear:hover { color: var(--text); }

.filter-group { border-bottom: 1px solid var(--border-soft); }
.filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 13.5px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--t);
  font-family: inherit;
}
.filter-group-toggle:hover { color: var(--accent); }
.filter-group-arrow {
  font-size: 16px;
  color: var(--text-light);
  transition: transform 0.25s var(--ease);
  font-style: normal;
  line-height: 1;
}
.filter-group-toggle.open .filter-group-arrow { transform: rotate(90deg); }

.filter-group-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.filter-group-toggle.open + .filter-group-body { padding-bottom: 14px; }

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--t);
  user-select: none;
}
.filter-checkbox:hover { color: var(--text); }
.filter-checkbox input { display: none; }
.filter-checkbox-box {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.filter-checkbox input:checked ~ .filter-checkbox-box {
  background: var(--text);
  border-color: var(--text);
}
.filter-checkbox input:checked ~ .filter-checkbox-box::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.filter-checkbox input:checked ~ .filter-checkbox-label { color: var(--text); font-weight: 500; }

/* Mobile filter drawer */
.filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

/* ── Catalogue Main ── */
.catalogue-main { padding: 28px var(--gap); min-width: 0; }

.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.toolbar-left { display: flex; align-items: center; gap: 16px; }
.toolbar-right { display: flex; align-items: center; gap: 16px; }

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  background: none;
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
}
.mobile-filter-btn:hover { border-color: var(--text); }

.result-count { font-size: 13.5px; color: var(--text-muted); }
.result-count span { font-weight: 600; color: var(--text); }

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.sort-control select {
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  padding: 7px 14px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color var(--t);
  font-family: inherit;
}
.sort-control select:focus { border-color: var(--text); }

/* Catalogue search */
.catalogue-search {
  position: relative;
  margin-bottom: 22px;
}
.catalogue-search input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  padding: 11px 18px 11px 42px;
  font-size: 13.5px;
  background: var(--bg-off);
  transition: all var(--t);
  font-family: inherit;
}
.catalogue-search input:focus { outline: none; border-color: var(--text); background: #fff; }
.search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-light); }

/* Active filter tags */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--text);
  color: #fff;
  border-radius: var(--r-btn);
  font-size: 12.5px;
  cursor: pointer;
  transition: background var(--t);
}
.filter-tag:hover { background: var(--accent); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 90px 20px;
  color: var(--text-muted);
}
.empty-state p { font-size: 16px; margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════════════ */
.page-product { padding-top: 0; }

.product-breadcrumb {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.breadcrumb-inner a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--text-light); }

.product-layout {
  /* Tighter than the 1700px sitewide container so the page doesn't sprawl on wide
     screens. Two balanced columns: gallery stays a portrait box, info column is
     capped for comfortable line length. */
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px var(--gap);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);   /* gallery noticeably larger */
  gap: 56px;
  align-items: start;
}

/* Gallery */
/* ── Product Gallery ── */
.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: stretch;
  /* Larger gallery box on desktop. */
  height: 720px;
  max-height: 82vh;
}

/* Vertical thumbnail strip */
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 76px;
  flex-shrink: 0;
  align-self: stretch; /* match the contained image box height */
}
.gallery-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  color: var(--text);
}
.gallery-arrow:hover { background: var(--bg-off); border-color: var(--text-light); }

.gallery-thumbs-track {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.gallery-thumbs-track::-webkit-scrollbar { display: none; }

.gallery-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.18s, opacity 0.18s, transform 0.15s;
  opacity: 0.55;
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--accent); opacity: 1; }
.gallery-thumb:hover  { opacity: 0.85; transform: translateX(2px); }
.gallery-thumb img    { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Main image area */
.gallery-main-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  /* Height comes from the definite-height .product-gallery; image box ends up
     slightly portrait. Every photo shows FULL (object-fit:contain), never cropped. */
}
.gallery-main {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}

/* Two-layer crossfade images — contained (full photo), light padding so they breathe */
.gallery-img-a,
.gallery-img-b {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
}

/* Nav arrows on image */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s, transform 0.15s;
  backdrop-filter: blur(4px);
  color: var(--text);
}
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-main:hover .gallery-nav-btn { opacity: 1; }
.gallery-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }

/* Counter badge */
.gallery-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.42);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Dots hidden on desktop */
.gallery-dots { display: none; }

/* Mobile: image on top, thumbnail strip below */
@media (max-width: 900px) {
  .product-gallery {
    flex-direction: column-reverse; /* main image first (top), thumbs below */
    height: auto;
    max-height: none;
    position: static;
    gap: 10px;
  }
  .gallery-main-wrap { aspect-ratio: 4 / 5; height: auto; max-height: 72vh; }
  .gallery-thumbs {
    flex-direction: row;
    width: 100%;
    height: 76px;
  }
  .gallery-thumbs-track {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 4px;
    gap: 6px;
  }
  .gallery-thumb { width: 64px; height: 64px; flex-shrink: 0; }
  .gallery-thumb:hover { transform: translateY(-2px); }
  .gallery-arrow-up   svg { transform: rotate(-90deg); }
  .gallery-arrow-down svg { transform: rotate(90deg); }
}

/* Product info */
.product-info { padding-top: 4px; }
.product-category-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product-ref {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 22px;
}
.product-description {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-actions .btn { flex: 1; min-width: 140px; }

.product-lights-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  margin-bottom: 32px;
  cursor: pointer;
  font-size: 13.5px;
  transition: border-color var(--t);
  user-select: none;
}
.product-lights-toggle:hover { border-color: rgba(0,0,0,0.3); }

/* Specs table */
.specs-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.specs-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.specs-table tr { border-bottom: 1px solid var(--border-soft); }
.specs-table td { padding: 11px 0; vertical-align: top; }
.specs-table td:first-child { color: var(--text-muted); width: 42%; }
.specs-table td:last-child { font-weight: 500; }

/* Similar products */
/* ══════════════════════════════════════════════════════
   PRODUCT PROMO SHOWCASE — full uncropped image
══════════════════════════════════════════════════════ */
.promo-showcase {
  width: 100%;
  margin: 0;
  padding: 28px 24px 40px;
  background: var(--bg-off);
  display: flex;
  justify-content: center;
}
.promo-showcase[hidden] { display: none; }
.promo-showcase-img {
  display: block;
  width: 100%;
  max-width: 760px;    /* contained — not a giant full-bleed band */
  max-height: 68vh;    /* never taller than ~2/3 of the screen */
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
}
@media (max-width: 600px) {
  .promo-showcase { padding: 16px 16px 28px; }
  .promo-showcase-img { max-height: 56vh; border-radius: 10px; }
}

.similar-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--gap) 80px;
  border-top: 1px solid var(--border);
}
.similar-header { align-items: flex-end; margin-bottom: 40px; }
.similar-eyebrow {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.similar-title {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem); font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.15;
}
.similar-section .product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
@media (max-width: 900px){ .similar-section .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE — 2026 LUXURY REDESIGN
══════════════════════════════════════════════════════ */

/* Hero */
/* ══════════════════════════════════════════════════════
   CONTACT PAGE — Light Site Style
══════════════════════════════════════════════════════ */
.cf-hero {
  background: var(--bg);
  padding: 100px var(--gap) 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.cf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,169,110,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cf-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.cf-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0; transform: translateY(12px);
  animation: cf-fadein .6s ease .1s forwards;
}
.cf-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 200;
  letter-spacing: -.025em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(18px);
  animation: cf-fadein .75s ease .25s forwards;
}
.cf-title em { font-style: normal; color: var(--accent); }
.cf-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0; transform: translateY(12px);
  animation: cf-fadein .75s ease .4s forwards;
}
@keyframes cf-fadein { to { opacity: 1; transform: translateY(0); } }

.cf-hero-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(200,169,110,.5), transparent);
  margin: 36px auto 0;
  opacity: 0;
  animation: cf-fadein .6s ease .55s forwards;
}

/* Body */
.cf-body { background: var(--bg-off); padding: 72px var(--gap) 100px; }
.cf-container {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

/* Info column */
.cf-info { position: sticky; top: calc(var(--nav-h) + 32px); }
.cf-info-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.cf-info-items { display: flex; flex-direction: column; }
.cf-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cf-info-item:first-child { border-top: 1px solid var(--border-soft); }
.cf-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.cf-info-icon svg { width: 16px; height: 16px; }
.cf-info-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.cf-info-value { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.cf-info-value a,
.cf-info-value button {
  color: inherit; background: none; border: none; cursor: pointer;
  font-size: inherit; font-family: inherit; padding: 0;
  text-decoration: none; transition: color .2s;
}
.cf-info-value a:hover,
.cf-info-value button:hover { color: var(--accent); }

.cf-wa-big {
  margin-top: 28px;
  display: flex; align-items: center; gap: 13px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.22);
  border-radius: 12px;
  padding: 16px 20px;
  color: #1a9e4e;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .25s;
  font-family: inherit; width: 100%; text-align: left;
}
.cf-wa-big:hover { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.4); transform: translateY(-1px); }
.cf-wa-big svg { width: 20px; height: 20px; flex-shrink: 0; }
.cf-wa-big span { flex: 1; }
.cf-wa-arrow { font-size: 15px; opacity: .4; transition: transform .2s; }
.cf-wa-big:hover .cf-wa-arrow { transform: translateX(3px); opacity: .8; }

/* Form wrap */
.cf-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.cf-form-title {
  font-size: 22px; font-weight: 300;
  color: var(--text);
  margin-bottom: 6px; letter-spacing: -.01em;
}
.cf-form-title em { font-style: normal; color: var(--accent); }
.cf-form-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }

/* Floating label fields */
.cf-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.cf-field { position: relative; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 22px 16px 10px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none; appearance: none;
  outline: none; box-sizing: border-box;
}
.cf-field textarea { padding-top: 26px; resize: vertical; min-height: 140px; line-height: 1.65; }
.cf-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.cf-field select option { background: #fff; color: #000; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,169,110,.12);
}
.cf-field label {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px; color: var(--text-light);
  pointer-events: none; transition: all .22s ease; white-space: nowrap;
}
.cf-field textarea ~ label { top: 18px; transform: none; }
.cf-field select ~ label   { top: 10px; transform: none; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }

.cf-field input:focus ~ label,
.cf-field input:not(:placeholder-shown) ~ label,
.cf-field textarea:focus ~ label,
.cf-field textarea:not(:placeholder-shown) ~ label {
  top: 9px; transform: none;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}

/* Phone field with country-code selector */
.cf-phone-field { position: relative; }
.cf-phone-group { display: flex; gap: 8px; }
.cf-phone-group .cf-cc {
  flex: 0 0 104px; width: 104px; padding-top: 22px; padding-left: 14px; padding-right: 28px;
  font-size: 14px; background-position: right 10px center;
}
.cf-phone-group input { flex: 1; min-width: 0; }
.cf-phone-floating {
  position: absolute; left: 16px; top: 9px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); pointer-events: none;
}
.cf-phone-field:focus-within .cf-phone-floating { color: var(--accent); }

/* Submit */
.cf-submit-row { margin-top: 8px; display: flex; align-items: center; gap: 22px; }
.cf-submit-btn {
  position: relative;
  background: var(--text); color: #fff;
  border: none; border-radius: 50px;
  padding: 15px 40px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; font-family: inherit;
  transition: all .3s; overflow: hidden;
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.cf-submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-110%); transition: transform .5s ease;
}
.cf-submit-btn:hover::before { transform: translateX(110%); }
.cf-submit-btn:hover { background: #222; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.cf-submit-btn .cf-btn-arrow { transition: transform .25s; font-size: 15px; }
.cf-submit-btn:hover .cf-btn-arrow { transform: translateX(5px); }
.cf-submit-btn.loading { pointer-events: none; opacity: .75; }

.cf-spinner {
  display: none; width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #fff;
  border-radius: 50%; animation: cf-spin .7s linear infinite;
}
.cf-submit-btn.loading .cf-spinner { display: block; }
.cf-submit-btn.loading .cf-btn-text,
.cf-submit-btn.loading .cf-btn-arrow { display: none; }
@keyframes cf-spin { to { transform: rotate(360deg); } }

.cf-note { font-size: 12px; color: var(--text-light); line-height: 1.65; }

/* Success */
.cf-success {
  display: none; text-align: center;
  padding: 56px 32px;
  animation: cf-fadein .5s ease forwards;
}
.cf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: #25d366;
}
.cf-success-icon svg { width: 28px; height: 28px; }
.cf-success h3 { font-size: 22px; font-weight: 300; color: var(--text); margin-bottom: 10px; }
.cf-success p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.no-js .fade-up   { opacity: 1; transform: none; }

/* Stagger helpers */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════════════
   MARQUEE / SCROLL TICKER
══════════════════════════════════════════════════════ */
.marquee-bar {
  overflow: hidden;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-item span { color: var(--accent); margin: 0 8px; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-hero {
  background: var(--bg-dark);
  color: #fff;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gap) 64px;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--about-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.about-hero-content { position: relative; z-index: 2; max-width: 700px; }
.about-hero h1 { font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 300; line-height: 1.1; margin-bottom: 20px; }
.about-hero p  { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; }

.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid.reverse .about-img { order: 2; }
.about-grid.reverse .about-text { order: 1; }
.about-img img { width: 100%; border-radius: var(--r-card); }
.about-text h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 300; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.01em; }
.about-text p  { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.suppliers-strip {
  background: var(--bg-off);
  padding: 60px 0;
  text-align: center;
}
.suppliers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 56px;
  margin-top: 32px;
}
.supplier-item {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
}
.supplier-item:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════════════════ */
.faq-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px var(--gap);
}
.faq-title { font-size: clamp(26px, 3vw, 40px); font-weight: 300; margin-bottom: 48px; letter-spacing: -0.01em; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--text);
  transition: color var(--t);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 4px 0 24px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Large tablet (1200px)
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --container: 100%; --gap: 24px; }
  .cat-item { flex: 0 0 calc(33.33% - 14px); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .catalogue-layout { grid-template-columns: 250px 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .product-layout { gap: 48px; }
  .about-grid { gap: 56px; }
}

/* ── Tablet (900px) ── */
@media (max-width: 900px) {
  .nav-search-trigger { min-width: 0; flex: 1; }
  .nav-pro-btn { display: none; }

  .hero-content { max-width: 90%; }

  .cat-item { flex: 0 0 calc(50% - 10px); }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  #featured-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .catalogue-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 290px;
    z-index: 900;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
    padding-top: 70px;
  }
  .filter-sidebar.open { transform: translateX(0); }
  .filter-overlay { display: block; pointer-events: none; }
  .filter-overlay.open { opacity: 1; pointer-events: all; }
  .mobile-filter-btn { display: flex; }

  .brand-pillars { grid-template-columns: 1fr; gap: 40px; }

  .cf-container { grid-template-columns: 1fr; gap: 56px; }
  .cf-info { position: static; }
  .cf-form-wrap { padding: 36px 28px; }
  .cf-row { grid-template-columns: 1fr; gap: 20px; }

  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid.reverse .about-img { order: 0; }
  .about-grid.reverse .about-text { order: 0; }
}

/* ── Mobile (600px) ── */
@media (max-width: 600px) {
  :root { --gap: 16px; --r-card: 15px; --nav-h: 56px; }

  /* Navbar — compact for mobile */
  .nav-inner { gap: 8px; padding: 0 12px; }
  .nav-menu-btn { padding: 0 11px; font-size: 11.5px; gap: 5px; height: 34px; }
  .nav-menu-btn svg { width: 13px; height: 10px; }
  .nav-search-trigger { min-width: 34px; flex: 0; padding: 0 10px; justify-content: center; }
  .nav-search-trigger span { display: none; }
  .nav-icon-btn:not(.nav-cart-btn) { display: none; }  /* hide account icon */
  .nav-cart-btn { width: 34px; height: 34px; }
  .nav-logo-img { height: 40px; }
  /* FR/EN — compact on mobile */
  .nav-right { flex-shrink: 0; }
  .nav-lang { gap: 2px; }
  .nav-lang button { font-size: 10.5px; padding: 2px 4px; }
  .nav-lang span { font-size: 10px; }

  .hero { height: 93vh; height: 93dvh; min-height: 520px; }
  .hero-content { padding: 0 16px 40px; max-width: 100%; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .section { padding: 48px 0; }

  .collections-grid { gap: 12px; }
  .cat-item { flex: 0 0 68vw; }
  .cat-caption-title { font-size: 14px; }
  .cat-caption-text { font-size: 12px; }

  .product-grid { gap: 10px; grid-template-columns: repeat(2, 1fr); align-items: start; }
  #featured-grid { gap: 8px; grid-template-columns: repeat(2, 1fr); align-items: start; }
  .card-info { padding: 8px 10px 10px; }
  .card-name { font-size: 12px; }
  .card-ref  { font-size: 9.5px; }
  /* card-media: never shrink below aspect-ratio on mobile */
  .card-media { aspect-ratio: 3/4; flex-shrink: 0; }
  .card-placeholder .ph-icon { font-size: 28px; }
  .card-placeholder .ph-text { font-size: 11px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > .footer-brand { grid-column: auto; }
  .brand-pillars { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; gap: 24px; }

  .cf-submit-row { flex-direction: column; align-items: stretch; }
  .catalogue-main { padding: 16px; }

  /* ── Product page — hide in-content actions bar (sticky-cta handles it) ── */
  .product-actions { display: none !important; }
  .product-info { padding-bottom: 100px; }

  /* Breadcrumb: truncate long paths */
  .breadcrumb { font-size: 11px; gap: 4px; flex-wrap: nowrap; overflow: hidden; }
  .breadcrumb-item { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
  .breadcrumb-item:last-child { max-width: 160px; }

  /* ── Product page — full mobile redesign ── */
  .product-layout {
    padding: 0;
    gap: 0;
    display: block;
  }

  /* Gallery: simple block stacking, no flex tricks */
  .product-gallery {
    display: block;
    height: auto;
    position: static;
  }
  .gallery-main-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    max-height: 78vh;
    flex: none;
    border-radius: 0;
  }
  .gallery-main { border-radius: 0; width: 100%; height: 100%; }

  /* Thumbnail strip — hidden on mobile, use dots */
  .gallery-thumbs { display: none; }

  /* Dot indicators */
  .gallery-dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 4px;
    background: var(--bg);
  }
  .gallery-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .gallery-dot.active {
    background: var(--text);
    transform: scale(1.4);
  }

  /* Product info card — padded sheet below image */
  .product-info {
    padding: 20px 18px 100px;  /* 100px bottom = space for sticky CTA */
    background: var(--bg);
  }

  .product-category-badge { font-size: 10px; margin-bottom: 6px; }
  .product-title          { font-size: 24px; font-weight: 500; margin-bottom: 4px; line-height: 1.2; }
  .product-ref            { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
  .product-description    { font-size: 14px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 0; }

  /* product-actions hidden on mobile — product-sticky-cta handles the CTA */

  /* Lights toggle */
  .product-lights-toggle {
    margin-top: 20px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  /* Specs */
  .specs-title { font-size: 11px; margin-top: 24px; margin-bottom: 4px; }
  .specs-table { margin-top: 0; }
  .specs-table td { font-size: 13.5px; padding: 10px 0; }
  .specs-table td:first-child { color: var(--text-muted); width: 44%; }

  /* Back button */
  .product-info > div:last-child { margin-top: 28px; }

  /* Similar products */
  .similar-section { padding: 32px 18px 40px; }
  .similar-title   { font-size: 20px; margin-bottom: 16px; }

  .cf-hero { padding: 88px var(--gap) 56px; }
  .cf-body { padding: 52px var(--gap) 88px; }
  .cf-form-wrap { padding: 28px 20px; border-radius: 16px; }
  .faq-layout { padding: 48px var(--gap); }
  .about-hero { min-height: 50vh; padding: 0 var(--gap) 40px; }

  .footer-col-title { margin-bottom: 14px; }

  .nav-top-bar { font-size: 10.5px; padding: 6px 16px; }

  /* K-badge on mobile */
  .k-badge  { padding: 12px 14px 10px; }
  .k-val    { font-size: 9px; letter-spacing: 0; }
  .k-title  { font-size: 9px; margin-bottom: 10px; }
}

/* ══════════════════════════════════════════════════════
   MATERIALS SCROLL SECTION
══════════════════════════════════════════════════════ */
.materials-section {
  padding: 60px 0;
  background: var(--bg-off);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.materials-section .section-header {
  padding: 0 var(--gap);
  margin-bottom: 32px;
}

.materials-scroll {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gap) 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.materials-scroll::-webkit-scrollbar { display: none; }

.mat-card {
  flex: 0 0 280px;
  max-height: 460px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .materials-section { padding: 44px 0; }
  .mat-card { flex: 0 0 64vw; max-height: 400px; }
}

/* ══════════════════════════════════════════════════════
   REEL CATEGORIES
══════════════════════════════════════════════════════ */
.reel-section {
  padding: 60px 0;
  background: var(--bg);
}

.reel-section .section-header {
  padding: 0 var(--gap);
  margin-bottom: 32px;
}

/* Reel cards inside cat-card */
/* Reel section: force portrait height */
#reel-scroll .cat-item {
  height: 420px !important;
  min-height: 420px !important;
}

.cat-card.reel-card {
  background: #0a0a0a;
  aspect-ratio: unset !important;
  height: 100% !important;
  width: 100% !important;
  min-height: 420px !important;
}
.cat-card.reel-card .reel-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a1510, #0a0a0a);
  z-index: 0;
}
.cat-card.reel-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
}
.cat-card.reel-card .reel-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.cat-card.reel-card .reel-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 14px; z-index: 3;
}
.cat-card.reel-card .reel-title {
  font-size: 15px; font-weight: 700;
  color: #fff; line-height: 1.2; margin: 0;
}

/* Horizontal scrolling row — same style as collections */
.reel-scroll {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gap) 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reel-scroll::-webkit-scrollbar { display: none; }

/* Each reel card — 3:4 like collections but dark with video */
.reel-card {
  position: relative;
  flex: 0 0 calc(25% - 15px);
  min-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0a0a0a;
  cursor: pointer;
}

.reel-card:hover .reel-placeholder,
.reel-card:hover .reel-media video {
  transform: scale(1.05);
}

/* Media layer */
.reel-media {
  position: absolute;
  inset: 0;
}

.reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

/* Photo placeholder — shown until video is ready */
.reel-placeholder {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #111;
  transition: transform 0.7s var(--ease);
  z-index: 0;
}

/* Video sits on top of photo, invisible until it loads */
.reel-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s var(--ease);
}

/* Gradient overlay — always on top of photo/video */
.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    transparent 25%,
    rgba(0,0,0,0.4) 55%,
    rgba(0,0,0,0.88) 100%
  );
}

/* Text content — above everything */
.reel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 22px;
  z-index: 3;
}

.reel-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.reel-sub {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 300px;
}

.reel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--t), transform var(--t);
}

.reel-btn:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .reel-section { padding: 44px 0; }
  .reel-card { flex: 0 0 68vw; min-width: unset; border-radius: 14px; }
  #reel-scroll .cat-item { height: 360px; }
  .reel-title { font-size: 1.2rem; }
  .reel-content { padding: 16px 14px 18px; }
  .reel-sub { font-size: 11.5px; margin-bottom: 14px; }
}

/* ══════════════════════════════════════════════════════
   CERTIFICATIONS STRIP
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   CERTIFICATIONS STRIP — scrolling marquee
══════════════════════════════════════════════════════ */
.cert-strip {
  padding: 44px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.cert-strip-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Fade edges */
.cert-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.cert-marquee-wrap::before,
.cert-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cert-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 20%, transparent);
}
.cert-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 20%, transparent);
}

/* 3 sets → animate -33.33% for seamless loop */
.cert-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: certScroll 32s linear infinite;
  will-change: transform;
}
.cert-marquee:hover { animation-play-state: paused; }

@keyframes certScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* Individual item */
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 44px;
  cursor: default;
}

.cert-item img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.35s ease, transform 0.35s ease;
  display: block;
}
.cert-item:hover img {
  filter: grayscale(0.2) opacity(0.9);
  transform: scale(1.1);
}

.cert-item span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--t);
}
.cert-item:hover span { color: var(--text-muted); }

@media (max-width: 768px) {
  .cert-item { padding: 0 28px; }
  .cert-item img { height: 54px; }
}

/* ══════════════════════════════════════════════════════
   K-BADGE — Fire Temperature Animation
══════════════════════════════════════════════════════ */
/* ── Old k-badge hidden (replaced by cct-widget) ── */
.k-badge { display: none; }

/* ══ CCT WIDGET — clean gradient bar ══ */
.cct-widget {
  margin: 20px 0 24px;
  padding: 18px 20px 16px;
  border-radius: 14px;
  background: var(--bg-off);
  border: 1px solid var(--border-soft);
}
.cct-nobulb-note {
  margin-top: 6px; font-size: 12.5px; color: var(--text-muted); line-height: 1.5;
}
.cct-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cct-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.cct-value-pill {
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  transition: background 0.4s;
}

/* Bar */
.cct-bar-wrap { width: 100%; }
.cct-bar {
  position: relative;
  height: 8px;
  border-radius: 99px;
  /* Color stops at real Kelvin %: 2700→0, 3000→13, 3500→35, 4000→57, 5000→100 */
  background: linear-gradient(to right,
    #FF6B35 0%,
    #FFA040 13%,
    #FFD580 35%,
    #E8F4FF 57%,
    #B8D0FF 100%
  );
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
  margin-bottom: 12px;
}
/* Cursor */
.cct-cursor {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cct-cursor-line {
  width: 2px;
  height: 16px;
  background: #111;
  border-radius: 1px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cct-cursor-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #111;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.6s, border-color 0.6s, box-shadow 0.6s;
  animation: cctPulse 2s ease-in-out infinite;
}
@keyframes cctPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(0,0,0,.06), 0 2px 10px rgba(0,0,0,.25); }
}

/* Tick labels — positioned at real Kelvin % on the gradient */
.cct-ticks {
  position: relative;
  height: 16px;
  margin-top: 2px;
}
.cct-ticks span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.cct-ticks span:nth-child(1) { left: 0%;   transform: translateX(0); }
.cct-ticks span:nth-child(2) { left: 13%; }
.cct-ticks span:nth-child(3) { left: 35%; }
.cct-ticks span:nth-child(4) { left: 57%; }
.cct-ticks span:nth-child(5) { left: 100%; transform: translateX(-100%); }

/* Warm/Cool end labels */
.cct-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.cct-ends span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
}
.cct-ends span:first-child { color: #E8884A; }
.cct-ends span:last-child  { color: #7FA8D8; }

@media (max-width: 600px) {
  .cct-widget { padding: 14px 14px 12px; }
  .cct-ticks span { font-size: 8.5px; }
  /* Hide middle ticks on small screens to prevent crowding */
  .cct-ticks span:nth-child(2),
  .cct-ticks span:nth-child(4) { display: none; }
}

/* Title row */
.k-title {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Stage: orbs sit centered ON the track line */
.k-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
}

/* Dim background track */
.k-stage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  right: 18px;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
}

/* Animated fire fill — left/width set by JS */
.k-fire-fill {
  position: absolute;
  top: 50%;
  left: 18px;
  height: 3px;
  width: 0;
  transform: translateY(-50%);
  border-radius: 2px;
  background: linear-gradient(to right,
    #FF4500 0%,
    #FF6B35 25%,
    #FFA040 55%,
    #FFD580 78%,
    #D8EEFF 100%
  );
  background-size: 200% 100%;
  animation: fireShimmer 2.2s linear infinite;
  overflow: visible;
  z-index: 1;
}
/* Glowing tip — hidden behind the active orb (orb z-index:2 covers it) */
.k-fire-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 10px 4px rgba(255, 180, 60, 0.8);
  animation: fireTip 0.9s ease-in-out infinite alternate;
}

@keyframes fireShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position:   0% 0; }
}
@keyframes fireTip {
  from { box-shadow: 0 0 8px 3px rgba(255,180,60,0.6); }
  to   { box-shadow: 0 0 16px 7px rgba(255,140,30,0.95); }
}

/* Each temperature stop */
.k-stop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;   /* sits above the fill so orb hides the glowing tip */
}

/* Orb — centered on line, its glow blends with fill tip below it */
.k-orb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.10);
  border: 2px solid rgba(0,0,0,0.10);
  flex-shrink: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease,
              border-color 0.35s ease, transform 0.3s ease;
}

/* Lit stops */
.k-stop.lit .k-orb {
  background: var(--c);
  border-color: var(--c);
  box-shadow: 0 0 10px 3px var(--g);
}

/* Active stop — larger orb covers tip, strong all-round glow */
.k-stop.active .k-orb {
  background: var(--c);
  border-color: var(--c);
  box-shadow: 0 0 18px 6px var(--g);
  transform: scale(1.35);
  animation: kOrbFlame 1.3s ease-in-out infinite;
}
@keyframes kOrbFlame {
  0%, 100% { box-shadow: 0 0 14px 5px var(--g); transform: scale(1.35); }
  50%       { box-shadow: 0 0 26px 9px var(--g); transform: scale(1.42); }
}

/* K label below orb */
.k-val {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.35s ease;
}
.k-stop.lit   .k-val { color: var(--text-secondary, #888); }
.k-stop.active .k-val { color: var(--c); font-weight: 700; }

/* ══════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
@media (max-width: 600px) {
  .float-wa { bottom: 20px; right: 16px; width: 46px; height: 46px; }
}

/* ══════════════════════════════════════════════════════
   LUXURY FOOTER — shared across all pages
══════════════════════════════════════════════════════ */
.pf-root{background:#0a0a0a;border-top:1px solid rgba(200,169,110,.2);margin-top:0}
body.lights-on .pf-root{background:#f5f4f1;border-top-color:rgba(200,169,110,.3)}
.pf-top{padding:72px 0 56px}
.pf-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1.5fr;gap:56px;align-items:start}
.pf-logo{height:52px;opacity:.95}
.pf-logo-link{display:inline-block;margin-bottom:22px}
.pf-tagline{font-size:15px;color:rgba(255,255,255,.75);font-weight:400;line-height:1.75;max-width:280px;margin-bottom:28px}
body.lights-on .pf-tagline{color:rgba(0,0,0,.4)}
.pf-socials{display:flex;gap:12px}
.pf-qr{margin-top:20px;display:inline-flex;align-items:center;gap:11px;text-decoration:none}
.pf-qr img{width:46px;height:46px;border-radius:7px;background:#fff;padding:4px;display:block;flex-shrink:0}
.pf-qr span{font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:#c8a96e;line-height:1.5}
.pf-social{width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:border-color .25s,transform .25s,box-shadow .25s;overflow:hidden}
.pf-social svg{width:22px;height:22px;flex-shrink:0}
.pf-social:hover{transform:scale(1.1);box-shadow:0 4px 18px rgba(0,0,0,.4)}
/* Full-circle brand icons (WA, FB, Pinterest) fill larger */
.pf-social[aria-label="WhatsApp"] svg,
.pf-social[aria-label="Facebook"] svg,
.pf-social[aria-label="Pinterest"] svg{width:36px;height:36px}
/* Brand colors */
.pf-social[aria-label="Instagram"]{color:#E1306C;border-color:rgba(225,48,108,.4)}
.pf-social[aria-label="Instagram"]:hover{background:rgba(225,48,108,.12);border-color:#E1306C}
.pf-social[aria-label="TikTok"]{color:#fff;border-color:rgba(255,255,255,.25)}
.pf-social[aria-label="TikTok"]:hover{background:rgba(255,255,255,.1);border-color:#fff}
.pf-social[aria-label="WhatsApp"]{color:#25D366;border-color:rgba(37,211,102,.4)}
.pf-social[aria-label="WhatsApp"]:hover{background:rgba(37,211,102,.08);border-color:#25D366}
.pf-social[aria-label="Facebook"]{color:#1877F2;border-color:rgba(24,119,242,.4)}
.pf-social[aria-label="Facebook"]:hover{background:rgba(24,119,242,.08);border-color:#1877F2}
.pf-social[aria-label="Pinterest"]{color:#E60023;border-color:rgba(230,0,35,.4)}
.pf-social[aria-label="Pinterest"]:hover{background:rgba(230,0,35,.08);border-color:#E60023}
.pf-social[aria-label="LinkedIn"]{color:#0A66C2;border-color:rgba(10,102,194,.4)}
.pf-social[aria-label="LinkedIn"]:hover{background:rgba(10,102,194,.12);border-color:#0A66C2}
body.lights-on .pf-social{background:rgba(0,0,0,.04)}
.pf-col-title{font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:20px}
body.lights-on .pf-col-title{color:rgba(0,0,0,.35)}
.pf-links{list-style:none;display:flex;flex-direction:column;gap:13px}
.pf-links li{display:flex;align-items:flex-start;gap:10px}
.pf-links a,.pf-links span{font-size:15px;font-weight:400;color:rgba(255,255,255,.8);text-decoration:none;transition:color .2s;line-height:1.5}
.pf-links a:hover{color:rgba(255,255,255,.9)}
body.lights-on .pf-links a,body.lights-on .pf-links span{color:rgba(0,0,0,.5)}
body.lights-on .pf-links a:hover{color:rgba(0,0,0,.9)}
.pf-cicon{width:15px;height:15px;flex-shrink:0;margin-top:2px;color:var(--gold);opacity:.8}
.pf-wa-link{background:none;border:none;cursor:pointer;font-family:inherit;font-size:15px;font-weight:400;color:rgba(255,255,255,.8);transition:color .2s;padding:0;text-align:left;line-height:1.5}
.pf-wa-link:hover{color:rgba(255,255,255,.9)}
body.lights-on .pf-wa-link{color:rgba(0,0,0,.5)}
body.lights-on .pf-wa-link:hover{color:rgba(0,0,0,.9)}
.pf-map-wrap{height:190px;border-radius:10px;overflow:hidden;border:1px solid rgba(255,255,255,.08)}
body.lights-on .pf-map-wrap{border-color:rgba(0,0,0,.1)}
.pf-bottom{border-top:1px solid rgba(255,255,255,.07);padding:22px 0}
body.lights-on .pf-bottom{border-top-color:rgba(0,0,0,.08)}
.pf-bottom-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.pf-copy{font-size:14px;color:rgba(255,255,255,.55)}
body.lights-on .pf-copy{color:rgba(0,0,0,.3)}
.pf-bottom-links{display:flex;gap:16px;align-items:center}
.pf-bottom-links a{font-size:14px;color:rgba(255,255,255,.55);text-decoration:none;transition:color .2s}
.pf-bottom-links a:hover{color:rgba(255,255,255,.6)}
body.lights-on .pf-bottom-links a{color:rgba(0,0,0,.3)}
body.lights-on .pf-bottom-links a:hover{color:rgba(0,0,0,.7)}
.pf-sep{font-size:10px;color:rgba(255,255,255,.15)}
body.lights-on .pf-sep{color:rgba(0,0,0,.2)}
@media(max-width:1100px){.pf-grid{grid-template-columns:1fr 1fr;gap:40px}.pf-map-col{grid-column:1/-1}.pf-map-wrap{height:220px}}
@media(max-width:600px){.pf-top{padding:48px 0 40px}.pf-grid{grid-template-columns:1fr;gap:36px}.pf-map-col{grid-column:auto}.pf-map-wrap{height:200px}.pf-bottom-inner{flex-direction:column;align-items:flex-start;gap:8px}}

/* ============ UI/UX audit fixes — 2026-06 ============ */
@media (max-width:768px){
  input,select,textarea,.cf-input,.cf-select,.cf-textarea,.cf-cc,.cta-input,.cta-select{font-size:16px}
}
@media (max-width:600px){
  .nav-menu-btn,.nav-search-btn,.nav-cart-btn,.nav-icon-btn{min-width:42px;min-height:42px}
  .product-breadcrumb{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .product-breadcrumb .breadcrumb-inner{white-space:nowrap}
  .cart-item-img,.cart-item-placeholder{width:70px!important;height:70px!important}
}
