:root {
  color-scheme: dark;
  --bg: #06080a;
  --bg2: #0d0d0d;
  --emerald: #0d4a3a;
  --emerald-light: #1a7a5e;
  --emerald-glow: #2dd4a0;
  --silver: #c0c0c0;
  --text: #f5f5f5;
  --text2: #bcc5c1;
  --text3: #98a29d;
  --glass: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.15);
  /* RGB channel tokens (P1-26) — enable rgba(var(--…),α) alpha compositing */
  --glow-rgb: 45,212,160;         /* --emerald-glow  #2dd4a0 */
  --emerald-rgb: 13,74,58;        /* --emerald       #0d4a3a */
  --emerald-light-rgb: 26,122,94; /* --emerald-light #1a7a5e */
  /* Shared easing (P1-26) — single source for the signature ease-out curve */
  --ease: cubic-bezier(.16,1,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: 'Inter', 'Assistant', 'Heebo', sans-serif;
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--emerald-glow); text-decoration: none; transition: color .3s; }
a:hover { color: #7ee9c6; }

/* Keyboard focus ring (P1-5) — outline follows each control's own border-radius */
:focus-visible {
  outline: 2px solid var(--emerald-glow);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* Dark form controls / autofill (P1-25) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 100px rgba(255,255,255,.04) inset;
          box-shadow: 0 0 0 100px rgba(255,255,255,.04) inset;
  caret-color: var(--text);
}

/* AMBIENT BACKGROUND CANVAS */
#bgCanvas {
  position: fixed;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  display: block;
  pointer-events: none;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: .8em;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--silver) 50%, var(--emerald-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.preloader-line {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.preloader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--emerald-glow), transparent);
  animation: load 2s ease-in-out infinite;
}
.preloader-sub {
  margin-top: 1.5rem;
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--text3);
}
@keyframes load { 0% { left: -100%; } 100% { left: 100%; } }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(60px); transition: all 1.2s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .15s; }
.reveal-d2 { transition-delay: .3s; }
.reveal-d3 { transition-delay: .45s; }
.reveal-d4 { transition-delay: .6s; }
.reveal-scale { opacity: 0; transform: scale(.85); transition: all 1.2s var(--ease); }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-80px); transition: all 1.2s var(--ease); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(80px); transition: all 1.2s var(--ease); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* NAVBAR */
/* PROMO BAR — bright emerald announcement, pinned above the navbar */
:root { --promo-h: 36px; --nav-h: 87px; }
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--promo-h);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(90deg, #27c493, var(--emerald-glow) 35%, #7ff0cd 50%, var(--emerald-glow) 65%, #27c493);
  color: #04251a;
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 0 1rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(45,212,160,.35);
}
.promo-bar:hover { filter: brightness(1.05); }
.promo-bar span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 600px) { .promo-bar { font-size: .68rem; letter-spacing: .02em; } }

.navbar {
  position: fixed;
  top: var(--promo-h, 36px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,.3);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: all .5s var(--ease);
}
.navbar.scrolled {
  background: rgba(10,10,10,.95);
  padding: .8rem 3rem;
  border-bottom: 1px solid rgba(var(--glow-rgb),.1);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 2rem; flex: 1; }
.nav-right { justify-content: flex-end; }

.hamburger {
  width: 28px;
  height: 20px;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 8px;
  margin: -12px -8px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all .4s var(--ease);
}
.hamburger:hover span:nth-child(1) { width: 60%; }
.hamburger:hover span:nth-child(2) { width: 80%; }
.hamburger:hover span:nth-child(3) { width: 40%; }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .4em;
  color: var(--text);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .4s;
}
.logo:hover { letter-spacing: .5em; color: var(--emerald-glow); }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--text);
  transition: color .3s;
}
.cart-btn:hover { color: var(--emerald-glow); }
.cart-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--emerald);
  color: #fff;
  font-size: .6rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(var(--glow-rgb),.4);
}

/* HERO */
.hero {
  min-height: 100vh;
  box-sizing: border-box;
  /* Reserve the fixed header — without this the centered stack bleeds UNDER the
     promo bar + navbar on laptop-height viewports (the watch hit the logo). */
  padding-top: calc(var(--promo-h, 36px) + var(--nav-h, 87px));
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  perspective: 1500px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(13,74,58,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26,122,94,.15) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--glow-rgb),.08) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-watch-wrap {
  position: relative;
  /* height-aware so the whole hero stack fits without clipping (was a fixed 440px) */
  width: min(440px, 33vh);
  height: min(440px, 33vh);
  margin-top: min(1rem, 1.5vh);
  z-index: 2;
}

.hero-watch-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,74,58,.6) 0%, rgba(26,122,94,.3) 25%, rgba(var(--glow-rgb),.1) 40%, transparent 70%);
  filter: blur(60px);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-watch-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  cursor: grab;
}
.hero-watch-canvas:active { cursor: grabbing; }

.hero-content {
  position: relative;
  text-align: center;
  z-index: 3;
  margin-top: -0.5rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .5em;
  color: var(--text2);
  margin-bottom: min(1.5rem, 2.2vh);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  /* min() with vh keeps the two-line title from eating a short viewport */
  font-size: clamp(2.2rem, min(6vw, 7.4vh), 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: min(1.4rem, 2vh);
  background: linear-gradient(135deg, var(--text) 0%, var(--silver) 40%, var(--emerald-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-glass {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 3rem;
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .5s var(--ease);
  box-shadow: 0 4px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}

.cta-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--glow-rgb),.1) 0%, transparent 50%, rgba(var(--glow-rgb),.05) 100%);
  opacity: 0;
  transition: opacity .5s;
}

.cta-glass:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(var(--glow-rgb),.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(0,0,0,.5), 0 0 40px rgba(var(--glow-rgb),.2), inset 0 1px 0 rgba(255,255,255,.15);
}

.cta-glass:hover::before { opacity: 1; }

.cta-glass svg {
  width: 16px;
  height: 16px;
  transition: transform .4s var(--ease);
}

.cta-glass:hover svg { transform: translateX(6px); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .75;
  animation: bounce 2.5s infinite;
}

.scroll-indicator span {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text2);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text2), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* TRUST MARQUEE */
.trust-marquee {
  background: linear-gradient(90deg, rgba(13,74,58,.8), rgba(26,122,94,.6), rgba(13,74,58,.8));
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(var(--glow-rgb),.1);
  border-bottom: 1px solid rgba(var(--glow-rgb),.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}

.marquee-item svg { width: 14px; height: 14px; opacity: .6; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(var(--glow-rgb),.5); }

@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICE BADGES */
.service-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 1rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--glow-rgb),.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(var(--glow-rgb),.06);
}
.service-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(var(--glow-rgb),.08);
  border: 1px solid rgba(var(--glow-rgb),.2);
  color: var(--emerald-glow);
}
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.service-desc { font-size: .82rem; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* CRAFTSMANSHIP SECTION */
.craft-section {
  padding: 12rem 2rem;
  position: relative;
  overflow: hidden;
}

.craft-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(13,74,58,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(26,122,94,.06) 0%, transparent 40%);
}

.craft-wrap {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.craft-intro {
  max-width: 720px;
  margin: 2.2rem auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.9;
  font-weight: 300;
}

/* three real-render macro cards */
.macro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 4rem;
}
.macro-card {
  margin: 0;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .4s, box-shadow .4s;
}
.macro-card:hover { transform: translateY(-5px); border-color: rgba(var(--glow-rgb),.3); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(var(--glow-rgb),.08); }
.macro-card img {
  width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block;
  background: radial-gradient(ellipse at 50% 45%, rgba(26,122,94,.20), rgba(6,10,9,.9) 75%);
}
.macro-card figcaption {
  padding: 1.1rem 1.3rem 1.3rem;
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* quartz manifesto */
.quartz-block {
  margin-top: 4rem;
  text-align: center;
}
.quartz-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
}
.quartz-block h3::after { content: ''; display: block; width: 46px; height: 1px; margin: 1rem auto 0; background: linear-gradient(90deg, transparent, var(--emerald-glow), transparent); }
.quartz-block p { margin-top: 1rem; color: var(--text2); font-weight: 300; font-size: .98rem; line-height: 1.8; }

/* compact verified spec table */
.spec-table {
  max-width: 640px;
  margin: 3.2rem auto 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--glass);
  overflow: hidden;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .95rem 1.5rem;
}
.spec-row + .spec-row { border-top: 1px solid rgba(255,255,255,.05); }
.spec-k { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text3); white-space: nowrap; padding-top: .15rem; }
.spec-v { font-size: .92rem; color: var(--text); font-weight: 300; text-align: end; }

.craft-stats {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 4.5rem;
  max-width: 640px;
  margin: 3.2rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}

.craft-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--emerald-glow);
  line-height: 1;
  text-shadow: 0 0 20px rgba(var(--glow-rgb),.2);
}

.craft-stat-label {
  font-size: .7rem;
  color: var(--text3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .6rem;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 10rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--emerald-glow);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 20px rgba(var(--glow-rgb),.2);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--silver) 50%, var(--emerald-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--text2);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.product-card {
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all .6s var(--ease);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--glow-rgb),.06) 0%, transparent 50%, rgba(var(--glow-rgb),.03) 100%);
  opacity: 0;
  transition: opacity .6s;
  pointer-events: none;
  z-index: 1;
}
/* Metallic sheen sweep */
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.10), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}
.product-card:hover::after {
  opacity: 1;
  animation: sheen 1.1s var(--ease);
}
@keyframes sheen { 0% { left: -60%; } 100% { left: 120%; } }

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(var(--glow-rgb),.25);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 50px rgba(var(--glow-rgb),.1);
}

.product-card:hover::before { opacity: 1; }

.product-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.badge-rec { background: rgba(192,192,192,.12); color: var(--silver); border: 1px solid rgba(192,192,192,.2); }
.badge-lim { background: rgba(139,90,43,.4); color: #d4a574; border: 1px solid rgba(212,165,116,.3); }
.badge-best { background: rgba(26,122,94,.4); color: #7ecfb3; border: 1px solid rgba(26,122,94,.5); }

/* Image loading skeletons (P2-31) */
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-image-wrap {
  position: relative;
  padding: 2.5rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
  background: radial-gradient(ellipse 72% 60% at 50% 44%, rgba(26,122,94,.20), rgba(13,74,58,.05) 46%, transparent 72%);
}

.product-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.05) 45%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.05) 55%, transparent 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}

.product-image-wrap img {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 260px;
  object-fit: contain;
  transition: transform .8s var(--ease);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.6));
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.1) translateY(-8px);
  filter: drop-shadow(0 35px 60px rgba(0,0,0,.7)) drop-shadow(0 0 30px rgba(var(--glow-rgb),.15));
}

.watch-canvas {
  width: 100%;
  height: 330px;
  display: block;
  cursor: grab;
}
.watch-canvas:active { cursor: grabbing; }

.view-360-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  padding: .75rem 1.2rem;
  min-height: 44px;
  background: rgba(13,74,58,.7);
  border: 1px solid rgba(var(--glow-rgb),.3);
  border-radius: 100px;
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: all .4s;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.view-360-btn:hover {
  background: rgba(26,122,94,.9);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(var(--glow-rgb),.3);
}

.view-360-btn svg { width: 14px; height: 14px; }

.product-info {
  padding: 1.5rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: .3rem;
}

.product-category {
  font-size: .75rem;
  color: var(--text3);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.price-current { font-size: 1.2rem; font-weight: 500; }
.price-original { font-size: .95rem; color: var(--text3); text-decoration: line-through; }
.price-discount {
  font-size: .7rem;
  color: var(--emerald-glow);
  font-weight: 600;
  padding: .25rem .6rem;
  background: rgba(var(--glow-rgb),.1);
  border-radius: 4px;
  border: 1px solid rgba(var(--glow-rgb),.2);
}

.add-to-cart {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.add-to-cart:hover {
  background: rgba(var(--glow-rgb),.08);
  border-color: rgba(var(--glow-rgb),.4);
  box-shadow: 0 0 25px rgba(var(--glow-rgb),.1);
}

.add-to-cart svg { width: 16px; height: 16px; }

/* 3D VIEWER (full viewport) */
.viewer-overlay {
  position: fixed;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.viewer-overlay.active { opacity: 1; visibility: visible; }

.viewer-modal {
  background: rgba(12,14,16,.97);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border: 1px solid var(--border);
  border-radius: 28px;
  max-width: 1040px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  transform: scale(.9);
  transition: transform .6s var(--ease);
  box-shadow: 0 0 90px rgba(var(--glow-rgb),.1);
}

.viewer-overlay.active .viewer-modal { transform: scale(1); }

.viewer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  cursor: pointer;
  z-index: 10;
  transition: all .3s;
}
.viewer-close:hover { color: var(--emerald-glow); border-color: rgba(var(--glow-rgb),.4); }
.viewer-close svg { width: 20px; height: 20px; }

.viewer-3d {
  position: relative;
  background: radial-gradient(ellipse at 50% 40%, rgba(26,122,94,.12), rgba(6,8,10,.6));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  border-left: 1px solid var(--border);
}
#viewerCanvas { width: 100%; height: 100%; display: block; cursor: grab; }
#viewerCanvas:active { cursor: grabbing; }

.viewer-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .68rem;
  color: var(--text3);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
  animation: fade-hint 3s ease-in-out infinite;
}
.viewer-hint svg { width: 16px; height: 16px; }
@keyframes fade-hint { 0%, 100% { opacity: .6; } 50% { opacity: .95; } }

.viewer-details {
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.viewer-details .product-name { font-size: 2rem; margin-bottom: .4rem; }
.viewer-details .product-category { margin-bottom: 1.4rem; }
.viewer-desc {
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.swatch-label {
  font-size: .68rem;
  color: var(--text3);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.swatch-row { display: flex; gap: .7rem; margin-bottom: 2rem; flex-wrap: wrap; }
.swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.15);
  transition: all .3s;
  position: relative;
}
.swatch:hover { transform: scale(1.12); }
.swatch.active {
  border-color: var(--emerald-glow);
  box-shadow: 0 0 0 3px rgba(var(--glow-rgb),.2), 0 0 18px rgba(var(--glow-rgb),.3);
}

.viewer-features { list-style: none; margin-bottom: 2rem; }
.viewer-features li {
  font-size: .86rem;
  color: var(--text2);
  padding: .45rem 0;
  padding-right: 1.6rem;
  position: relative;
}
.viewer-features li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald-glow);
  box-shadow: 0 0 10px rgba(var(--glow-rgb),.4);
}

.viewer-actions { margin-top: auto; }
.viewer-actions .add-to-cart {
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 0 20px rgba(var(--glow-rgb),.2);
}
.viewer-actions .add-to-cart:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  box-shadow: 0 0 30px rgba(var(--glow-rgb),.3);
}

/* QUICK VIEW (accessories) */
.quickview-overlay {
  position: fixed;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.quickview-overlay.active { opacity: 1; visibility: visible; }

.quickview-modal {
  background: rgba(15,15,15,.97);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border: 1px solid var(--border);
  border-radius: 28px;
  max-width: 950px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(.85) translateY(30px);
  transition: all .6s var(--ease);
  box-shadow: 0 0 80px rgba(var(--glow-rgb),.08);
}

.quickview-overlay.active .quickview-modal { transform: scale(1) translateY(0); }

.quickview-image {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: rgba(255,255,255,.02);
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.quickview-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(var(--glow-rgb),.05) 0%, transparent 60%);
}

.quickview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.05) 45%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.05) 55%, transparent 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}

.quickview-image img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(var(--glow-rgb),.1));
  position: relative;
  z-index: 1;
}

.quickview-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  padding: .5rem;
  z-index: 10;
  transition: color .3s;
}

.quickview-close:hover { color: var(--emerald-glow); }
.quickview-close svg { width: 26px; height: 26px; }

.quickview-details {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.quickview-details .product-name { font-size: 2rem; margin-bottom: .5rem; }
.quickview-details .product-category { margin-bottom: 1.5rem; }

.quickview-desc {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.quickview-features { list-style: none; margin-bottom: 2rem; }

.quickview-features li {
  font-size: .88rem;
  color: var(--text2);
  padding: .5rem 0;
  padding-right: 1.8rem;
  position: relative;
}

.quickview-features li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-glow);
  box-shadow: 0 0 10px rgba(var(--glow-rgb),.4);
}

.quickview-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.quickview-actions .add-to-cart {
  flex: 1;
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 0 20px rgba(var(--glow-rgb),.2);
}

.quickview-actions .add-to-cart:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  box-shadow: 0 0 30px rgba(var(--glow-rgb),.3);
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 12rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(13,74,58,.12) 0%, transparent 60%);
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* FOUNDER PROMISE (replaced the fabricated testimonials) */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 4rem;
}
.promise-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  text-align: center;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
}
.promise-card:hover { transform: translateY(-6px); border-color: rgba(var(--glow-rgb),.25); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(var(--glow-rgb),.06); }
.promise-card svg { width: 30px; height: 30px; stroke: var(--emerald-glow); margin-bottom: 1.1rem; }
.promise-card h3 {
  font-family: 'Cormorant Garamond', 'Frank Ruhl Libre', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--text); margin-bottom: .6rem;
}
.promise-card p { font-size: .92rem; line-height: 1.75; color: var(--text2); font-weight: 300; }
.promise-cta { text-align: center; margin-top: 3rem; }
.promise-wa {
  display: inline-block; padding: .95rem 2rem; border-radius: 100px;
  background: rgba(var(--glow-rgb),.08);
  border: 1px solid rgba(var(--glow-rgb),.35);
  color: var(--emerald-glow); text-decoration: none;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s, transform .3s var(--ease);
}
.promise-wa:hover { background: rgba(var(--glow-rgb),.16); transform: translateY(-2px); }
@media (max-width: 900px) { .promise-grid { grid-template-columns: 1fr; } }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all .5s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--glow-rgb),.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(var(--glow-rgb),.05);
}

.testimonial-stars {
  display: flex;
  gap: .3rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg { width: 16px; height: 16px; fill: #d4a574; stroke: none; }

.testimonial-text {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(var(--glow-rgb),.3);
}

.testimonial-name { font-size: .9rem; font-weight: 500; }
.testimonial-role { font-size: .75rem; color: var(--text3); letter-spacing: .05em; }

/* FAQ */
.faq-section {
  padding: 8rem 2rem 10rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.faq-list { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--glass);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .4s, box-shadow .4s;
}
.faq-item.open {
  border-color: rgba(var(--glow-rgb),.28);
  box-shadow: 0 0 30px rgba(var(--glow-rgb),.06);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  text-align: right;
  padding: 1.5rem 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .3s;
}
.faq-q:hover { color: var(--emerald-glow); }
.faq-q-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(var(--glow-rgb),.3);
  color: var(--emerald-glow);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease), background .3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: rgba(var(--glow-rgb),.12); }
.faq-q-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-a-inner {
  padding: 0 1.8rem 1.6rem;
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text2);
  font-weight: 300;
}

/* NEWSLETTER */
.newsletter-section {
  padding: 6rem 2rem 4rem;
  position: relative;
}

.newsletter-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 3rem;
  background: var(--glass);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

.newsletter-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--glow-rgb),.08) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-container p {
  font-size: .95rem;
  color: var(--text2);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  padding: 1.1rem 1.8rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: var(--text);
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .95rem;
  transition: all .4s;
}

.newsletter-input::placeholder { color: var(--text3); }

.newsletter-input:focus {
  border-color: var(--emerald-glow);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 20px rgba(var(--glow-rgb),.1);
}

.newsletter-btn {
  padding: 1.1rem 2.5rem;
  background: var(--emerald);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(var(--glow-rgb),.2);
}

.newsletter-btn:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(var(--glow-rgb),.3);
}

/* CART */
.cart-overlay {
  position: fixed;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: rgba(10,10,10,.97);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-right: 1px solid rgba(var(--glow-rgb),.1);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 60px rgba(0,0,0,.5);
}

.cart-drawer.active { transform: translateX(0); }

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .15em;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  padding: .5rem;
  transition: color .3s;
}

.cart-close:hover { color: var(--emerald-glow); }
.cart-close svg { width: 22px; height: 22px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text3);
}

.cart-empty svg { width: 52px; height: 52px; margin-bottom: 1.5rem; opacity: .3; }
.cart-empty p { font-size: .95rem; margin-bottom: 1.5rem; }

.cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-details { flex: 1; }

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: .3rem;
}

.cart-item-price { font-size: .9rem; color: var(--text2); }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  padding: .3rem;
  align-self: flex-start;
  transition: color .3s;
}

.cart-item-remove:hover { color: #c44; }

.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.3);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  font-size: .95rem;
}

.cart-subtotal span:last-child { font-weight: 600; color: var(--emerald-glow); }

.cart-checkout {
  width: 100%;
  padding: 1.1rem;
  background: var(--emerald);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s;
  box-shadow: 0 0 20px rgba(var(--glow-rgb),.2);
}

.cart-checkout:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(var(--glow-rgb),.3);
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, rgba(13,74,58,.18), rgba(6,8,10,.6));
  border-top: 1px solid rgba(var(--glow-rgb),.12);
  padding: 5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--glow-rgb),.4), transparent);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-col .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .45em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--silver) 50%, var(--emerald-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-col p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.9;
  font-weight: 300;
  max-width: 320px;
}
.footer-newsletter { margin-top: 1.8rem; display: flex; gap: .6rem; max-width: 340px; }
.footer-newsletter input {
  flex: 1;
  padding: .85rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: var(--text);
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .85rem;
  transition: all .3s;
}
.footer-newsletter input:focus { border-color: var(--emerald-glow); }
.footer-newsletter button {
  padding: .85rem 1.5rem;
  background: var(--emerald);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s;
}
.footer-newsletter button:hover { background: var(--emerald-light); }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  color: var(--text);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .9rem; }
.footer-col a {
  color: var(--text2);
  font-size: .9rem;
  font-weight: 300;
  transition: color .3s, padding .3s;
}
.footer-col a:hover { color: var(--emerald-glow); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text2);
}
.footer-copy { font-size: .75rem; color: var(--text3); letter-spacing: .1em; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: all .3s;
}
.footer-social a:hover { color: var(--emerald-glow); border-color: rgba(var(--glow-rgb),.4); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.98);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .25em;
  transition: color .4s;
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--emerald-glow);
  transition: width .4s;
  box-shadow: 0 0 10px rgba(var(--glow-rgb),.3);
}

.mobile-menu a:hover { color: var(--emerald-glow); }
.mobile-menu a:hover::after { width: 100%; }

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* LANGUAGE PILL */
.lang-pill { display:flex; align-items:center; gap:2px; border:1px solid rgba(255,255,255,.16); border-radius:100px; padding:3px; background:rgba(10,20,17,.4); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); }
.lang-opt { font-family:'Inter',sans-serif; font-size:.68rem; font-weight:600; letter-spacing:.08em; color:var(--text2); background:transparent; border:none; cursor:pointer; padding:.55rem .85rem; border-radius:100px; transition:all .3s; line-height:1; min-height:40px; display:inline-flex; align-items:center; justify-content:center; }
.lang-opt.active { color:#04120d; background:linear-gradient(135deg,#2dd4a0,#1a7a5e); box-shadow:0 0 14px rgba(var(--glow-rgb),.35); }
.lang-opt:hover:not(.active) { color:#fff; }

/* TRY-ON WRIST */
.viewer-actions { display:flex; flex-direction:column; gap:.7rem; }
.viewer-try { display:flex; align-items:center; justify-content:center; gap:.5rem; width:100%; padding:.85rem 1rem; font-family:'Inter',sans-serif; font-size:.72rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:#eafff6; background:transparent; border:1px solid rgba(var(--glow-rgb),.5); border-radius:2px; cursor:pointer; transition:all .35s; }
.viewer-try:hover { background:rgba(var(--glow-rgb),.12); border-color:#2dd4a0; box-shadow:0 0 20px rgba(var(--glow-rgb),.22); }
.viewer-try svg { width:17px; height:17px; }
.tryon-overlay { position:fixed; inset:0; top:0; right:0; bottom:0; left:0; z-index:4000; display:flex; align-items:center; justify-content:center; padding:2rem; background:rgba(4,10,8,.86); -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px); opacity:0; pointer-events:none; transition:opacity .4s; }
.tryon-overlay.active { opacity:1; pointer-events:auto; }
.tryon-modal { position:relative; width:min(1040px,96vw); height:min(660px,90vh); display:grid; grid-template-columns:1fr 300px; background:linear-gradient(160deg,#0d1a15,#081310); border:1px solid rgba(255,255,255,.1); border-radius:8px; overflow:hidden; box-shadow:0 40px 120px rgba(0,0,0,.6); }
.tryon-stage { position:relative; overflow:hidden; background:#05100c radial-gradient(ellipse at 50% 40%, rgba(26,122,94,.18), transparent 70%); display:flex; align-items:center; justify-content:center; }
.tryon-stage video, .tryon-stage #tryonPhoto { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:none; }
.tryon-placeholder { position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:1rem; color:var(--text2); text-align:center; padding:2rem; max-width:340px; }
.tryon-placeholder svg { width:52px; height:52px; opacity:.55; }
.tryon-stage.has-media .tryon-placeholder { display:none; }
.tryon-watch { position:absolute; top:50%; left:50%; width:300px; height:auto; z-index:3; cursor:grab; touch-action:none; transform:translate(-50%,-50%); filter:drop-shadow(0 24px 40px rgba(0,0,0,.55)); -webkit-user-select:none; user-select:none; }
.tryon-watch:active { cursor:grabbing; }
.tryon-controls { padding:2rem 1.6rem; display:flex; flex-direction:column; gap:1.1rem; border-inline-start:1px solid rgba(255,255,255,.08); overflow:auto; }
.tryon-title { font-family:'Cormorant Garamond',serif; font-size:1.7rem; color:#fff; }
.tryon-sub { font-size:.78rem; color:var(--text2); line-height:1.6; margin-top:-.6rem; }
.tryon-btns { display:flex; flex-direction:column; gap:.6rem; }
.tryon-btn { display:flex; align-items:center; justify-content:center; gap:.5rem; padding:.8rem; font-family:'Inter',sans-serif; font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:#fff; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:3px; cursor:pointer; transition:all .3s; }
.tryon-btn:hover { background:rgba(var(--glow-rgb),.14); border-color:rgba(var(--glow-rgb),.5); }
.tryon-btn svg { width:16px; height:16px; }
.tryon-slider-row { display:flex; align-items:center; gap:.8rem; font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--text2); }
.tryon-slider-row span { width:56px; flex-shrink:0; }
.tryon-slider-row input[type=range] { flex:1; accent-color:#2dd4a0; }
.tryon-hint { font-size:.72rem; color:var(--text2); line-height:1.6; margin-top:auto; }
@media(max-width:820px){ .tryon-modal { grid-template-columns:1fr; height:min(90vh,720px); } .tryon-controls { border-inline-start:none; border-top:1px solid rgba(255,255,255,.08); } }

.footer-legal-id {
  font-size: .68rem; line-height: 1.7; color: var(--text3);
  max-width: 900px; margin: 0 auto .8rem; text-align: center;
}

/* SECTION LINE */
.section-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald-glow), transparent);
  margin: 0 auto 2rem;
  box-shadow: 0 0 10px rgba(var(--glow-rgb),.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 1rem 1rem; }
  .nav-left, .nav-right { gap: .5rem; }
  /* Absolute centering let the logo slide UNDER the lang pill on narrow phones.
     As a normal flex item it centres in the space that's actually left, so the
     three clusters can never overlap. */
  .logo { position: static; transform: none; margin: 0 .5rem; font-size: 1.2rem; letter-spacing: .16em; white-space: nowrap; }
  .lang-pill { padding: 2px; gap: 1px; }
  .lang-opt { padding: .4rem .55rem; font-size: .62rem; letter-spacing: .04em; }
  .hero-watch-wrap { width: min(300px, 34vh); height: min(300px, 34vh); }
  .hero-title { font-size: 2.5rem; }
  .service-section { padding: 4rem 1rem 0; }
  .service-grid { grid-template-columns: 1fr; gap: 1rem; }
  .products-section { padding: 6rem 1rem; }
  .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cart-drawer { max-width: 100%; }
  .macro-strip { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .quickview-modal { grid-template-columns: 1fr; }
  .quickview-image { border-left: none; border-bottom: 1px solid var(--border); padding: 2rem; }
  .quickview-details { padding: 2rem; }
  .craft-stats { gap: 1.5rem; flex-wrap: wrap; }
  .viewer-modal { grid-template-columns: 1fr; max-height: 94vh; overflow-y: auto; }
  .viewer-3d { min-height: 320px; border-left: none; border-bottom: 1px solid var(--border); }
  .viewer-details { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 360px) {
  .logo { font-size: 1.3rem; letter-spacing: .16em; }
  .nav-left, .nav-right { gap: .5rem; }
  .lang-opt { padding: .38rem .45rem; font-size: .6rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Premium Hebrew + refined typography */
.section-title, .faq-q, .service-title, .footer-col h4, .cart-title, .footer-brand-col .footer-brand { font-family: 'Cormorant Garamond', 'Frank Ruhl Libre', serif; }
.section-desc, .section-label, .faq-a-inner, .service-desc, .footer-col a, .footer-brand-col p, .footer-newsletter input, .footer-newsletter button, .swatch-label, .viewer-hint, .viewer-desc { font-family: 'Inter', 'Assistant', sans-serif; }

/* ============ HERITAGE + TIMELINE ============ */
/* ============ CUSTOMER GALLERY ============ */
.gallery-section { position: relative; padding: 8rem 2rem 9rem; overflow: hidden; }
.gallery-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(26,122,94,.14), transparent 60%); }
.gallery-container { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }
.gallery-grid {
  margin-top: 4.5rem; display: grid; gap: 1.1rem;
  grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 18px;
  background: linear-gradient(150deg, rgba(26,122,94,.14), rgba(13,74,58,.28));
  border: 1px solid var(--border); cursor: default;
  transition: transform .55s var(--ease), border-color .4s, box-shadow .4s;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.05) 45%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.05) 55%, transparent 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}
.gallery-item img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover { transform: translateY(-5px) scale(1.012); border-color: rgba(var(--glow-rgb),.35); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(var(--glow-rgb),.1); }
.gallery-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; padding: 1rem; text-align: center; }
.gallery-ph svg { width: 34px; height: 34px; stroke: var(--emerald-glow); fill: none; stroke-width: 1.3; opacity: .8; }
.gallery-ph span { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--text3); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.4rem 1.2rem .95rem;
  background: linear-gradient(0deg, rgba(4,8,7,.9), transparent); z-index: 2;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }
.gallery-cap .gc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text); }
.gallery-cap .gc-meta { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald-glow); margin-top: .15rem; }
.gallery-tag {
  margin: 3.5rem auto 0; text-align: center; font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-style: italic; color: var(--text2);
}
.gallery-tag b { color: var(--emerald-glow); font-style: normal; font-weight: 500; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .gallery-section { padding: 6rem 1.4rem; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}

/* ============================================================
   HERO CONVERSION (P1-37) — value line + solid-emerald primary CTA
   index.html adds .hero-subvalue under the H1 and a .cta-primary.
   ============================================================ */
.hero-subvalue {
  font-size: .98rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text2);
  max-width: 560px;
  margin: -.4rem auto min(2.2rem, 2.4vh);
}
.hero-subvalue strong,
.hero-subvalue b { color: var(--text); font-weight: 500; }

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.1rem 3rem;
  background: var(--emerald);
  border: 1px solid rgba(var(--glow-rgb),.5);
  border-radius: 100px;
  color: #fff;
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .5s var(--ease);
  box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 28px rgba(var(--glow-rgb),.28);
}
.cta-primary:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-glow);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,0,0,.5), 0 0 44px rgba(var(--glow-rgb),.42);
}
.cta-primary svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.cta-primary:hover svg { transform: translateX(5px); }

/* ============================================================
   CART QUANTITY STEPPER (P1-33) — −/qty/+ controls
   ui.js renders .cart-item-qty with two .qty-btn + the qty number.
   ============================================================ */
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .6rem;
  padding: .2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.cart-item-qty span {
  min-width: 1.6rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.qty-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text2);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, color .25s, transform .15s;
  -webkit-user-select: none;
  user-select: none;
}
.qty-btn:hover { background: rgba(var(--glow-rgb),.12); color: var(--emerald-glow); }
.qty-btn:active { transform: scale(.92); }

/* ============================================================
   REDUCED MOTION (P1-19) — pause decorative looping keyframes.
   (JS half zeroes the 3D card/hero yaw/pitch/bob in app.module.js.)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .hero-watch-glow,
  .scroll-indicator,
  .viewer-hint,
  .preloader-line::after,
  .product-card::after,
  .product-image-wrap::before,
  .quickview-image::after,
  .gallery-item::before {
    animation: none !important;
  }
}

/* ============================================================
   RTL OVERRIDES (P2-12) — actually mirror the layout in Hebrew.
   Scoped to [dir="rtl"], so the default LTR/English layout is
   left completely untouched.
   ============================================================ */
/* Absolute-positioned pills on product cards → mirror to the opposite corner */
[dir="rtl"] .product-badge { left: auto; right: 1.2rem; }
[dir="rtl"] .view-360-btn { right: auto; left: 1.2rem; }
/* Ambience switcher → bottom-left */

@media (min-width: 769px) {
}
@media (max-width: 768px) {
}