/* ============================================================
   HappySack — shared stylesheet
   Used by index.html and all /products/<slug>/index.html pages
   ============================================================ */

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

:root {
  /* ==== VINTAGE SURFER / SKATER PALETTE ====
     sun-faded warm tones, paper-grain feel, hand-printed not digital */
  --cream:      #FAF1DC;  /* warmer aged paper */
  --sand:       #E8D4A8;  /* warm beige (was peach) */
  --sun-coral:  #D9543C;  /* sun-faded burnt sienna (was hot coral) */
  --sun-coral-soft: #E6826B;
  --sage:       #B5CDA0;  /* washed sage (was mint) */
  --sage-dark:  #87A872;
  --dusty-rose: #D4A8A8;  /* warm dusty rose (was lavender) */
  --dusty-teal: #7CA8AA;  /* sun-faded teal (was sky) */
  --mustard:    #E5BC3A;  /* aged mustard (was hot yellow) */
  --tobacco:    #5C3F2A;  /* warm dark accent */
  --navy:       #2A2435;  /* slightly warmer dark */
  --text:       #2E2520;  /* warm dark text */
  --text-mid:   #6B544A;
  --text-soft:  #9B847A;
  --white:      #FFFFFF;

  /* Backwards-compatible aliases — old names still work */
  --peach:      var(--sand);
  --coral:      var(--sun-coral);
  --coral-soft: var(--sun-coral-soft);
  --mint:       var(--sage);
  --mint-dark:  var(--sage-dark);
  --lavender:   var(--dusty-rose);
  --sky:        var(--dusty-teal);
  --yellow:     var(--mustard);

  --quad-sky:    linear-gradient(180deg, #F0DBA8 0%, #E8C898 50%, #B5CDA0 100%);
  --festival-sky:linear-gradient(180deg, #F2D29A 0%, #E6826B 50%, #D4A8A8 100%);
  --beach-sky:   linear-gradient(180deg, #E8C898 0%, #E5BC3A 30%, #7CA8AA 100%);
  --park-sky:    linear-gradient(180deg, #D4A8A8 0%, #E6826B 50%, #E5BC3A 100%);

  --font-display: 'Righteous', cursive;
  --font-vintage: 'Alfa Slab One', 'Righteous', serif;  /* chunky vintage badge */
  --font-body:    'Nunito', sans-serif;
  --font-mono:    'VT323', monospace;

  --shadow-sm: 4px 4px 0px var(--navy);
  --shadow-md: 6px 6px 0px var(--navy);
  --shadow-lg: 8px 8px 0px var(--navy);
  --radius:    16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Paper grain texture overlay — gives the whole site a sun-faded, hand-printed feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    /* dot grid (kept, but warmer + smaller) */
    radial-gradient(circle, rgba(92,63,42,0.08) 1px, transparent 1px),
    /* grain noise via SVG turbulence */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.25  0 0 0 0 0.18  0 0 0 0 0.12  0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.65'/></svg>");
  background-size: 28px 28px, 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

/* ---- NAV ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--navy);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 116px;  /* big confident nav */
  box-shadow: 0 4px 0 var(--sun-coral-soft);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--coral);
  text-decoration: none;
  text-shadow: 3px 3px 0 var(--navy);
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo .smile { font-size: 1.4rem; text-shadow: none; }
.nav-logo:hover { transform: rotate(-2deg) scale(1.05); }
.nav-logo-img {
  height: 100px;  /* big and confident — the brand mark earns the space */
  width: auto;
  display: block;
  mix-blend-mode: multiply; /* drops the white background against cream nav */
}
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--peach); }
.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy) !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-md) !important; }

/* Cart pill in nav (Snipcart) */
.nav-cart {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--navy) !important;
  border: 2px solid var(--navy) !important;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body); font-weight: 800;
  cursor: pointer;
  padding: 6px 14px !important;
  font-size: 0.88rem !important;
}
.nav-cart:hover { background: var(--yellow) !important; transform: translate(-2px,-2px); box-shadow: var(--shadow-md) !important; }
.nav-cart .cart-icon { font-size: 1rem; }
.nav-cart .snipcart-items-count { font-family: var(--font-mono); font-size: 1rem; }

/* ---- HERO ---- */
.hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - 116px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  display: grid;
  gap: 32px;
  align-content: center;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { padding: 24px 16px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}
.hl-coral { color: var(--coral); display: block; }
.hl-mint  { color: var(--mint-dark); display: block; }

.hero-sub { font-size: 1.1rem; color: var(--text-mid); max-width: 440px; margin-bottom: 32px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--coral); color: var(--white);
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 14px 32px; border: 2px solid var(--navy); border-radius: 50px;
  text-decoration: none; box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s; display: inline-block; cursor: pointer;
}
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 14px 28px; border: 2px solid var(--navy); border-radius: 50px;
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s; display: inline-block; cursor: pointer;
}
.btn-secondary:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-md); }

.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.stat-pill {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: var(--radius-sm); padding: 10px 16px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--coral); line-height: 1; }
.stat-label { font-size: 0.7rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- HERO VISUAL — 16:9 video hero with animated-scene fallback ----
   Toggle the visual: set data-mode="video" on .hero-visual to show the video,
   data-mode="scene" to keep the illustrated animated scenes.            */
.hero-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 540px;
  border: 3px solid var(--navy);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--navy);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mode toggles — set data-mode on .hero-visual to switch what's shown */
.hero-visual[data-mode="video"] .hero-logo-stage,
.hero-visual[data-mode="video"] .scene-stage { display: none; }
.hero-visual[data-mode="logo"]  .hero-video,
.hero-visual[data-mode="logo"]  .scene-stage { display: none; }
.hero-visual[data-mode="scene"] .hero-video,
.hero-visual[data-mode="scene"] .hero-logo-stage { display: none; }

/* HERO LOGO STAGE — vintage poster treatment with sunburst */
.hero-logo-stage {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.hero-logo-stage::before {
  /* sunburst rays radiating from center */
  content: '';
  position: absolute; inset: -50%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--mustard) 0deg 8deg,
    transparent 8deg 18deg
  );
  opacity: 0.28;
  animation: sunSpin 90s linear infinite;
  z-index: 0;
}
.hero-logo-stage::after {
  /* warm sun glow behind logo */
  content: '';
  position: absolute;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sand) 0%, var(--cream) 60%, transparent 100%);
  z-index: 0;
}
@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-stage-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 90%;
}
.hero-stage-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  mix-blend-mode: multiply;
}
.hero-stage-strapline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--font-vintage);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--navy);
}
.hero-stage-strapline .seal-dot { color: var(--sun-coral); font-size: 0.55rem; }

@media (max-width: 1024px) {
  .hero-stage-logo { max-width: 280px; }
  .hero-stage-strapline { font-size: 0.82rem; padding: 6px 14px; }
}

.scene-stage { position: absolute; inset: 0; width: 100%; height: 100%; }
.scene { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; animation: sceneRotate 24s ease-in-out infinite; }
.scene:nth-child(1) { animation-delay: 0s; }
.scene:nth-child(2) { animation-delay: 6s; }
.scene:nth-child(3) { animation-delay: 12s; }
.scene:nth-child(4) { animation-delay: 18s; }
@keyframes sceneRotate { 0%{opacity:0;} 4%{opacity:1;} 25%{opacity:1;} 29%{opacity:0;} 100%{opacity:0;} }

.scene-quad     { background: var(--quad-sky); }
.scene-festival { background: var(--festival-sky); }
.scene-beach    { background: var(--beach-sky); }
.scene-park     { background: var(--park-sky); }

.sun { position: absolute; width: 80px; height: 80px; border-radius: 50%; background: var(--yellow); border: 3px solid var(--navy); top: 12%; right: 14%; box-shadow: 0 0 40px rgba(255,230,109,0.6); }
.scene-park .sun { background: var(--coral-soft); }
.scene-festival .sun { top: 16%; right: 18%; }

.ground { position: absolute; bottom: 0; left: 0; right: 0; height: 35%; border-top: 3px solid var(--navy); }
.scene-quad     .ground { background: linear-gradient(180deg, #7DD4B4, #5BB890); }
.scene-festival .ground { background: linear-gradient(180deg, #B89968, #8B7350); }
.scene-beach    .ground { background: linear-gradient(180deg, #FFE3B8, #E8C99A); height: 30%; }
.scene-beach::after { content: ''; position: absolute; bottom: 30%; left: 0; right: 0; height: 8%; background: linear-gradient(180deg, #A8D8EA, #7DB8D4); border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.scene-park .ground { background: linear-gradient(180deg, #6BA88A, #4A8868); }

.tree { position: absolute; bottom: 30%; width: 60px; }
.tree-trunk { width: 14px; height: 50px; background: #8B6F47; border: 2px solid var(--navy); margin: 0 auto; border-radius: 4px 4px 0 0; }
.tree-leaves { width: 60px; height: 60px; background: #5BB890; border: 3px solid var(--navy); border-radius: 50%; margin: 0 auto -10px; position: relative; z-index: 2; }
.scene-quad .tree:nth-of-type(1) { left: 6%; }
.scene-quad .tree:nth-of-type(2) { right: 8%; bottom: 28%; transform: scale(0.85); }

.stage { position: absolute; bottom: 35%; left: 50%; transform: translateX(-50%); width: 70%; height: 80px; background: var(--navy); border: 3px solid var(--navy); border-radius: 8px 8px 0 0; }
.stage-light { position: absolute; width: 16px; height: 16px; background: var(--yellow); border: 2px solid var(--cream); border-radius: 50%; top: -10px; animation: stageFlicker 1.5s ease-in-out infinite; }
.stage-light:nth-child(1) { left: 20%; }
.stage-light:nth-child(2) { left: 40%; animation-delay: 0.3s; }
.stage-light:nth-child(3) { left: 60%; animation-delay: 0.6s; }
.stage-light:nth-child(4) { left: 80%; animation-delay: 0.9s; }
@keyframes stageFlicker { 0%,100% { background: var(--yellow); } 50% { background: var(--coral); } }
.bunting { position: absolute; top: 12%; left: 8%; right: 8%; height: 30px; display: flex; justify-content: space-around; }
.bunting-flag { width: 20px; height: 24px; clip-path: polygon(0 0, 100% 0, 50% 100%); }
.bunting-flag:nth-child(odd) { background: var(--coral); }
.bunting-flag:nth-child(even) { background: var(--mint); }

.palm-tree { position: absolute; bottom: 30%; width: 70px; }
.scene-beach .palm-tree { left: 8%; }
.palm-trunk { width: 10px; height: 90px; background: #8B6F47; border: 2px solid var(--navy); margin: 0 auto; border-radius: 4px; transform: rotate(-5deg); }
.palm-leaf { position: absolute; width: 50px; height: 18px; background: #5BB890; border: 2px solid var(--navy); border-radius: 50%; top: -6px; }
.palm-leaf:nth-child(1) { left: -5px; transform: rotate(-30deg); }
.palm-leaf:nth-child(2) { right: -5px; transform: rotate(30deg); }
.palm-leaf:nth-child(3) { left: 10px; transform: rotate(-60deg); }
.palm-leaf:nth-child(4) { right: 10px; transform: rotate(60deg); }

.string-lights { position: absolute; top: 8%; left: 0; right: 0; height: 100px; pointer-events: none; }
.light-bulb { position: absolute; width: 12px; height: 12px; background: var(--yellow); border: 2px solid var(--navy); border-radius: 50%; box-shadow: 0 0 12px var(--yellow); animation: lightPulse 2s ease-in-out infinite; }
.light-bulb:nth-child(1) { left: 10%; top: 30px; animation-delay: 0s; }
.light-bulb:nth-child(2) { left: 25%; top: 50px; animation-delay: 0.3s; }
.light-bulb:nth-child(3) { left: 40%; top: 35px; animation-delay: 0.6s; background: var(--coral); }
.light-bulb:nth-child(4) { left: 55%; top: 55px; animation-delay: 0.9s; }
.light-bulb:nth-child(5) { left: 70%; top: 40px; animation-delay: 1.2s; background: var(--coral); }
.light-bulb:nth-child(6) { left: 85%; top: 60px; animation-delay: 1.5s; }
@keyframes lightPulse { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
.picnic-blanket { position: absolute; bottom: 30%; left: 50%; transform: translateX(-50%) perspective(400px) rotateX(60deg); width: 140px; height: 80px; background: repeating-linear-gradient(0deg, var(--coral) 0 12px, var(--white) 12px 24px), repeating-linear-gradient(90deg, var(--coral) 0 12px, var(--white) 12px 24px); border: 2px solid var(--navy); }

.character { position: absolute; width: 80px; bottom: 20%; }
.char-head { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--navy); margin: 0 auto; }
.char-body { width: 32px; height: 38px; border: 2px solid var(--navy); border-radius: 6px 6px 14px 14px; margin: -2px auto 0; position: relative; }
.char-arm { position: absolute; width: 6px; height: 26px; border: 2px solid var(--navy); border-radius: 4px; top: 4px; }
.char-arm.left  { left: -6px; transform: rotate(-15deg); }
.char-arm.right { right: -6px; transform: rotate(15deg); }
.char-legs { display: flex; justify-content: center; gap: 4px; margin-top: -2px; }
.char-leg { width: 6px; height: 22px; border: 2px solid var(--navy); border-radius: 3px; }
.char-1 .char-head { background: #F4C29B; } .char-1 .char-body { background: var(--coral); } .char-1 .char-arm { background: #F4C29B; } .char-1 .char-leg { background: var(--navy); }
.char-2 .char-head { background: #C9967B; } .char-2 .char-body { background: var(--mint); } .char-2 .char-arm { background: #C9967B; } .char-2 .char-leg { background: #6B4F36; }
.char-3 .char-head { background: #E5B98D; } .char-3 .char-body { background: var(--lavender); } .char-3 .char-arm { background: #E5B98D; } .char-3 .char-leg { background: var(--navy); }
.char-4 .char-head { background: #A37753; } .char-4 .char-body { background: var(--sky); } .char-4 .char-arm { background: #A37753; } .char-4 .char-leg { background: #5C3F2A; }
.scene-quad .char-1 { left: 18%; }
.scene-quad .char-2 { right: 18%; transform: scaleX(-1); }
.scene-festival .char-1 { left: 14%; bottom: 22%; }
.scene-festival .char-2 { left: 38%; bottom: 22%; transform: scaleX(-1); }
.scene-festival .char-3 { right: 14%; bottom: 22%; transform: scaleX(-1); }
.scene-beach .char-1 { left: 25%; }
.scene-beach .char-2 { right: 25%; transform: scaleX(-1); }
.scene-park .char-1 { left: 18%; bottom: 18%; }
.scene-park .char-2 { left: 42%; bottom: 18%; }
.scene-park .char-3 { right: 18%; bottom: 18%; transform: scaleX(-1); }
.character { animation: charBob 1.2s ease-in-out infinite; }
.character:nth-of-type(2) { animation-delay: 0.4s; }
.character:nth-of-type(3) { animation-delay: 0.8s; }
@keyframes charBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.scene-quad .char-2, .scene-festival .char-2, .scene-festival .char-3, .scene-beach .char-2, .scene-park .char-3 { animation: charBobMirror 1.2s ease-in-out infinite; }
@keyframes charBobMirror { 0%,100% { transform: scaleX(-1) translateY(0); } 50% { transform: scaleX(-1) translateY(-4px); } }

.sack-flying { position: absolute; width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--navy); box-shadow: 2px 2px 0 var(--navy); z-index: 10; }
.scene-quad .sack-flying { background: conic-gradient(var(--coral) 0 120deg, var(--peach) 120deg 240deg, var(--yellow) 240deg 360deg); animation: sackArcQuad 2.4s ease-in-out infinite; bottom: 35%; left: 50%; }
@keyframes sackArcQuad { 0% { left: 22%; bottom: 35%; transform: rotate(0deg); } 50% { left: 50%; bottom: 60%; transform: rotate(180deg); } 100% { left: 78%; bottom: 35%; transform: rotate(360deg); } }
.scene-festival .sack-flying { background: conic-gradient(var(--mint) 0 120deg, var(--white) 120deg 240deg, var(--mint-dark) 240deg 360deg); animation: sackArcFestival 2.6s ease-in-out infinite; }
@keyframes sackArcFestival { 0% { left: 18%; bottom: 38%; transform: rotate(0deg); } 33% { left: 42%; bottom: 55%; transform: rotate(120deg); } 66% { left: 58%; bottom: 50%; transform: rotate(240deg); } 100% { left: 82%; bottom: 38%; transform: rotate(360deg); } }
.scene-beach .sack-flying { background: conic-gradient(var(--lavender) 0 120deg, var(--navy) 120deg 240deg, var(--sky) 240deg 360deg); animation: sackArcBeach 2.5s ease-in-out infinite; }
@keyframes sackArcBeach { 0% { left: 28%; bottom: 38%; transform: rotate(0deg); } 50% { left: 50%; bottom: 65%; transform: rotate(180deg); } 100% { left: 72%; bottom: 38%; transform: rotate(360deg); } }
.scene-park .sack-flying { background: conic-gradient(var(--coral) 0 120deg, var(--peach) 120deg 240deg, var(--yellow) 240deg 360deg); animation: sackArcPark 2.4s ease-in-out infinite; }
@keyframes sackArcPark { 0% { left: 22%; bottom: 32%; transform: rotate(0deg); } 33% { left: 45%; bottom: 50%; transform: rotate(120deg); } 66% { left: 60%; bottom: 48%; transform: rotate(240deg); } 100% { left: 78%; bottom: 32%; transform: rotate(360deg); } }

.scene-label { position: absolute; bottom: 20px; left: 20px; background: rgba(255,248,238,0.95); border: 2px solid var(--navy); border-radius: 50px; padding: 5px 14px; font-family: var(--font-mono); font-size: 0.95rem; color: var(--navy); box-shadow: 2px 2px 0 var(--navy); z-index: 20; }
.cloud { position: absolute; width: 60px; height: 24px; background: var(--white); border: 2px solid var(--navy); border-radius: 50px; top: 18%; animation: cloudDrift 18s linear infinite; }
.cloud:nth-of-type(2) { top: 28%; transform: scale(0.7); animation-delay: -9s; }
@keyframes cloudDrift { from { left: -80px; } to { left: 110%; } }
.scene-festival .cloud, .scene-park .cloud { display: none; }

/* ---- TICKER ---- */
.ticker { background: var(--navy); border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 1; }
.ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-item { font-family: var(--font-mono); font-size: 1.2rem; color: var(--yellow); padding: 0 24px; }
.ticker-sep { color: var(--coral); }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ---- SECTIONS ---- */
.section { position: relative; z-index: 1; padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--lavender); border: 2px solid var(--navy); border-radius: 50px; padding: 5px 16px; font-family: var(--font-mono); font-size: 1rem; color: var(--navy); margin-bottom: 20px; box-shadow: 3px 3px 0 var(--navy); }
.section-headline { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem); color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.section-headline span { color: var(--coral); }
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 480px; line-height: 1.7; }

/* ---- COLLECTION ---- */
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.product-card {
  background: var(--white); border: 2px solid var(--navy);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden; display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-md); }
.product-image { aspect-ratio: 1; position: relative; border-bottom: 2px solid var(--navy); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.product-card:hover .product-image img { transform: scale(1.05) rotate(2deg); }
.product-card:nth-child(1) .product-image { background: var(--peach); }
.product-card:nth-child(2) .product-image { background: var(--sky); }
.product-card:nth-child(3) .product-image { background: var(--yellow); }
.product-card:nth-child(4) .product-image { background: var(--lavender); }

.product-card.coming-soon .product-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(45,43,85,0.55);
  backdrop-filter: blur(2px);
  z-index: 2;
}
.product-card.coming-soon .product-image img { filter: grayscale(40%); }
.coming-soon-overlay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  z-index: 3;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.product-info { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 2px 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 10px;
  align-self: flex-start;
}
.product-tag.tag-soon { background: var(--lavender); }
.product-tag.tag-licensed { background: var(--mint); }
.product-tag.tag-bundle { background: var(--coral); color: var(--white); }
.product-tag.tag-preorder { background: var(--coral); color: var(--white); }
.product-tag.tag-reserve { background: var(--lavender); color: var(--navy); }

/* Ship-date pill + FTC disclosure */
.shipdate-pill {
  display: inline-block;
  background: var(--mint);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 2px 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--navy);
  margin-left: 8px;
}
.ftc-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 8px;
  line-height: 1.4;
}
.detail-info .ftc-note { margin-top: 14px; max-width: 540px; }
.product-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 6px; }
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--coral); }
.product-image-link { display: block; cursor: pointer; }
.product-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px dashed rgba(45,43,85,0.2); gap: 8px; }
.product-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--coral); }
.product-price-soon { font-family: var(--font-mono); font-size: 0.95rem; color: var(--text-soft); }
.product-buy {
  background: var(--navy); color: var(--yellow);
  font-family: var(--font-body); font-weight: 800; font-size: 0.8rem;
  padding: 7px 16px; border: 2px solid var(--navy); border-radius: 50px;
  text-decoration: none; transition: transform 0.15s, background 0.2s;
  cursor: pointer;
}
.product-buy:hover { transform: scale(1.05); background: var(--coral); border-color: var(--coral); }
.product-notify {
  background: var(--white); color: var(--navy);
  font-family: var(--font-body); font-weight: 800; font-size: 0.78rem;
  padding: 7px 14px; border: 2px solid var(--navy); border-radius: 50px;
  transition: transform 0.15s, background 0.2s; cursor: pointer;
}
.product-notify:hover { background: var(--peach); transform: scale(1.05); }

/* ============================================================
   DROP 01 BRAND SEAL — vintage badge anchoring the page
   ============================================================ */
.brand-seal-section {
  position: relative; z-index: 1;
  padding: 80px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.brand-seal {
  display: inline-block;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 36px 56px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 640px;
}
/* corner stars on the seal — like a vintage product label */
.brand-seal::before,
.brand-seal::after {
  content: '★';
  position: absolute;
  top: 12px;
  font-family: var(--font-vintage);
  font-size: 1.4rem;
  color: var(--sun-coral);
}
.brand-seal::before { left: 18px; }
.brand-seal::after  { right: 18px; }
.seal-eyebrow {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--sun-coral);
  margin-bottom: 12px;
}
.brand-seal-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
  mix-blend-mode: multiply;
}
.seal-strapline {
  font-family: var(--font-vintage);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-transform: uppercase;
  border-top: 2px dashed rgba(42,36,53,0.25);
  padding-top: 14px;
  margin-top: 6px;
}
.seal-dot { color: var(--sun-coral); font-size: 0.5rem; }

/* FOUNDER NOTE — personal story between brand seal and bundle */
.founder-section {
  position: relative; z-index: 1;
  padding: 30px 48px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.founder-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 44px 48px 40px;
  text-align: center;
  position: relative;
}
.founder-eyebrow {
  display: inline-block;
  background: var(--mustard);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 5px 16px;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 var(--navy);
}
.founder-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 20px;
}
.founder-headline span { color: var(--sun-coral); }
.founder-text {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.founder-signoff {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .founder-section { padding: 24px 20px 40px; }
  .founder-inner { padding: 32px 24px 28px; }
}

/* CUSTOM ORDERS CTA — sits below bundle, surfaces /custom/ on home page */
.custom-cta-section {
  position: relative; z-index: 1;
  padding: 36px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.custom-cta-banner {
  background: var(--dusty-teal);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.custom-cta-banner:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--navy); }
.custom-cta-banner-text { font-family: var(--font-body); }
.custom-cta-eyebrow-pill {
  display: inline-block;
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 3px 12px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.custom-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.custom-cta-sub-line {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.custom-cta-action {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-vintage);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--cream);
}
.custom-cta-banner:hover .custom-cta-action { background: var(--sun-coral); border-color: var(--sun-coral); }

@media (max-width: 720px) {
  .custom-cta-section { padding: 28px 32px 0; }
  .custom-cta-banner { grid-template-columns: 1fr; text-align: center; gap: 18px; padding: 24px 22px; }
  .custom-cta-action { justify-self: center; }
}

/* Tape sticker accent — used on the bundle promo for that scrapbook feel */
.tape {
  position: absolute;
  width: 110px; height: 22px;
  background: rgba(229,188,58,0.72);  /* mustard, semi-transparent */
  border: 1px dashed rgba(92,63,42,0.35);
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  z-index: 5;
}
.tape::before, .tape::after {
  content: '';
  position: absolute; top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(92,63,42,0.25);
}
.tape::before { left: 14px; }
.tape::after  { right: 14px; }

/* ---- BUNDLE PROMO ---- */
.bundle-section { position: relative; z-index: 1; padding: 0 48px; max-width: 1200px; margin: 0 auto; }
.bundle-card {
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 40px;
  position: relative;  /* anchor for tape sticker */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.bundle-visuals { display: flex; align-items: center; }
.bundle-mini-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  overflow: hidden;
}
.bundle-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.bundle-mini-img:nth-child(2) { margin-left: -22px; }
.bundle-text { font-family: var(--font-body); }
.bundle-eyebrow { display: inline-block; background: var(--coral); color: var(--white); border: 2px solid var(--navy); border-radius: 50px; padding: 3px 12px; font-family: var(--font-mono); font-size: 0.95rem; margin-bottom: 10px; }
.bundle-title { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); line-height: 1.1; margin-bottom: 4px; }
.bundle-savings { font-family: var(--font-body); font-weight: 700; color: var(--text); font-size: 0.95rem; }
.bundle-savings .strike { text-decoration: line-through; color: var(--text-soft); margin-right: 8px; }
.bundle-cta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.bundle-price { font-family: var(--font-display); font-size: 2rem; color: var(--navy); line-height: 1; }

/* ---- WHY ---- */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.why-card { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.why-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-md); }
.why-card:nth-child(1){background:var(--peach);}
.why-card:nth-child(2){background:var(--mint);}
.why-card:nth-child(3){background:var(--sky);}
.why-icon  { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.why-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.why-text  { font-size: 0.92rem; color: var(--text); line-height: 1.65; }

/* ---- VIBE ---- */
.vibe-section { background: var(--navy); padding: 100px 0; position: relative; z-index: 1; }
.vibe-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; text-align: center; }
.vibe-section .section-tag { background: var(--yellow); }
.vibe-headline { font-family: var(--font-display); font-size: clamp(2.4rem,4.5vw,4rem); color: var(--cream); line-height: 1.1; margin-bottom: 16px; }
.vibe-headline span { color: var(--coral-soft); }
.vibe-sub { font-size: 1.05rem; color: rgba(255,248,238,0.65); max-width: 520px; margin: 0 auto 52px; line-height: 1.7; }
.vibe-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.vibe-tile { aspect-ratio: 1; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; transition: transform 0.3s, border-color 0.3s; cursor: pointer; }
.vibe-tile:hover { transform: translateY(-6px); border-color: var(--coral-soft); }
.vibe-tile:nth-child(1) { background: rgba(255,203,164,0.15); }
.vibe-tile:nth-child(2) { background: rgba(168,230,207,0.15); }
.vibe-tile:nth-child(3) { background: rgba(168,216,234,0.15); }
.vibe-tile:nth-child(4) { background: rgba(201,184,232,0.15); }
.vibe-emoji { font-size: 2.2rem; }
.vibe-tile-label { font-family: var(--font-display); font-size: 1rem; color: var(--cream); }

/* ---- REVIEWS ---- */
.reviews-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.review-card { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.review-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-md); }
.review-card:nth-child(1){background:var(--peach);}
.review-card:nth-child(2){background:var(--mint);}
.review-card:nth-child(3){background:var(--sky);}
.review-stars { color: var(--coral); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text  { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer     { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--coral); box-shadow: 2px 2px 0 var(--navy); flex-shrink: 0; }
.reviewer-name { font-weight: 800; font-size: 0.9rem; color: var(--navy); }
.reviewer-type { font-size: 0.78rem; color: var(--text-mid); }

/* ---- CTA ---- */
.cta-band { background: var(--mint); border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); padding: 90px 48px; text-align: center; position: relative; z-index: 1; }
.cta-band-headline { font-family: var(--font-display); font-size: clamp(3rem,6vw,5.5rem); color: var(--navy); line-height: 1.05; margin-bottom: 20px; }
.cta-band-headline span { color: var(--coral); }
.cta-band-sub { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-input { flex: 1; min-width: 240px; background: var(--white); border: 2px solid var(--navy); border-radius: 50px; padding: 14px 24px; font-family: var(--font-body); font-size: 0.95rem; color: var(--navy); box-shadow: var(--shadow-sm); outline: none; }
.newsletter-input::placeholder { color: var(--text-soft); }
.newsletter-input:focus { box-shadow: var(--shadow-md); transform: translate(-2px,-2px); transition: all 0.15s; }

/* ---- FOOTER ---- */
footer { background: var(--navy); padding: 72px 48px 40px; position: relative; z-index: 1; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { font-family: var(--font-display); font-size: 2.2rem; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px; text-shadow: 3px 3px 0 rgba(0,0,0,0.3); }
.footer-logo .smile { font-size: 1.5rem; text-shadow: none; }
.footer-logo-badge {
  display: inline-block;
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.footer-brand-tagline {
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--coral-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-tagline { font-size: 0.9rem; color: rgba(255,248,238,0.55); line-height: 1.65; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; color: rgba(255,248,238,0.6); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--coral); color: var(--coral); }
.footer-col-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,248,238,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--mint); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-copy { font-family: var(--font-mono); font-size: 1rem; color: rgba(255,248,238,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--font-mono); font-size: 0.9rem; color: rgba(255,248,238,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--mint); }

/* ---- FADE IN ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ============================================================
   PRODUCT DETAIL PAGE
   Used by /products/<slug>/index.html
   ============================================================ */

.detail-wrap { max-width: 1200px; margin: 0 auto; padding: 56px 48px 80px; position: relative; z-index: 1; }

.breadcrumbs { font-family: var(--font-mono); font-size: 1rem; color: var(--text-soft); margin-bottom: 24px; }
.breadcrumbs a { color: var(--text-mid); text-decoration: none; }
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs .sep { color: var(--text-soft); margin: 0 8px; }
.breadcrumbs .current { color: var(--navy); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.gallery {
  display: flex; flex-direction: column; gap: 14px;
  position: sticky; top: 96px;
}
.gallery-main {
  aspect-ratio: 1;
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--cream);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 70px; height: 70px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.gallery-thumb.active { opacity: 1; box-shadow: var(--shadow-sm); }
.gallery-placeholder {
  width: 70px; height: 70px;
  border: 2px dashed rgba(45,43,85,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--text-soft);
  background: rgba(255,255,255,0.5);
}

/* Detail info */
.detail-info { padding: 12px 0; }
.detail-tag {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 3px 14px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  box-shadow: 2px 2px 0 var(--navy);
}
.detail-tag.tag-soon { background: var(--lavender); }
.detail-tag.tag-licensed { background: var(--mint); }
.detail-name { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); line-height: 1.05; margin-bottom: 14px; }
.detail-price { font-family: var(--font-display); font-size: 2rem; color: var(--coral); margin-bottom: 24px; }
.detail-price-soon { font-family: var(--font-mono); font-size: 1.2rem; color: var(--text-soft); margin-bottom: 24px; }
.detail-desc { font-size: 1.05rem; color: var(--text); line-height: 1.7; margin-bottom: 28px; max-width: 540px; }

.detail-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.detail-add {
  background: var(--coral); color: var(--white);
  font-family: var(--font-body); font-weight: 800; font-size: 1.05rem;
  padding: 16px 36px; border: 2px solid var(--navy); border-radius: 50px;
  box-shadow: var(--shadow-md); cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.detail-add:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.detail-shipping-note { font-family: var(--font-mono); font-size: 0.95rem; color: var(--text-mid); }
.detail-shipping-note .dot { color: var(--coral); margin: 0 6px; }

/* Specs list */
.specs-block { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); margin-bottom: 32px; }
.specs-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; }
.specs-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.specs-list li { font-size: 0.92rem; color: var(--text); display: flex; gap: 8px; }
.specs-list li strong { color: var(--text-mid); font-weight: 700; min-width: 76px; }

/* "How to kick" video slot */
.howto-section { margin: 80px 0 0; }
.howto-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 12px; }
.howto-sub { font-size: 1rem; color: var(--text-mid); margin-bottom: 28px; max-width: 560px; }
.video-frame {
  aspect-ratio: 16/9;
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-inner {
  text-align: center;
  color: var(--cream);
  padding: 24px;
}
.video-placeholder-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.video-placeholder-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin-bottom: 6px; }
.video-placeholder-text { font-family: var(--font-mono); font-size: 1.05rem; color: rgba(255,248,238,0.6); }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Cross-sell */
.cross-sell { margin-top: 80px; }
.cross-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 28px; }
.cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ============================================================
   LEGAL PAGES (privacy, terms, refund-policy)
   ============================================================ */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  position: relative;
  z-index: 1;
}
.legal-eyebrow {
  display: inline-block;
  background: var(--mustard);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 var(--navy);
  letter-spacing: 0.06em;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 8px;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.legal-content {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}
.legal-content h2 {
  font-family: var(--font-vintage);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 32px 0 12px;
  padding-top: 18px;
  border-top: 2px dashed rgba(42,36,53,0.18);
  text-transform: uppercase;
}
.legal-content h2:first-child { padding-top: 0; border-top: 0; margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 22px 0 10px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content a { color: var(--sun-coral); text-decoration: underline; }
.legal-content a:hover { color: var(--navy); }
.legal-content ul, .legal-content ol { margin: 0 0 14px 22px; }
.legal-content ul { list-style: square; }
.legal-content ul ul { list-style: circle; margin-top: 6px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--navy); font-weight: 800; }
.legal-content em { font-style: italic; }
.legal-content .in-short {
  background: var(--cream);
  border-left: 3px solid var(--sun-coral);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 0.9rem;
}
.legal-content table th,
.legal-content table td {
  border: 1px solid var(--navy);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-content table th { background: var(--sand); font-family: var(--font-vintage); font-weight: normal; letter-spacing: 0.04em; }
.legal-content table .center { text-align: center; }
.legal-content .toc { columns: 1; padding-left: 20px; }
.legal-content .toc li { margin-bottom: 4px; }
.legal-content .legal-address {
  background: var(--cream);
  border: 2px dashed rgba(42,36,53,0.25);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 12px 0 18px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.6;
}
.legal-content .legal-attribution {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 2px dashed rgba(42,36,53,0.18);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Footer-bottom legal links (small text under copyright) */
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: rgba(255,244,220,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--sun-coral-soft); }

/* ============================================================
   NOTIFY-ME MODAL
   ============================================================ */
.notify-modal {
  position: fixed; inset: 0;
  background: rgba(45,43,85,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.notify-modal.open { display: flex; }
.notify-modal-card {
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  max-width: 460px; width: 100%;
  position: relative;
}
.notify-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.notify-close:hover { background: var(--coral); color: var(--white); }
.notify-eyebrow { display: inline-block; background: var(--lavender); border: 2px solid var(--navy); border-radius: 50px; padding: 3px 12px; font-family: var(--font-mono); font-size: 0.95rem; color: var(--navy); margin-bottom: 16px; }
.notify-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); line-height: 1.15; margin-bottom: 8px; }
.notify-sub { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 22px; line-height: 1.6; }
.notify-form { display: flex; flex-direction: column; gap: 12px; }
.notify-input {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.notify-input:focus { transform: translate(-2px,-2px); box-shadow: var(--shadow-md); transition: all 0.15s; }
.notify-submit {
  background: var(--coral); color: var(--white);
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 13px 24px; border: 2px solid var(--navy); border-radius: 50px;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.notify-submit:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-md); }
.notify-success { display: none; text-align: center; padding: 12px 0; }
.notify-success.shown { display: block; }
.notify-success-icon { font-size: 2.4rem; margin-bottom: 10px; }
.notify-success-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.notify-success-text { font-size: 0.95rem; color: var(--text-mid); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-text { padding: 0; }
  .hero-sub, .hero-stats { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-height: 420px; }
  .section { padding: 72px 32px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .vibe-grid { grid-template-columns: 1fr 1fr; }
  .vibe-inner { padding: 0 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  nav { padding: 0 24px; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery { position: static; }
  .detail-wrap { padding: 40px 32px 60px; }
  .bundle-section { padding: 0 32px; }
  .bundle-card { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 28px 24px; }
  .bundle-visuals { justify-content: center; }
  .bundle-cta { align-items: center; }
  .cross-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .collection-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  /* keep cart visible on mobile even when other nav links hide */
  .nav-links.mobile-cart-only { display: flex; }
  .nav-links.mobile-cart-only li:not(.cart-li) { display: none; }
  .cta-band { padding: 60px 24px; }
  footer { padding: 60px 24px 32px; }
  .hero-headline { font-size: 2.4rem; }
  .character { transform: scale(0.75); }
  .specs-list { grid-template-columns: 1fr; }
  .cross-grid { grid-template-columns: 1fr; }
}
