/* ═══════════════════════════════════════════════════════════
   CardCare Solution — Main Stylesheet
   Fonts loaded via Google Fonts CDN (see index.html <head>)
═══════════════════════════════════════════════════════════ */
/* ── HERO CARD 3D ──────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   HERO PLATINUM CARD  —  hero-cards.css

   CUSTOMISE (edit :root only):
     --hcc-card-w       card width
     --hcc-card-radius  corner radius
     --hcc-card-thick   physical edge thickness
   ═══════════════════════════════════════════════════════════ */
:root {
  --hcc-card-w: min(460px, 44vw);
  --hcc-card-radius: 12px;
  --hcc-card-thick: clamp(8px, 0.9vw, 14px);

      /* Card theme — synced to body palette, editable from admin panel */
  --hcc-primary-gold: #e8e8e4;
  --hcc-dark-gold: #b0b0aa;
  --hcc-accent-yellow: var(--gold, #c9a84c);
  --hcc-dark-yellow: #8a6f2e;

      /* Card face colors */
  --hcc-face-bg-from: #0e0e0e;
  --hcc-face-bg-to: #080808;
      /* Card text */
  --hcc-brand-color: var(--gold, #c9a84c);
  --hcc-feat-color: var(--white, #f5f5f0);
  --hcc-badge-color: var(--gold, #c9a84c);
      /* Card fonts — match body */
  --hcc-font-brand: 'Syne', system-ui, sans-serif;
  --hcc-font-feat: 'DM Sans', system-ui, sans-serif;
}

    /* ─── host wrapper ───────────────────────────────────────── */
#hcc-root {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
  padding: 20px 0 8px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
}

    /* ─── viewport ───────────────────────────────────────────── */
#hcc-viewport {
  width: var(--hcc-card-w);
  aspect-ratio: 480 / 300;
  position: relative;
  overflow: visible;
  perspective: 2000px;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

    /* ─── card slab — JS rotates this ───────────────────────── */
.hcc-slab {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  cursor: grab;
  overflow: visible;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.hcc-slab.grabbing {
  cursor: grabbing;
}

    /* ══════════════════════════════════════════════════════════
       THICKNESS — single gold back-plate, same border-radius
       as the face. Corners ALWAYS perfect at any size/angle.
       Thickness scales with vw so it's always proportionate.
    ══════════════════════════════════════════════════════════ */
.hcc-slab::before,
.hcc-slab::after {
  display: none;
}
.hcc-core {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hcc-dark-gold) 0%, var(--hcc-primary-gold) 50%, var(--hcc-dark-gold) 100%);
  border-radius: var(--hcc-card-radius);
      /* backface-visibility removed — thickness visible from all angles */
}

    /* ══════════════════════════════════════════════════════════
   CARD FACES
   ══════════════════════════════════════════════════════════ */
.hcc-flipper {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.23, 1, .32, 1);
}
.hcc-flipper.flipped {
  transform: rotateY(180deg);
}
.hcc-face {
  position: absolute;
  inset: 0;
  border-radius: var(--hcc-card-radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hcc-face-front {
  background: linear-gradient(135deg, var(--hcc-face-bg-from) 0%, var(--hcc-face-bg-to) 100%);
  transform: translateZ(calc(var(--hcc-card-thick) / 2));
}
.hcc-face-back {
  background: linear-gradient(135deg, var(--hcc-face-bg-to) 0%, var(--hcc-face-bg-from) 100%);
  transform: rotateY(180deg) translateZ(calc(var(--hcc-card-thick) / 2));
}

    /* ══════════════════════════════════════════════════════════
   FRONT FACE ELEMENTS
   ══════════════════════════════════════════════════════════ */

    /* diagonal gold wedge */
.hcc-wedge {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(160deg, var(--gold2, #f0d080) 0%, var(--gold, #c9a84c) 55%, #a07830 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

    /* light sweep */
.hcc-sweep {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(35deg);
  animation: hSweep 7s infinite linear;
  pointer-events: none;
  z-index: 2;
}
@keyframes hSweep {
  0% {
    transform: translateX(-100%) rotate(35deg);
  }
  15% {
    transform: translateX(400%) rotate(35deg);
  }
  100% {
    transform: translateX(400%) rotate(35deg);
  }
}

    /* front content */
.hcc-front-body {
  position: absolute;
  inset: 0;
  padding: clamp(18px, 3.8vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.hcc-brand {
  color: var(--hcc-brand-color);
  font-family: var(--hcc-font-brand);
  font-weight: 800;
  font-size: clamp(9px, 1.5vw, 16px);
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 6px;
  padding: clamp(3px, .5vw, 6px) clamp(7px, 1.1vw, 14px);
  width: fit-content;
}

    /* Features list */
.hcc-features {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, .8vw, 8px);
  margin-top: clamp(8px, 1.5vw, 16px);
  z-index: 10;
  position: relative;
}
.hcc-feat-item {
  font-family: var(--hcc-font-feat);
  font-size: clamp(7px, 1.1vw, 12px);
  font-weight: 600;
  color: var(--hcc-feat-color);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: clamp(5px, .8vw, 9px);
}
.hcc-feat-dot {
  width: clamp(4px, .6vw, 6px);
  height: clamp(4px, .6vw, 6px);
  border-radius: 50%;
  background: var(--hcc-accent-yellow);
  flex-shrink: 0;
}

    /* FREE SHIPPING badge */
.hcc-shipping-badge {
  font-family: var(--hcc-font-brand);
  font-size: clamp(6px, .9vw, 10px);
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--hcc-badge-color);
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(201, 168, 76, .35);
  border-radius: clamp(4px, .6vw, 7px);
  padding: clamp(3px, .5vw, 6px) clamp(6px, 1vw, 12px);
  white-space: nowrap;
  text-align: right;
}
.hcc-front-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}
.hcc-valid-lbl {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(5px, .75vw, 9px);
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  margin-bottom: 3px;
  letter-spacing: .08em;
}
.hcc-expiry {
  font-family: 'DM Sans', monospace, sans-serif;
  font-size: clamp(10px, 2vw, 18px);
  color: #fff;
  letter-spacing: .18em;
}

    /* ══════════════════════════════════════════════════════════
   BACK FACE ELEMENTS
   ══════════════════════════════════════════════════════════ */
.hcc-back-body {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 3.5vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.hcc-back-info {
  flex: 1;
  padding-right: clamp(10px, 2vw, 32px);
  min-width: 0;
}
.hcc-back-brand {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(6px, 1.1vw, 12px);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hcc-accent-yellow);
  margin-bottom: clamp(6px, 1.2vw, 12px);
}
.hcc-back-quote {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(6px, 1.1vw, 11px);
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
  font-style: italic;
}
.hcc-back-support {
  margin-top: clamp(12px, 2.5vw, 32px);
}
.hcc-back-supl {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(5px, .75vw, 9px);
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.hcc-back-supv {
  font-family: 'DM Sans', monospace, sans-serif;
  font-size: clamp(7px, 1.2vw, 11px);
  color: #fff;
}
.hcc-qr {
  background: var(--hcc-accent-yellow);
  padding: clamp(6px, 1.2vw, 10px);
  border-radius: clamp(8px, 1.5vw, 12px);
  width: clamp(60px, 13vw, 110px);
  height: clamp(60px, 13vw, 110px);
  flex-shrink: 0;
}
.hcc-qr-pat {
  width: 100%;
  height: 100%;
  background-image:
  radial-gradient(circle at 20% 20%, #000 12%, transparent 12.5%),
  linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000);
  background-size: 100% 100%, 18px 18px;
}

    /* ══════════════════════════════════════════════════════════
   ROTATE HINT  — replaces the old float bob
   A small pill below the card with two rotating arrows
   that pulses until the user first drags.
   ══════════════════════════════════════════════════════════ */
#hcc-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 1;
  transition: opacity .6s ease;
}
#hcc-hint.hidden {
  opacity: 0;
}

    /* left arrow — rotates counter-clockwise */
.hcc-hint-arrow-l,
.hcc-hint-arrow-r {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

    /* arrowhead via pseudo */
.hcc-hint-arrow-l::after,
.hcc-hint-arrow-r::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  transform: translate(-70%, -50%) rotate(-45deg);
}
.hcc-hint-arrow-l {
  animation: hArrowL 2s ease-in-out infinite;
}
.hcc-hint-arrow-r {
  animation: hArrowR 2s ease-in-out infinite;
}
.hcc-hint-arrow-r::after {
  transform: translate(-30%, -50%) rotate(135deg);
}
@keyframes hArrowL {
  0%,
  100% {
    transform: rotate(0deg);
    opacity: .5;
  }
  50% {
    transform: rotate(-45deg);
    opacity: 1;
  }
}
@keyframes hArrowR {
  0%,
  100% {
    transform: rotate(0deg);
    opacity: .5;
  }
  50% {
    transform: rotate(45deg);
    opacity: 1;
  }
}
.hcc-hint-text {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, .45);
  animation: hblink 2.6s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes hblink {
  0%,
  100% {
    opacity: .35;
  }
  50% {
    opacity: .9;
  }
}

    /* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root {
    --hcc-card-w: min(400px, 78vw);
    --hcc-card-radius: 20px;
    --hcc-card-thick: 8px;
  }
  #hcc-hint {
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  :root {
    --hcc-card-w: min(300px, 82vw);
    --hcc-card-radius: 16px;
    --hcc-card-thick: 5px;
  }
  .hcc-wedge {
    width: 100px;
  }
}

    /* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hcc-sweep {
    animation: none;
  }
  .hcc-flipper {
    transition-duration: .001ms !important;
  }
  .hcc-hint-arrow-l,
  .hcc-hint-arrow-r,
  .hcc-hint-text {
    animation: none;
    opacity: .6;
  }
}

/* ── MAIN SITE STYLES ──────────────────────────────────────── */
:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #141414;
  --surface: #1a1a1a;
  --border: rgba(255, 255, 255, 0.07);
  --gold: #c9a84c;
  --gold2: #f0d080;
  --white: #f5f5f0;
  --muted: rgba(245, 245, 240, 0.45);
  --header-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: clamp(10px, 1.5vw, 16px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none
}
img {
  max-width: 100%;
  display: block
}
button {
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit
}

    /* ── LOADER ─────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity .6s ease;
}
.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  background: linear-gradient(135deg, var(--gold), var(--gold2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lPulse 1.2s ease-in-out infinite alternate;
}
.loader-bar-wrap {
  width: clamp(160px, 30vw, 240px);
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
#loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 999px;
  transition: width .15s ease;
}
.loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes lPulse {
  from {
    opacity: .6;
    transform: scale(.97)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}

    /* ── HEADER ──────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
#header.visible {
  transform: translateY(0)
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px
}
.logo-badge {
  width: 32px;
}

.logo-badge img {
  width: 32px;
  height: auto;
  border-radius: 5px;
}
.header-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: .02em;
}
#header-greet {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  color: var(--muted);
  margin-left: 4px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px
}
.track-btn-desktop {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  letter-spacing: .04em;
  transition: all .2s ease;
}
.track-btn-desktop:hover {
  background: rgba(201, 168, 76, .1)
}
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}
#hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
@media(max-width:900px) {
  .track-btn-desktop {
    display: none
  }
  #hamburger {
    display: flex
  }
}

    /* ── MOBILE NAV ─────────────────────────────────── */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
#mobile-nav.open {
  transform: translateX(0)
}
#mobile-nav a {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  opacity: .7;
  transition: all .2s ease;
}
#mobile-nav a:hover {
  opacity: 1;
  color: var(--gold)
}
#mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  font-size: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

    /* ── SECTION COMMON ─────────────────────────────── */
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

    /* ════════════════════════════════════════════════════
       SCROLL-TRIGGER ANIMATIONS  (pure IntersectionObserver)
       All elements start hidden; .visible is added by JS
       when they enter the viewport.
    ════════════════════════════════════════════════════ */

    /* Base — fade up (default) */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

    /* Fade from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

    /* Fade from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

    /* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

    /* Stagger delays — add data-delay="1" through "6" on children */
[data-delay="1"] {
  transition-delay: .08s !important;
}
[data-delay="2"] {
  transition-delay: .16s !important;
}
[data-delay="3"] {
  transition-delay: .24s !important;
}
[data-delay="4"] {
  transition-delay: .32s !important;
}
[data-delay="5"] {
  transition-delay: .40s !important;
}
[data-delay="6"] {
  transition-delay: .48s !important;
}

    /* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

    /* ── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  position: relative;
  background:
  radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 168, 76, .07) 0%, transparent 65%),
  radial-gradient(ellipse 55% 45% at 15% 25%, rgba(201, 168, 76, .05) 0%, transparent 60%),
  linear-gradient(160deg, #0d0b08 0%, #080808 40%, #060606 100%);
}
.hero-inner {
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 72px) clamp(16px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
}
@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding-bottom: 48px;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%
}
@media(max-width:900px) {
  .hero-content {
    align-items: center
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}
@media(max-width:900px) {
  .hero-eyebrow {
    justify-content: center
  }
  .hero-eyebrow::before {
    display: none
  }
}
h1.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 1.0;
  letter-spacing: -.01em;
  color: var(--white);
}

    /* Each line is a fully independent block — line 2 NEVER shifts */
.hero-line-1,
.hero-line-2 {
  display: block;
  white-space: nowrap;
  max-width: 100%;
}
h1.hero-title .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

    /* ── Typewriter dynamic word ──────────────────────── */
#hero-dynamic-word {
  display: inline-block;
  position: relative;
  color: var(--white);
  min-width: 2ch;
}
#hero-dynamic-word::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--gold, #c9a84c);
  animation: tw-blink 0.7s step-end infinite;
  font-weight: 300;
}
#hero-dynamic-word.tw-pause::after {
  animation: none;
  opacity: 0;
}
@keyframes tw-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-built {
  font-size: clamp(10px, .9vw, 12px);
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
  align-self: flex-start;
  width: fit-content;
}
.google-rating-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 168, 76, .35);
  transform: translateY(-1px);
}
@media(max-width:900px) {
  .google-rating-badge {
    align-self: center
  }
}
.grb-g {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}
.grb-info {
  display: flex;
  flex-direction: column;
  gap: 2px
}
.grb-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1
}
.grb-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(10px, .85vw, 12px);
  font-weight: 500;
  color: rgba(245, 245, 240, 0.62);
  white-space: nowrap;
}
.grb-text strong {
  color: var(--white);
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%
}
@media(max-width:900px) {
  .hero-cta {
    justify-content: center;
    align-self: center
  }
}
@media(max-width:680px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: min(340px, calc(100vw - 48px))
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 1.5vh, 16px) clamp(20px, 2.5vw, 32px);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: clamp(11px, .95vw, 14px);
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 12px;
  transition: all .25s ease;
  box-shadow: 0 8px 32px rgba(201, 168, 76, .30), 0 2px 8px rgba(0, 0, 0, .4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, .50), 0 4px 12px rgba(0, 0, 0, .4)
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 1.5vh, 16px) clamp(20px, 2.5vw, 32px);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: clamp(11px, .95vw, 14px);
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 12px;
  transition: all .25s ease;
}
.btn-secondary:hover {
  background: rgba(201, 168, 76, .1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .18)
}
.hero-micro-trust {
  font-size: clamp(11px, .9vw, 12px);
  color: var(--muted);
}

    /* ── HERO CARD CAROUSEL WRAP ─────────────────────── */
#hero-canvas-wrap {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 20px 0;
  overflow: visible;
}

    /* Ambient gold glow behind the card */
#hero-canvas-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 70% 55% at 50% 50%,
  rgba(201, 168, 76, .13) 0%,
  rgba(201, 168, 76, .04) 45%,
  transparent 70%);
  pointer-events: none;
  z-index: 0;
}

    /* Floating particles canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

    /* Trust line */
.hero-trust-line {
  font-family: 'Syne', sans-serif;
  font-size: clamp(10px, .9vw, 12px);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .55);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust-line::before,
.hero-trust-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .3), transparent);
}
@media(max-width:900px) {
  .hero-trust-line {
    justify-content: center;
  }
}

    /* Legacy canvas hidden */
#hero-three-canvas {
  display: none;
}
.card-drag-hint {
  display: none;
}
@keyframes hintBlink {
  0%,
  100% {
    opacity: .35
  }
  50% {
    opacity: .85
  }
}
@media(max-width:900px) {
  #hero-canvas-wrap {
    width: min(400px, 78vw);
    margin: 0 auto;
    padding: 16px 0;
  }
}
@media(max-width:480px) {
  #hero-canvas-wrap {
    width: min(300px, 82vw);
    padding: 12px 0;
  }
}
#hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, .12) 0%, transparent 70%);
  filter: blur(0px);
}

    /* ── PRODUCTS / CARD SELECTOR ────────────────────── */
#products {
  padding: clamp(48px, 8vw, 120px) clamp(16px, 4vw, 60px);
  background: var(--bg2);
}
.products-header {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 60px)
}
.products-header .section-sub {
  margin: 0 auto
}
.main-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "preview controls" "pricebox controls";
  gap: 20px;
}
@media(max-width:900px) {
  .main-container {
    grid-template-columns: 1fr;
    grid-template-areas: "preview" "controls" "pricebox";
  }
}
.preview-pane {
  grid-area: preview;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.preview-head {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
#cardContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  perspective: 800px;
  min-height: 160px;
}
.card-wrapper {
  cursor: pointer;
  transition: transform .08s ease;
}
.card-wrapper.landscape {
  width: min(320px, 90%);
  aspect-ratio: 85.6/53.98
}
.card-wrapper.portrait {
  width: min(200px, 60%);
  aspect-ratio: 53.98/85.6
}
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.23, 1, .32, 1);
}
.card-wrapper:hover .card-inner {
  transform: rotateY(180deg)
}
.card-face {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}
.card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.card-face.card-back {
  transform: rotateY(180deg)
}
.card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: rgba(201, 168, 76, .3);
}
#currentLabel {
  font-family: 'Syne', sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  letter-spacing: .05em;
}

    /* Price Box */
.price-box {
  grid-area: pricebox;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

    /* Desktop: hide the body-level mobile box always */
#price-box-mobile {
  display: none !important;
}
@media(max-width:480px) {
      /* Hide in-grid box on mobile */
  #price-box-desktop {
    display: none !important;
  }

      /* Mobile fixed bar */
  #price-box-mobile {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(201, 168, 76, .25);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, .8);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--surface);
    transform: translateY(110%);
    transition: transform .35s cubic-bezier(.23, 1, .32, 1);
    pointer-events: none;
  }
  #price-box-mobile.pb-visible {
    transform: translateY(0%) !important;
    pointer-events: all;
  }
  #products {
    padding-bottom: 90px !important;
  }
}
#priceTag {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--white);
}
#priceTag span {
  color: var(--gold);
  font-size: 1.2em
}
a.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 8px;
  white-space: nowrap;
  transition: all .2s ease;
  box-shadow: 0 4px 16px rgba(201, 168, 76, .2);
}
a.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35)
}

    /* Controls Pane */
.controls-pane {
  grid-area: controls;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.controls-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
}
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}
.tab-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  border-color: transparent;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color .2s;
}
.search-box:focus-within {
  border-color: rgba(201, 168, 76, .4)
}
.search-box i {
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0
}
.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.search-box input::placeholder {
  color: var(--muted)
}
.options-grid-container {
  flex: 1;
  overflow-y: auto;
  max-height: 140px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, .2) transparent;
}
.options-grid-container::-webkit-scrollbar {
  width: 4px
}
.options-grid-container::-webkit-scrollbar-track {
  background: transparent
}
.options-grid-container::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, .2);
  border-radius: 2px
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 2px;
}
@media(max-width:480px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}
.option-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
}
.option-card:hover,
.option-card.active {
  background: rgba(201, 168, 76, .1);
  border-color: rgba(201, 168, 76, .4);
}
.option-card.active {
  background: rgba(201, 168, 76, .15);
  border-color: var(--gold);
}
.option-card i {
  color: var(--gold);
  font-size: 16px
}
.option-card span {
  font-family: 'Syne', sans-serif;
  font-size: clamp(9px, .8vw, 11px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.feat-item i {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0
}

    /* ── ACCESSORIES ─────────────────────────────────── */
#additional {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
  overflow: hidden;
}
.additional-header {
  text-align: center;
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.additional-header .section-sub {
  margin: 0 auto
}
.addl-track-outer {
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.addl-track-outer:active {
  cursor: grabbing
}
.addl-track-outer::before,
.addl-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(24px, 5vw, 80px);
  pointer-events: none;
  z-index: 2;
}
.addl-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent)
}
.addl-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent)
}
.addl-track {
  display: flex;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 60px) 20px;
  will-change: transform;
  user-select: none;
}
.addl-slide {
  flex-shrink: 0;
  width: clamp(180px, 22vw, 240px)
}
.addl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.addl-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .4);
}
.addl-img-wrap {
  aspect-ratio: 1;
  background: #0d0d0d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addl-img-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform .4s ease;
  pointer-events: none;
}
.addl-card:hover .addl-img-wrap img {
  transform: scale(1.06)
}
.addl-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}
.addl-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.addl-price {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500
}
a.addl-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .25);
  color: var(--gold);
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all .2s ease;
  align-self: flex-start;
}
a.addl-btn:hover {
  background: rgba(201, 168, 76, .2);
  border-color: var(--gold)
}

    /* ── OPERATORS ───────────────────────────────────── */
#operators {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bg2);
  overflow-x: clip;
}
.operators-header {
  text-align: center;
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.operators-header .section-sub {
  margin: 0 auto
}
.ops-track-outer {
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}
.ops-track-outer::before,
.ops-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  pointer-events: none;
  z-index: 2;
}
.ops-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent)
}
.ops-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent)
}
#ops-track {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  will-change: transform;
  user-select: none;
  cursor: grab;
}
#ops-track:active {
  cursor: grabbing
}
.op-card-item {
  flex-shrink: 0
}
.operator-card {
  width: clamp(126px, 13vw, 148px);
  min-height: clamp(200px, 22vw, 240px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 12px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, opacity .3s ease,
  border-color .3s ease, box-shadow .3s ease;
  transform: scale(.84);
  opacity: .38;
}
.operator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.op-card-item.op-active .operator-card {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(201, 168, 76, .4);
  box-shadow: 0 0 32px rgba(201, 168, 76, .12), 0 8px 32px rgba(0, 0, 0, .3);
}
.op-card-item.op-active .operator-card::before {
  opacity: 1
}
.op-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, .5);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}
.op-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.op-name {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.op-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-top: 2px;
}
.op-name-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.op-addr {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5
}
.op-since {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
}

    /* ── REVIEWS ─────────────────────────────────────── */
#reviews {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
#reviews::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, .04) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: clamp(24px, 3vw, 48px);
  position: relative;
  z-index: 1;
}
.reviews-header .section-sub {
  margin: 0 auto
}
.translate-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gold);
  transition: all .2s ease;
}
.translate-toggle-btn:hover {
  background: rgba(201, 168, 76, .08)
}
.review-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.review-action-btns a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all .2s ease;
}
.btn-leave-review {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
}
.btn-leave-review:hover {
  box-shadow: 0 4px 20px rgba(201, 168, 76, .3)
}
.btn-see-all {
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-see-all:hover {
  border-color: rgba(201, 168, 76, .3);
  color: var(--gold)
}

    /* ── REVIEWS SLIDER ──────────────────────────────── */
.reviews-slider-container {
  overflow: hidden;
  padding: 8px 0 24px;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.reviews-slider-container:active {
  cursor: grabbing
}
.reviews-slider-container::before,
.reviews-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(16px, 4vw, 60px);
  pointer-events: none;
  z-index: 3;
}
.reviews-slider-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent)
}
.reviews-slider-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent)
}
.reviews-slider-inner {
  display: flex;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 60px);
  will-change: transform;
  width: max-content;
}
.review-card-slide {
  flex-shrink: 0;
  width: clamp(260px, 80vw, 480px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 310px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.review-card-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  opacity: 0;
  transition: opacity .3s;
}
.review-card-slide:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}
.review-card-slide:hover::before {
  opacity: 1
}
.review-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px
}
.review-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, .3);
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.review-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.review-avatar-initials {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
}
.review-meta-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px
}
.review-body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 245, 240, .8);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
button.review-read-more {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
  text-align: left;
  padding: 0;
  display: none;
}
.review-card-spacer {
  flex: 1
}
.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.review-time {
  font-size: 11px;
  color: var(--muted)
}
.review-verified {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 168, 76, .1);
  padding: 2px 8px;
  border-radius: 4px;
}
.review-photos-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}
.review-cust-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}
.review-cust-thumb:hover {
  border-color: rgba(201, 168, 76, .5)
}
.review-cust-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

    /* ── FAQ ─────────────────────────────────────────── */
#faq {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  background: var(--bg2);
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px)
}
.faq-header .translate-toggle-btn,
.faq-header .section-sub {
  margin: 8px auto 0
}
#faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover {
  border-color: rgba(201, 168, 76, .2)
}
.faq-item.open {
  border-color: rgba(201, 168, 76, .35)
}
.faq-q {
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  color: var(--white);
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .07);
  border: 1px solid rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .3s ease, border-color .3s ease, transform .4s cubic-bezier(.23, 1, .32, 1);
}

    /* Horizontal bar — always visible */
.faq-icon::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: opacity .3s ease;
}

    /* Vertical bar — rotates to become horizontal on open */
.faq-icon::after {
  content: '';
  position: absolute;
  width: 1.5px;
  height: 12px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1), opacity .3s ease;
}
.faq-item.open .faq-icon {
  background: rgba(201, 168, 76, .12);
  border-color: rgba(201, 168, 76, .45);
}
.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr
}
.faq-a>p {
  overflow: hidden;
  padding: 0 clamp(16px, 2.5vw, 24px);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.75;
  color: rgba(245, 245, 240, .7);
  padding-bottom: 0;
  transition: padding-bottom .35s ease;
}
.faq-item.open .faq-a>p {
  padding-bottom: clamp(14px, 2vw, 20px)
}
.faq-extra {
  display: none
}
#seeMoreFaq {
  display: block;
  margin: 20px auto 0;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  padding: 10px 24px;
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 8px;
  transition: all .2s ease;
}
#seeMoreFaq:hover {
  background: rgba(201, 168, 76, .08)
}

    /* ── FOOTER ──────────────────────────────────────── */
#footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 60px) clamp(24px, 3vw, 40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(32px, 4vw, 56px);
}
@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:540px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}
.footer-brand-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.footer-brand-subtitle {
  font-size: 11px;
  color: var(--muted)
}
.footer-brand-desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--white)
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0
}
a.footer-contact-item:hover {
  color: var(--white)
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
#footer-anim-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: .1em;
  overflow: hidden;
}
#footer-anim-brand .brand-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-22px);
}
#footer-anim-brand.anim-in .brand-letter {
  animation: footerLetterUp .72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes footerLetterUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.footer-copy {
  font-size: 11px;
  color: var(--muted)
}
.footer-social {
  display: flex;
  gap: 12px
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all .2s ease;
}
.si-ig:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, .3);
  background: rgba(225, 48, 108, .08)
}
.si-wa:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, .3);
  background: rgba(37, 211, 102, .08)
}
.si-fb:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, .3);
  background: rgba(24, 119, 242, .08)
}
.si-yt:hover {
  color: #ff0000;
  border-color: rgba(255, 0, 0, .3);
  background: rgba(255, 0, 0, .08)
}

    /* ── BACK TO TOP ─────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 18px;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
#back-to-top:hover {
  transform: translateY(-3px) scale(1.05)
}

    /* ── AI WIDGET ───────────────────────────────────── */
#ai-widget {
  position: fixed;
  bottom: 50px;
  right: 18px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ai-toggle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(201, 168, 76, .35);
  transition: all .25s ease;
  flex-shrink: 0;
}
.ai-toggle-btn:hover {
  transform: scale(1.08)
}
.ai-chat-panel {
  width: min(340px, calc(100vw - 36px));
  max-height: 460px;
  background: var(--bg3);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  transform: scale(.9) translateY(10px);
  display: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: all .3s var(--ease);
}
.ai-chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  display: flex;
  pointer-events: all;
}
.ai-chat-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(201, 168, 76, .1), rgba(201, 168, 76, .05));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ai-chat-header-icon {
  font-size: 20px
}
.ai-chat-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.ai-chat-header-sub {
  font-size: 10px;
  color: var(--muted)
}
#ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .1) transparent;
}
.chat-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  animation: msgIn .25s ease;
}
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }
  to {
    opacity: 1;
    transform: none
  }
}
.chat-msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--white);
}
.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-weight: 500;
}
.ai-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background: var(--bg3);
  z-index: 2;
}
#ai-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  resize: none;
  outline: none;
  min-height: 36px;
  max-height: 80px;
  transition: border-color .2s;
}
#ai-chat-input:focus {
  border-color: rgba(201, 168, 76, .4)
}
#ai-chat-send {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
#ai-chat-send:hover {
  transform: scale(1.05)
}

    /* ── MODALS ──────────────────────────────────────── */
#review-modal,
#photo-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#review-modal.open,
#photo-modal.open {
  opacity: 1;
  pointer-events: all;
}
.review-modal-card {
  background: var(--bg3);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 16px;
  padding: 28px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  word-break: break-word;
  overflow-wrap: break-word;
}
button.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
button.modal-close:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--white)
}
#modal-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
#modal-review-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 245, 240, .85);
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
#modal-review-time {
  font-size: 11px;
  color: var(--muted)
}
#photo-modal {
  z-index: 3000
}
#photo-modal-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  overflow: hidden;
  animation: none;
}
#photo-modal-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain
}
#photo-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  font-size: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: all .2s;
}
#photo-modal-close:hover {
  background: rgba(255, 255, 255, .2)
}
.photo-modal-info {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
}
#photo-modal-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700
}
#photo-modal-role {
  font-size: 11px;
  color: var(--muted)
}

    /* ── REDUCED MOTION ──────────────────────────────── */
@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important
  }
}

    /* ── SCROLL HINT ─────────────────────────────────── */
#scroll-hint-btn {
  position: absolute;
  bottom: clamp(16px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 2;
  animation: fadeInUp 1s forwards;
  animation-delay: 2.5s;
  opacity: 0;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(201, 168, 76, .5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollWheel 1.5s ease-in-out infinite;
}
.scroll-hint-text {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: hintBlink 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1
  }
  100% {
    transform: translateY(10px);
    opacity: 0
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px)
  }
}

/* ── CARD ADMIN PANEL ──────────────────────────────────────── */
/* ─── Gear trigger ───────────────────────────────── */
#card-admin-trigger {
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
      /* same fade transition as back-to-top */
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  transition: opacity .3s ease, transform .3s ease;
  border: none;
}
    /* hidden state — mirrors back-to-top hidden */
#card-admin-trigger.hero-hidden {
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
}
#card-admin-trigger:hover:not(.hero-hidden) {
  transform: rotate(45deg) scale(1.08);
}
#card-admin-trigger.open:not(.hero-hidden)  {
  transform: rotate(135deg);
}

    /* ─── Panel ──────────────────────────────────────── */
#card-admin-panel {
  position: fixed;
  bottom: 168px;
  right: 20px;
  z-index: 2999;
  width: min(310px, calc(100vw - 36px));
  background: var(--bg3);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  padding: 0;
  transform: scale(.85) translateY(12px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease);
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}
#card-admin-panel.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

    /* ─── Panel header ───────────────────────────────── */
.cap-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--bg3);
  z-index: 2;
  border-radius: 16px 16px 0 0;
}
.cap-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cap-reset {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--muted);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.cap-reset:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}

    /* ─── Sections ───────────────────────────────────── */
.cap-section {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.cap-section:last-child {
  border-bottom: none;
}
.cap-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

    /* ─── Row: label + control ───────────────────────── */
.cap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.cap-row:last-child {
  margin-bottom: 0;
}
.cap-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--white);
  flex: 1;
  min-width: 0;
}

    /* ─── Text input ─────────────────────────────────── */
.cap-input {
  flex: 1.4;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  outline: none;
  transition: border-color .2s;
  min-width: 0;
}
.cap-input:focus {
  border-color: rgba(201,168,76,.4);
}

    /* ─── Color swatch ───────────────────────────────── */
.cap-color {
  width: 30px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  background: none;
  outline: none;
  flex-shrink: 0;
}
.cap-color::-webkit-color-swatch-wrapper {
  padding: 2px;
}
.cap-color::-webkit-color-swatch {
  border-radius: 4px;
  border: none;
}

    /* ─── Select ─────────────────────────────────────── */
.cap-select {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  outline: none;
  cursor: pointer;
  flex: 1.4;
}
.cap-select option {
  background: #1a1a1a;
}

    /* ─── Apply btn ──────────────────────────────────── */
.cap-apply {
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.cap-apply:hover {
  opacity: .88;
}


    /* ─── Custom swatch color picker ─────────────────── */
.cap-color-field {
  margin-bottom: 10px;
}
.cap-color-field:last-child {
  margin-bottom: 0;
}
.cap-color-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cap-color-field-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--white);
}
.cap-color-preview {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.cap-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cap-swatch {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s, transform .15s;
  flex-shrink: 0;
}
.cap-swatch:hover {
  transform: scale(1.15);
}
.cap-swatch.active {
  border-color: rgba(255,255,255,.8);
}

    /* ─── Toast ──────────────────────────────────────── */
#cap-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--gold);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 8px 18px;
  border-radius: 99px;
  z-index: 4000;
  opacity: 0;
  transition: all .3s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
#cap-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
