/* ===== Twinies — Light theme (logo-matched) ===== */

:root {
  --bg: #fffaf7;
  --bg-soft: #fff3ec;
  --surface: #ffffff;
  --surface-hover: #ffe8f0;
  --text: #1a3568;
  --text-muted: #5a6f94;
  --accent: #d9557f;
  --accent-glow: rgba(217, 85, 127, 0.28);
  --accent-2: #2fa896;
  --accent-3: #e0a820;
  --accent-4: #9b7ec8;
  --navy: #1a3568;
  --border: rgba(26, 53, 104, 0.12);
  --gradient: linear-gradient(135deg, #e87a9a, #f0c23a 45%, #4db8a8);
  --gradient-btn: linear-gradient(135deg, #d9557f, #e87a9a);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 80px;
  --font: 'Outfit', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 16px 48px rgba(26, 53, 104, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, video { display: block; max-width: 100%; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ===== Cursor Glow ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
}

body:hover .cursor-glow { opacity: 0.2; }

/* ===== Floating Orbs ===== */
.orb-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  animation: orbFloat 16s ease-in-out infinite;
}

.orb-1 { width: 400px; height: 400px; background: var(--accent); top: 10%; left: -5%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: var(--accent-2); top: 60%; right: -5%; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: var(--accent-3); bottom: 10%; left: 30%; animation-delay: -6s; }
.orb-4 { width: 200px; height: 200px; background: #ffd6e5; top: 30%; right: 20%; animation-delay: -9s; }
.orb-5 { width: 350px; height: 350px; background: var(--accent-4); bottom: 40%; left: 60%; animation-delay: -4s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.02); }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 250, 247, 0.94);
  border-color: var(--border);
}

@supports (backdrop-filter: blur(12px)) {
  .nav.scrolled {
    background: rgba(255, 250, 247, 0.88);
    backdrop-filter: blur(12px);
  }
}

.nav-side-left { justify-self: start; }
.nav-side-right { justify-self: end; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.logo-img-full {
  width: auto;
  height: clamp(48px, 7.5vw, 64px);
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bg);
}

.nav-links { display: none; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  transition: background 0.3s;
  position: relative;
}

.icon-btn:hover { background: var(--surface-hover); }

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url('../assets/hero-poster.jpg') center/cover no-repeat,
    radial-gradient(ellipse at 30% 25%, rgba(232, 122, 154, 0.2) 0%, transparent 55%),
    linear-gradient(160deg, #ffe8f0 0%, #fffaf7 45%, #e8f8f5 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-video-wrap.is-ready .hero-video {
  opacity: 1;
}

.hero-video-wrap.poster-only .hero-video {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26, 53, 104, 0.35) 0%, rgba(26, 53, 104, 0.45) 45%, var(--bg) 100%),
    linear-gradient(to right, rgba(26, 53, 104, 0.25) 0%, transparent 45%, rgba(232, 122, 154, 0.15) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 900px;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(26, 53, 104, 0.35);
}

.hero-content .hero-sub,
.hero-content .hero-tag {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: none;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(26, 53, 104, 0.28);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-accent {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Float animation for hero items */
.float-item {
  opacity: 0;
  animation: fadeFloatIn 1s var(--ease) forwards;
}

.float-item[data-delay="0"] { animation-delay: 0.2s; }
.float-item[data-delay="1"] { animation-delay: 0.4s; }
.float-item[data-delay="2"] { animation-delay: 0.55s; }
.float-item[data-delay="3"] { animation-delay: 0.7s; }
.float-item[data-delay="4"] { animation-delay: 0.85s; }

@keyframes fadeFloatIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero floaters — antigravity product cards */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floater {
  position: absolute;
  animation: antigravity 6s ease-in-out infinite;
}

.floater-1 { top: 22%; left: 8%; animation-delay: 0s; }
.floater-2 { top: 18%; right: 10%; animation-delay: -2s; }
.floater-3 { bottom: 25%; left: 15%; animation-delay: -4s; }

.floater-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 0.75rem;
  width: 120px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(26, 53, 104, 0.18);
}

.floater-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: #fff3ec;
}

.floater-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.floater-card span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
}

@keyframes antigravity {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover { box-shadow: 0 12px 36px var(--accent-glow); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  backdrop-filter: blur(10px);
  background: rgba(26, 53, 104, 0.18);
}

.btn-ghost:hover {
  background: rgba(26, 53, 104, 0.32);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-light {
  background: var(--navy);
  color: #ffffff;
}

.btn-full { width: 100%; }

/* ===== Marquee — seamless infinite loop ===== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--bg-soft);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 14s linear infinite;
  will-change: transform;
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee .dot { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-wrap:hover .marquee {
  animation-play-state: paused;
}

/* ===== Sections ===== */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  z-index: 1;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header h2,
.story-text h2,
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header h2 em,
.story-text h2 em {
  font-style: italic;
  color: var(--accent);
}

.section-header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 122, 154, 0.35);
  box-shadow: var(--shadow), 0 0 0 1px rgba(232, 122, 154, 0.12);
}

.product-info-minimal {
  padding: 1rem 1.25rem 1.25rem;
}

.product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.product-info-minimal h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.product-name-price {
  flex: 1;
  min-width: 0;
}

.product-info-minimal .product-price {
  display: block;
}

.price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(229, 115, 115, 0.7);
}

.price-sale {
  font-weight: 600;
  color: var(--accent);
}

.price-wrap.price-sm .price-sale {
  font-size: 0.95rem;
}

.price-wrap.price-lg .price-original {
  font-size: 1.1rem;
}

.price-wrap.price-lg .price-sale {
  font-size: 1.4rem;
}

.detail-price {
  margin: 0.25rem 0;
}

.product-info-minimal .add-btn {
  flex-shrink: 0;
}

.view-detail {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.product-card:hover .view-detail { opacity: 1; }

.product-sizes-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
  justify-content: center;
}

.product-sizes-preview span {
  font-size: 0.65rem;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  background: rgba(217, 85, 127, 0.1);
  color: var(--accent);
  font-weight: 500;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.product-card:hover { animation-play-state: paused; }

.product-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.product-slider {
  position: absolute;
  inset: 0;
}

.product-slider-track {
  position: absolute;
  inset: 0;
}

.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.product-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.product-image .gradient-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .gradient-bg { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(26, 53, 104, 0.55);
  backdrop-filter: blur(10px);
  color: var(--accent);
}

.product-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 53, 104, 0.45);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  display: grid;
  place-items: center;
}

.product-card:hover .slider-nav,
.product-slider:focus-within .slider-nav {
  opacity: 1;
}

@media (max-width: 768px) {
  .slider-nav { opacity: 0.85; }
}

.slider-nav.prev { left: 0.6rem; }
.slider-nav.next { right: 0.6rem; }
.slider-nav:hover { background: rgba(26, 53, 104, 0.7); }

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.product-image .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.add-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-btn);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}

.add-btn:hover { transform: scale(1.1) rotate(90deg); }

/* ===== Story ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  background: linear-gradient(to top, rgba(26, 53, 104, 0.72) 0%, rgba(26, 53, 104, 0.2) 50%, transparent 100%);
}

.story-inner {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.story-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(232, 122, 154, 0.35);
  border-radius: 100px;
}

.story-inner h3,
.story-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.story-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 122, 154, 0.2);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 { width: 80%; height: 80%; animation-delay: 0s; }
.ring-2 { width: 60%; height: 60%; animation-delay: -2s; border-color: rgba(155, 126, 200, 0.15); }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.story-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.story-text .btn { margin-top: 0.5rem; }

/* Antigravity tilt on mouse */
.antigravity-tilt {
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

/* ===== Featured ===== */
.featured-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(232, 122, 154, 0.12), rgba(77, 184, 168, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  position: relative;
}

.featured-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.featured-content h2 em { font-style: italic; color: var(--accent); }

.featured-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.featured-timer {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timer-block {
  text-align: center;
}

.timer-block span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.timer-block small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.featured-visual {
  display: grid;
  place-items: center;
  position: relative;
}

.featured-sphere {
  width: min(280px, 60vw);
  height: min(280px, 60vw);
  border-radius: 50%;
  background: var(--gradient);
  box-shadow:
    0 0 80px var(--accent-glow),
    inset 0 0 60px rgba(255, 255, 255, 0.2);
  animation: sphereFloat 5s ease-in-out infinite;
}

@keyframes sphereFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(5deg); }
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.5s var(--ease);
}

.testimonial-card:hover { transform: translateY(-6px); }

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.testimonial-card footer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.contact-list a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-list a:hover { color: var(--text); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(232, 122, 154, 0.45);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 235, 0.3);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--text); }

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  display: grid !important;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0 !important;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy) !important;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}

.social-icon:hover {
  border-color: var(--accent);
  background: rgba(217, 85, 127, 0.08);
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Cart Drawer ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
  overscroll-behavior: contain;
}

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

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

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.25rem;
}

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 1rem;
  font-style: italic;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  animation: slideIn 0.4s var(--ease);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  flex-shrink: 0;
  background-size: cover !important;
  background-position: center !important;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  word-break: break-word;
}

.cart-item-info span { font-size: 0.85rem; color: var(--accent); }

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color 0.3s;
  flex-shrink: 0;
  padding: 0.25rem 0;
  white-space: nowrap;
}

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

.cart-footer {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-soft);
}

.cart-totals {
  margin-bottom: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  color: var(--text);
}

.cart-total strong {
  font-size: 1.3rem;
  color: var(--accent);
}

.cart-delivery-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-soft);
  border: 1px solid rgba(232, 122, 154, 0.35);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  z-index: 3000;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Mobile Nav ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-toggle { display: none; }

  .hero-floaters { display: none; }

  .hero-video {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Prefer sharper decoding on mobile GPUs */
    image-rendering: -webkit-optimize-contrast;
  }

  .story-grid,
  .featured-banner,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-info-minimal {
    padding: 0.65rem 0.7rem 0.75rem;
  }

  .product-info-minimal h3 {
    font-size: 0.78rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-info-row {
    gap: 0.4rem;
    margin-bottom: 0.2rem;
  }

  .price-wrap {
    gap: 0.3rem;
  }

  .price-original {
    font-size: 0.68rem;
  }

  .price-wrap.price-sm .price-sale {
    font-size: 0.78rem;
  }

  .add-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

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

  .view-detail {
    font-size: 0.65rem;
    opacity: 0.9;
  }

  .product-badge {
    top: 0.55rem;
    left: 0.55rem;
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
  }

  .slider-nav {
    width: 28px;
    height: 28px;
    opacity: 0.85;
  }

  .slider-nav.prev { left: 0.35rem; }
  .slider-nav.next { right: 0.35rem; }

  .featured-visual { order: -1; }

  .featured-sphere {
    width: 180px;
    height: 180px;
  }

  .cursor-glow { display: none; }
}

.color-swatch.lg {
  width: 28px;
  height: 28px;
}

/* ===== Product Detail Modal ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.product-modal-box {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  animation: modalIn 0.4s var(--ease);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(26, 53, 104, 0.45);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-gallery {
  aspect-ratio: 4/5;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.detail-slider-track {
  position: absolute;
  inset: 0;
}

.detail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.detail-slide.active { opacity: 1; }

.detail-gallery img,
.detail-gallery-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery .slider-nav {
  opacity: 1;
}

.detail-dots {
  bottom: 1rem;
}

.detail-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(232, 122, 154, 0.12);
  color: var(--accent);
}

.detail-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.detail-price {
  margin: 0.25rem 0;
}

.detail-desc {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}

.detail-colors h4,
.detail-sizes h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-color-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.detail-sizes {
  margin: 0.85rem 0 0.35rem;
}

.detail-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-chip {
  min-width: 3.25rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.size-chip:hover {
  border-color: var(--accent);
}

.size-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.detail-stock {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.detail-add-btn { margin-top: 0.5rem; }
.detail-add-btn:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 768px) {
  .product-modal-body { grid-template-columns: 1fr; }
  .detail-gallery { aspect-ratio: 1; max-height: 50vh; }
  .detail-content { padding: 1.5rem; }
}

/* ===== Checkout Modal ===== */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

.checkout-box {
  position: relative;
  width: min(920px, 100%);
  max-width: 100%;
  max-height: min(92vh, 92dvh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  animation: modalIn 0.4s var(--ease);
  z-index: 1;
}

.checkout-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(26, 53, 104, 0.12);
  color: var(--navy);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.checkout-summary {
  padding: 2rem;
  background: var(--surface);
  border-right: 1px solid var(--border);
  min-width: 0;
  max-width: 100%;
}

.checkout-summary h2,
.checkout-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-right: 2.5rem;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  max-height: 280px;
  overflow-y: auto;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  max-width: 100%;
}

.checkout-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover !important;
  background-position: center !important;
}

.checkout-item-info {
  flex: 1;
  min-width: 0;
}

.checkout-item-info strong {
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkout-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checkout-total-row.checkout-grand {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
  color: var(--text);
}

.checkout-total-row strong {
  font-size: 1rem;
  color: var(--text);
}

.checkout-total-row.checkout-grand strong {
  font-size: 1.35rem;
  color: var(--accent);
}

.checkout-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkout-form {
  padding: 2rem;
  min-width: 0;
  max-width: 100%;
}

.checkout-form .form-group {
  margin-bottom: 0.9rem;
  min-width: 0;
  max-width: 100%;
}

.checkout-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: rgba(232, 122, 154, 0.45);
}

.checkout-form .btn {
  margin-top: 0.75rem;
}

.checkout-form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.checkout-success-box {
  width: min(400px, 100%);
  padding: 2.5rem 2rem;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--gradient);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.checkout-success-box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.checkout-success-box p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.order-id-display {
  margin: 1rem 0 !important;
  color: var(--text) !important;
  font-size: 1rem;
}

.order-id-display strong {
  color: var(--accent);
}

.success-note {
  font-size: 0.85rem;
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  .cart-drawer {
    width: 100%;
    border-left: none;
  }

  .cart-header {
    padding: 1rem 1rem 0.85rem;
  }

  .cart-header h3 {
    font-size: 1.35rem;
  }

  .cart-items {
    padding: 0.75rem 1rem;
  }

  .cart-item {
    gap: 0.7rem;
    padding: 0.85rem 0;
  }

  .cart-item-thumb {
    width: 56px;
    height: 56px;
  }

  .cart-item-info h4 {
    font-size: 0.88rem;
  }

  .cart-footer {
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(26, 53, 104, 0.06);
  }

  .cart-total {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .cart-total strong {
    font-size: 1.15rem;
  }

  .checkout-modal {
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
  }

  .checkout-box {
    width: 100%;
    max-width: 100%;
    max-height: min(96vh, 96dvh);
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .checkout-box.checkout-success-box {
    width: calc(100% - 1.5rem);
    max-width: 400px;
    margin: auto 0.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    align-self: center;
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .checkout-summary,
  .checkout-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .checkout-summary {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.15rem 1rem;
  }

  .checkout-summary h2,
  .checkout-form h2 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
  }

  .checkout-items {
    max-height: 140px;
    margin-bottom: 1rem;
    overflow-x: hidden;
  }

  .checkout-item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.55rem 0.65rem;
  }

  .checkout-item-thumb {
    width: 44px;
    height: 44px;
  }

  .checkout-item-info {
    flex: 1 1 calc(100% - 56px);
    min-width: 0;
  }

  .checkout-item-info strong {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }

  .checkout-item-price {
    margin-left: auto;
    font-size: 0.85rem;
  }

  .checkout-total-row {
    gap: 0.75rem;
    font-size: 1rem;
  }

  .checkout-total-row strong {
    font-size: 1.15rem;
    word-break: break-word;
  }

  .checkout-form {
    padding: 1.15rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  }

  .checkout-form .form-group {
    margin-bottom: 0.75rem;
  }

  .checkout-form input,
  .checkout-form textarea {
    padding: 0.85rem 0.95rem;
    font-size: 16px; /* prevents iOS zoom */
    max-width: 100%;
  }

  .checkout-form .btn {
    position: sticky;
    bottom: 0;
    margin-top: 0.5rem;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    max-width: 100%;
  }

  .checkout-close {
    top: 0.65rem;
    right: 0.65rem;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(26, 53, 104, 0.08);
  }
}

/* Performance mode — lighter animations & effects */
body.perf-lite .orb-field,
body.perf-lite .cursor-glow,
body.perf-lite .hero-floaters {
  display: none;
}

body.perf-lite .product-card {
  animation: none;
}

body.perf-lite .floater-card,
body.perf-lite .hero-tag,
body.perf-lite .nav.scrolled {
  backdrop-filter: none;
}

body.perf-lite .hero-tag {
  background: rgba(217, 85, 127, 0.12);
}

/* Light-theme section buttons (outside hero video) */
.section .btn-ghost,
.story-text .btn-ghost,
.footer .btn-ghost,
.cart-drawer .btn-ghost {
  border: 1px solid var(--border);
  color: var(--navy);
  background: #ffffff;
}

.section .btn-ghost:hover,
.story-text .btn-ghost:hover,
.footer .btn-ghost:hover,
.cart-drawer .btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  color: var(--navy);
}

.section .btn-primary,
.story-text .btn-primary,
.cart-drawer .btn-primary {
  color: #ffffff;
}

.icon-btn {
  color: var(--navy);
}

.cart-count {
  background: var(--accent);
  color: #ffffff;
}

.cart-overlay {
  background: rgba(26, 53, 104, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
