/* ═══════════════════════════════════════════════════
   AstroKamya™ Shop V3 — Warm Nebula Liquid Glass
   Editorial Luxury Design System
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --v3-void: #0A0810;
  --v3-cream: #F5EFE0;
  --v3-warm-cream: #FAF6EE;
  --v3-silk: #EDE5D4;
  --v3-gold: #D4A847;
  --v3-gold-soft: #D4BF8A;
  --v3-rose-gold: #B8837A;
  --v3-sage: #7A9E7E;
  --v3-dusty-rose: #B8687A;
  --v3-violet: #8B6DB5;
  --v3-text-dark: #2C2520;
  --v3-text-mid: #6B6560;
  --v3-text-light: #9E978D;
  --v3-card-bg: rgba(250,246,238,0.65);
  --v3-card-border: rgba(200,169,110,0.12);
  --v3-glass-blur: blur(20px);
  --v3-shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --v3-shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --v3-shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --v3-radius-sm: 8px;
  --v3-radius-md: 14px;
  --v3-radius-lg: 20px;
  --v3-radius-xl: 28px;
  --v3-font-h: 'Cormorant Garamond', Georgia, serif;
  --v3-font-b: 'Plus Jakarta Sans', system-ui, sans-serif;
  --v3-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --v3-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --v3-wrap: min(1200px, 92vw);
}

/* ── RESET ── */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 100%;
}
.v3-shop * { box-sizing: border-box; margin: 0; padding: 0; }
.v3-shop { 
  background: #EDD9C8; /* warm peach matching hero image bg */
  color: var(--v3-text-dark); 
  font-family: var(--v3-font-b);
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { background: #EDD9C8; }
.v3-shop img { max-width: 100%; display: block; }
.v3-shop a:not(.ak-pd-item):not(.ak-drawer-link):not(.ak-nav-link):not(.ak-nav-logo):not(.ak-nav-cta):not(.ak-drawer-cta) { color: inherit; text-decoration: none; }
.v3-wrap { width: var(--v3-wrap); margin: 0 auto; }

/* ── ANNOUNCEMENT BAR ── */
.v3-announce {
  background: var(--v3-void);
  color: var(--v3-cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.v3-announce-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: v3-marquee 30s linear infinite;
}
.v3-announce-track span { display: flex; align-items: center; gap: 8px; }
.v3-announce-track .v3-sep { color: var(--v3-gold); font-size: 8px; }
@keyframes v3-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── TRUST STRIP ── */
.v3-trust {
  background: var(--v3-warm-cream);
  border-bottom: 1px solid var(--v3-silk);
  padding: 10px 0;
  overflow: hidden;
}
.v3-trust-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: v3-marquee 25s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-text-mid);
  letter-spacing: 0.3px;
}
.v3-trust-track svg { width: 16px; height: 16px; flex-shrink: 0; }
.v3-trust-item { display: flex; align-items: center; gap: 8px; }

/* ── HERO — Full-bleed Editorial ── */
.v3-hero {
  position: relative;
  min-height: 100vh;
  margin-top: -104px; /* pulls hero behind navbar + cosmic strip */
  padding-top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #c9a48a;
}
.v3-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v3-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
  animation: v3-ken-burns 20s ease-in-out infinite alternate;
}
@keyframes v3-ken-burns {
  0%  { transform: scale(1); }
  100%{ transform: scale(1.05); }
}
.v3-hero-overlay {
  position: absolute;
  inset: 0;
  /* Only left-to-right fade for text readability — no top/bottom fade */
  background: linear-gradient(90deg,
    rgba(245,239,224,0.97) 0%,
    rgba(245,239,224,0.90) 25%,
    rgba(245,239,224,0.55) 45%,
    rgba(245,239,224,0.10) 65%,
    transparent 85%
  );
}
.v3-hero-content {
  position: relative;
  z-index: 2;
  width: var(--v3-wrap);
  margin: 0 auto;
  padding: 100px 0 80px; /* top offset clears navbar */
}
.v3-hero-text { max-width: 520px; }
.v3-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--v3-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: v3-fade-up 0.8s 0.3s ease forwards;
}
.v3-hero-title {
  font-family: var(--v3-font-h);
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--v3-text-dark);
  margin-bottom: 20px;
  opacity: 0;
  animation: v3-fade-up 0.8s 0.5s ease forwards;
}
.v3-hero-title em { font-style: italic; color: var(--v3-gold); }
.v3-hero-sub {
  font-size: 15px;
  color: var(--v3-text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
  opacity: 0;
  animation: v3-fade-up 0.8s 0.7s ease forwards;
}
.v3-hero-actions {
  opacity: 0;
  animation: v3-fade-up 0.8s 0.9s ease forwards;
}
.v3-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--v3-void);
  color: var(--v3-cream);
  padding: 16px 40px;
  border-radius: 60px;
  font-family: var(--v3-font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--v3-ease);
  box-shadow: 0 4px 20px rgba(10,8,16,0.15);
}
.v3-hero-cta:hover {
  background: var(--v3-gold);
  color: var(--v3-void);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.3);
}
.v3-hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.v3-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--v3-text-mid);
}
.v3-hero-meta-item svg { opacity: 0.6; }
.v3-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--v3-text-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: v3-fade-up 0.8s 1.2s ease forwards;
}
.v3-hero-scroll-hint svg {
  animation: v3-bounce 2s ease-in-out infinite;
}
@keyframes v3-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes v3-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
/* No longer needed */
.v3-hero-visual, .v3-hero-img { display: none; }

/* ── SECTION COMMON ── */
.v3-section { padding: 80px 0; }
.v3-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--v3-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v3-section-title {
  font-family: var(--v3-font-h);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}
.v3-section-title em { font-style: italic; color: var(--v3-gold); }
.v3-section-sub {
  font-size: 15px;
  color: var(--v3-text-mid);
  max-width: 520px;
  margin-bottom: 40px;
}
.v3-section--alt { background: var(--v3-warm-cream); }
.v3-divider { height: 1px; background: var(--v3-silk); margin: 0; border: none; }

/* ── INTENT PILLS ── */
.v3-intents {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.v3-intent-pill {
  padding: 10px 22px;
  border-radius: 60px;
  border: 1px solid var(--v3-silk);
  background: transparent;
  font-family: var(--v3-font-b);
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-text-mid);
  cursor: pointer;
  transition: all 0.3s var(--v3-ease);
}
.v3-intent-pill:hover { border-color: var(--v3-gold); color: var(--v3-text-dark); }
.v3-intent-pill.active {
  background: var(--v3-void);
  color: var(--v3-cream);
  border-color: var(--v3-void);
}

/* ── PRODUCT GRID ── */
.v3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.v3-card {
  background: var(--v3-warm-cream);
  border-radius: var(--v3-radius-lg);
  overflow: hidden;
  border: 1px solid var(--v3-card-border);
  transition: all 0.4s var(--v3-ease);
  cursor: pointer;
  position: relative;
}
.v3-card:hover { transform: translateY(-6px); box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.12); }
.v3-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--v3-cream);
}
.v3-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--v3-ease);
}
.v3-card:hover .v3-card-img { transform: scale(1.06); }
.v3-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--v3-void);
  color: var(--v3-cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 60px;
}
.v3-card-quick {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--v3-ease);
}
.v3-card:hover .v3-card-quick { opacity: 1; transform: translateY(0); }
.v3-card-body { padding: 18px 18px 20px; }
.v3-card-tags {
  font-size: 11px;
  font-style: italic;
  color: var(--v3-text-light);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.v3-card-name {
  font-family: var(--v3-font-h);
  font-size: 18px;
  font-weight: 500;
  color: var(--v3-text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.v3-card-price-row { display: flex; align-items: baseline; gap: 8px; }
.v3-card-price {
  font-family: var(--v3-font-b);
  font-size: 16px;
  font-weight: 600;
  color: var(--v3-text-dark);
}
.v3-card-compare {
  font-size: 13px;
  color: var(--v3-text-light);
  text-decoration: line-through;
}
.v3-card-add {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  background: var(--v3-void);
  color: var(--v3-cream);
  border: none;
  border-radius: var(--v3-radius-sm);
  font-family: var(--v3-font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s var(--v3-ease);
}
.v3-card-add:hover { background: var(--v3-gold); color: var(--v3-void); }

/* ── FEATURED STONE ── */
.v3-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.v3-featured-img {
  border-radius: var(--v3-radius-xl);
  box-shadow: var(--v3-shadow-lg);
  width: 100%;
}
.v3-featured-content { max-width: 460px; }
.v3-featured-stone {
  font-family: var(--v3-font-h);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  margin-bottom: 16px;
}
.v3-featured-desc {
  font-size: 15px;
  color: var(--v3-text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}
.v3-featured-props {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.v3-featured-prop {
  text-align: center;
  padding: 16px 20px;
  background: var(--v3-cream);
  border-radius: var(--v3-radius-md);
  border: 1px solid var(--v3-silk);
  min-width: 100px;
}
.v3-featured-prop-val {
  font-family: var(--v3-font-h);
  font-size: 22px;
  font-weight: 500;
  color: var(--v3-gold);
}
.v3-featured-prop-label {
  font-size: 11px;
  color: var(--v3-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── SHOPPABLE VIDEO REELS ── */
.v3-reels-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  scrollbar-width: none;
}
.v3-reels-scroll::-webkit-scrollbar { display: none; }
.v3-reel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #000;
  border-radius: var(--v3-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.4s var(--v3-ease), box-shadow 0.4s var(--v3-ease);
  position: relative;
}
.v3-reel-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.v3-reel-video {
  aspect-ratio: 9/16;
  background: #111;
  position: relative;
  overflow: hidden;
}
.v3-reel-vid {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Loader ── */
.v3-reel-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  z-index: 3;
  transition: opacity 0.5s ease;
}
.v3-reel-spinner {
  width: 32px; height: 32px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: v3-reel-spin 0.8s linear infinite;
}
@keyframes v3-reel-spin { to { transform: rotate(360deg); } }

/* ── Overlay (bottom gradient + content) ── */
.v3-reel-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.15) 35%,
    transparent 55%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  pointer-events: none;
}
.v3-reel-overlay > * { pointer-events: auto; }

/* ── Volume Toggle ── */
.v3-reel-vol {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.v3-reel-vol:hover { background: rgba(0,0,0,0.7); transform: scale(1.1); }
.v3-reel-vol svg { width: 14px; height: 14px; stroke: #fff; }

/* ── Bottom Info (username, caption) ── */
.v3-reel-bottom-info {
  margin-bottom: 10px;
}
.v3-reel-user-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.v3-reel-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.6);
}
.v3-reel-username {
  font-size: 12px; font-weight: 600;
  color: #fff; letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.v3-reel-caption {
  font-size: 11px; color: rgba(255,255,255,0.85);
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Side Action Buttons (like, comment, share) ── */
.v3-reel-side-actions {
  position: absolute; right: 10px; bottom: 90px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; z-index: 4;
}
.v3-reel-action {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.v3-reel-action:hover { transform: scale(1.15); }
.v3-reel-action svg {
  width: 22px; height: 22px; stroke: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.v3-reel-action span {
  font-size: 10px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ── Floating Product Tag ── */
.v3-reel-product-tag {
  position: absolute; bottom: 14px; left: 14px; right: 50px;
  z-index: 5;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.v3-reel-product-tag:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.v3-reel-tag-img {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.3);
}
.v3-reel-tag-info { flex: 1; min-width: 0; }
.v3-reel-tag-name {
  font-size: 11px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2;
}
.v3-reel-tag-price {
  font-size: 12px; font-weight: 700; color: var(--v3-gold-soft);
  margin-top: 1px;
}
.v3-reel-tag-add {
  width: 28px; height: 28px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.v3-reel-product-tag:hover .v3-reel-tag-add {
  background: var(--v3-gold); color: #fff;
  transform: scale(1.1);
}

/* ── Playback Progress Bar ── */
.v3-reel-progress {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; z-index: 6;
  background: rgba(255,255,255,0.15);
}
.v3-reel-progress-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--v3-gold), #fff);
  border-radius: 0 3px 3px 0;
  transition: width 0.15s linear;
}

/* ── LEGACY COMPAT (kept for any JS refs) ── */
.v3-reel-info { display: none; }
.v3-reel-buy { display: none; }

/* ── Reel Responsive ── */
@media (max-width: 768px) {
  .v3-reel-card { flex: 0 0 200px; }
  .v3-reel-side-actions { gap: 12px; bottom: 80px; right: 8px; }
  .v3-reel-action svg { width: 18px; height: 18px; }
  .v3-reel-product-tag { padding: 6px 8px; gap: 8px; right: 40px; }
  .v3-reel-tag-img { width: 30px; height: 30px; }
  .v3-reel-vol { width: 28px; height: 28px; }
  .v3-reel-vol svg { width: 12px; height: 12px; }
}
@media (max-width: 480px) {
  .v3-reel-card { flex: 0 0 170px; }
  .v3-reel-side-actions { display: none; }
  .v3-reel-product-tag { right: 10px; }
  .v3-reel-user-avatar { width: 22px; height: 22px; font-size: 10px; }
  .v3-reel-username { font-size: 11px; }
}


/* ── JOURNEY STEPS ── */
.v3-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.v3-journey-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--v3-warm-cream);
  border-radius: var(--v3-radius-lg);
  border: 1px solid var(--v3-card-border);
  transition: transform 0.3s var(--v3-ease);
}
.v3-journey-step:hover { transform: translateY(-4px); box-shadow: var(--v3-shadow-sm); }
.v3-journey-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--v3-gold);
  margin-bottom: 16px;
}
.v3-journey-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--v3-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-journey-icon svg { width: 24px; height: 24px; stroke: var(--v3-gold); }
.v3-journey-name {
  font-family: var(--v3-font-h);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.v3-journey-desc { font-size: 13px; color: var(--v3-text-mid); line-height: 1.6; }

/* ── USP STRIP ── */
.v3-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.v3-usp {
  text-align: center;
  padding: 32px 20px;
}
.v3-usp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--v3-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v3-silk);
}
.v3-usp-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.v3-usp-desc { font-size: 12px; color: var(--v3-text-mid); }

/* ── TESTIMONIALS MARQUEE ── */
.v3-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.v3-marquee-row {
  display: flex;
  width: max-content;
}
.v3-marquee-track {
  display: flex;
  gap: 16px;
  padding: 0 8px;
}
.v3-marquee-track.left {
  animation: marqueeLeft 45s linear infinite;
}
.v3-marquee-track.right {
  animation: marqueeRight 45s linear infinite;
}
.v3-marquee-row:hover .v3-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.v3-review-pill {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 10px 24px 10px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 400px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.v3-review-pill:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.v3-review-pill img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.v3-review-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.v3-review-content p {
  font-family: var(--v3-font-h);
  font-size: 15px;
  font-style: italic;
  color: var(--v3-text-dark);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v3-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.v3-review-meta span:first-child {
  font-weight: 600;
  color: var(--v3-text-dark);
}
.v3-review-meta .stars {
  color: var(--v3-gold);
  letter-spacing: 1px;
}

/* ── NEWSLETTER ── */
.v3-newsletter {
  text-align: center;
  background: var(--v3-void);
  padding: 80px 20px;
  color: var(--v3-cream);
}
.v3-newsletter .v3-section-eyebrow { justify-content: center; color: var(--v3-gold-soft); }
.v3-newsletter .v3-section-title { color: var(--v3-cream); }
.v3-newsletter .v3-section-sub { color: rgba(245,239,224,0.6); margin: 0 auto 32px; }
.v3-nl-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 10px;
}
.v3-nl-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 60px;
  background: rgba(255,255,255,0.06);
  color: var(--v3-cream);
  font-family: var(--v3-font-b);
  font-size: 14px;
}
.v3-nl-input::placeholder { color: rgba(245,239,224,0.4); }
.v3-nl-input:focus {
  outline: none;
  border-color: var(--v3-gold);
  background: rgba(255,255,255,0.1);
}
.v3-nl-btn {
  padding: 14px 28px;
  background: var(--v3-gold);
  color: var(--v3-void);
  border: none;
  border-radius: 60px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v3-nl-btn:hover {
  background: var(--v3-cream);
  color: var(--v3-void);
  transform: translateY(-2px);
}

/* ── FOUNDER STORY ── */
.v3-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.v3-story-img { border-radius: var(--v3-radius-xl); box-shadow: var(--v3-shadow-lg); }
.v3-story-quote {
  font-family: var(--v3-font-h);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--v3-text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--v3-gold);
}
.v3-story-author-name { font-weight: 600; font-size: 14px; }
.v3-story-author-role { font-size: 12px; color: var(--v3-text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .v3-grid { grid-template-columns: repeat(3, 1fr); }
  .v3-hero { min-height: 80vh; }
  .v3-hero-content { padding: 100px 0 60px; }
  .v3-hero-overlay { background: linear-gradient(90deg, rgba(245,239,224,0.95) 0%, rgba(245,239,224,0.8) 45%, rgba(245,239,224,0.4) 70%, transparent 100%); }
  .v3-featured { grid-template-columns: 1fr; gap: 40px; }
  .v3-story-split { grid-template-columns: 1fr; gap: 40px; }
  .v3-usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .v3-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .v3-section { padding: 50px 0; }
  .v3-hero { min-height: 75vh; }
  .v3-hero-bg img { object-position: 65% center; }
  .v3-hero-overlay { background: linear-gradient(180deg, rgba(245,239,224,0.9) 0%, rgba(245,239,224,0.7) 50%, rgba(245,239,224,0.3) 100%); }
  .v3-hero-content { padding: 80px 0 60px; }
  .v3-hero-title { font-size: 30px; }
  .v3-hero-text { max-width: 100%; }
  .v3-hero-meta { flex-direction: column; gap: 8px; }
  .v3-hero-scroll-hint { display: none; }
  .v3-journey-grid { grid-template-columns: 1fr; gap: 16px; }

  .v3-card-body { padding: 14px; }
  .v3-card-name { font-size: 16px; }
  .v3-reel-card { flex: 0 0 180px; }
  .v3-nl-form { flex-direction: column; }
  .v3-featured-props { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .v3-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .v3-hero-title { font-size: 26px; }
  .v3-hero-sub { font-size: 13px; }
  .v3-hero-cta { padding: 14px 28px; font-size: 12px; }
  .v3-intents { gap: 6px; }
  .v3-intent-pill { padding: 8px 16px; font-size: 12px; }
  .v3-card-add { padding: 10px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════
   CART DRAWER — World-Class Editorial Luxury
   ═══════════════════════════════════════════════════ */

/* ── FLOATING CART FAB ── */
.v3-cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A1520 0%, #0F0C14 100%);
  color: var(--v3-cream);
  border: 1px solid rgba(200,169,110,0.3);
  box-shadow: 0 4px 24px rgba(10,8,16,0.5), 0 0 20px rgba(200,169,110,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--v3-ease);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.v3-cart-fab.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.v3-cart-fab:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 32px rgba(10,8,16,0.6), 0 0 30px rgba(200,169,110,0.15);
  border-color: var(--v3-gold);
}
.v3-cart-fab svg {
  width: 22px;
  height: 22px;
  stroke: var(--v3-cream);
  fill: none;
  stroke-width: 1.5;
}
.v3-cart-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--v3-gold), #E8D06F);
  color: var(--v3-void);
  font-family: var(--v3-font-b);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--v3-spring);
  box-shadow: 0 2px 8px rgba(200,169,110,0.4);
}
.v3-cart-fab-badge.has-items {
  opacity: 1;
  transform: scale(1);
}

/* ── CART OVERLAY ── */
.ak-cart-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ak-cart-overlay.open { opacity: 1; visibility: visible; }

/* ── CART DRAWER ── */
.ak-cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 420px; max-width: 100vw;
  height: 100vh; height: 100dvh; z-index: 950;
  background: #fff; color: #1a1a1a;
  display: flex !important; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%); opacity: 0; visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s ease, visibility 0.35s ease;
}
.ak-cart-drawer.open { transform: translateX(0); opacity: 1; visibility: visible; }

/* ── CART HEADER ── */
.ak-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #eee; flex-shrink: 0;
}
.ak-cart-head::after { display: none; }
.ak-cart-title {
  font-family: var(--v3-font-b); font-size: 15px; font-weight: 700;
  color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: baseline; gap: 4px;
}
.ak-cart-title span { font-size: 15px; color: #1a1a1a; font-weight: 700; }
.ak-cart-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: none;
  color: #666; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.ak-cart-close:hover { color: #333; transform: none; background: #f5f5f5; }

/* ── CART BODY ── */
.ak-cart-scroll {
  flex: 1; display: flex; flex-direction: column;
  overflow: hidden; min-height: 0;
}
.ak-cart-items {
  flex: 1; padding: 0; overflow-y: auto; scrollbar-width: none;
}
.ak-cart-items::-webkit-scrollbar { display: none; }

/* ── CART FOOTER ── */
.ak-cart-footer {
  padding: 0 20px 20px; flex-shrink: 0; background: #fff;
  border-top: 1px solid #eee;
}
.ak-cart-checkout {
  width: 100%; padding: 15px 24px; border-radius: 12px;
  background: #C8A96E; border: none;
  font-family: var(--v3-font-b); font-size: 15px; font-weight: 700;
  color: #fff; cursor: pointer; letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(200,169,110,0.3);
}
.ak-cart-checkout::before { display: none; }
.ak-cart-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
  background: #b99a5e;
}
.ak-cart-checkout:active { transform: translateY(0); }

/* ── RESPONSIVE CART ── */
@media (max-width: 480px) {
  .ak-cart-drawer { width: 100vw; max-width: 100vw; }
  .v3-cart-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .v3-cart-fab svg { width: 20px; height: 20px; }
}


/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL MODAL — Clean Editorial PDP
   ═══════════════════════════════════════════════════ */
#v3-pdp-content { display: contents; }

.v3-pdp-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 8, 16, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.v3-pdp-overlay.open { opacity: 1; visibility: visible; }

.v3-pdp-modal {
  position: fixed; top: 50%; left: 50%; z-index: 1050;
  width: min(980px, 94vw); max-height: 88vh;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0; visibility: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s ease, visibility 0.4s ease;
}
.v3-pdp-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1; visibility: visible;
}

.v3-pdp-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.45); font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.v3-pdp-close:hover {
  background: rgba(0,0,0,0.1); color: #333;
  transform: rotate(90deg);
}

/* ── IMAGE GALLERY: Thumbnails Left + Main Image ── */
.v3-pdp-gallery {
  position: relative;
  background: #FAFAF7;
  display: flex; flex-direction: row;
  padding: 24px;
  gap: 14px;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.v3-pdp-thumbs {
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.v3-pdp-thumb {
  width: 68px; height: 68px; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease; opacity: 0.55;
  background: #fff;
}
.v3-pdp-thumb.active {
  border-color: var(--v3-gold); opacity: 1;
  box-shadow: 0 2px 8px rgba(200,169,110,0.25);
}
.v3-pdp-thumb:hover { opacity: 1; }
.v3-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.v3-pdp-main-img {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.v3-pdp-main-img img {
  max-width: 100%; max-height: 420px; object-fit: contain;
  border-radius: 10px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.v3-pdp-main-img img:hover { transform: scale(1.04); }

.v3-pdp-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 5px 12px; border-radius: 6px;
  background: var(--v3-void); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3px;
}

/* ── PRODUCT INFO — Light Panel ── */
.v3-pdp-info {
  padding: 36px 32px; overflow-y: auto; scrollbar-width: none;
  display: flex; flex-direction: column; gap: 0;
  color: var(--v3-text-dark);
}
.v3-pdp-info::-webkit-scrollbar { display: none; }

.v3-pdp-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--v3-gold); margin-bottom: 12px;
}
.v3-pdp-name {
  font-family: var(--v3-font-h); font-size: 28px; font-weight: 400;
  line-height: 1.25; color: var(--v3-text-dark); margin-bottom: 16px;
}
.v3-pdp-pricing {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.v3-pdp-price {
  font-size: 24px; font-weight: 700; color: var(--v3-text-dark);
}
.v3-pdp-compare {
  font-size: 15px; color: rgba(0,0,0,0.3); text-decoration: line-through;
}
.v3-pdp-save-tag {
  font-size: 11px; font-weight: 700; color: #7A9E7E;
  background: rgba(122,158,126,0.1); padding: 3px 10px; border-radius: 20px;
}
.v3-pdp-tax-note {
  font-size: 12px; color: rgba(0,0,0,0.4); margin-bottom: 12px;
}
.v3-pdp-stars {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 20px;
}
.v3-pdp-stars-icons { color: var(--v3-gold); font-size: 14px; letter-spacing: 1px; }
.v3-pdp-stars-num { font-size: 13px; font-weight: 600; color: var(--v3-text-dark); }
.v3-pdp-stars-count { font-size: 12px; color: rgba(0,0,0,0.35); }

.v3-pdp-desc {
  font-size: 14px; line-height: 1.7; color: rgba(0,0,0,0.5);
  margin: 0 0 22px;
}

/* ── VEDIC PROPERTIES ── */
.v3-pdp-props {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.v3-pdp-prop {
  text-align: center; padding: 14px 8px; border-radius: 12px;
  background: #FAFAF7; border: 1px solid rgba(0,0,0,0.06);
}
.v3-pdp-prop-val {
  font-family: var(--v3-font-h); font-size: 16px; font-weight: 500;
  color: var(--v3-text-dark); margin-bottom: 4px;
}
.v3-pdp-prop-label {
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(0,0,0,0.35);
}

/* ── TRUST BADGES ── */
.v3-pdp-trust {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px;
}
.v3-pdp-trust-badge {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 8px;
  background: #FAFAF7; border: 1px solid rgba(0,0,0,0.06);
  font-size: 11px; color: rgba(0,0,0,0.5);
}

/* ── CTA BUTTON ── */
.v3-pdp-cta {
  width: 100%; padding: 16px 24px; border-radius: 12px;
  background: var(--v3-void); border: none;
  font-family: var(--v3-font-b); font-size: 14px; font-weight: 600;
  color: #fff; cursor: pointer; letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10,8,16,0.2);
  margin-top: auto;
}
.v3-pdp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,8,16,0.3);
  background: #1A1520;
}
.v3-pdp-cta:active { transform: translateY(0); }

/* ── RESPONSIVE PDP ── */
@media (max-width: 768px) {
  .v3-pdp-modal {
    grid-template-columns: 1fr; max-height: 95vh;
    width: 96vw; border-radius: 16px;
  }
  .v3-pdp-gallery {
    flex-direction: column-reverse; padding: 16px;
    max-height: 320px;
  }
  .v3-pdp-thumbs {
    flex-direction: row; justify-content: center;
  }
  .v3-pdp-thumb { width: 48px; height: 48px; }
  .v3-pdp-main-img img { max-height: 220px; }
  .v3-pdp-info { padding: 20px 18px; }
  .v3-pdp-name { font-size: 22px; }
  .v3-pdp-price { font-size: 20px; }
}


/* ═══════════════════════════════════════════════════
   EDITORIAL LOOKBOOK — Immersive Grid Break
   ═══════════════════════════════════════════════════ */

.v3-lookbook {
  position: relative;
  overflow: hidden;
}

/* ── BENTO ROW ── */
.v3-lb-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  height: 450px;
  position: relative;
  overflow: hidden;
}
.v3-lb-row--reverse {
  grid-template-columns: 1.2fr 1fr;
}

/* ── EDITORIAL TEXT PANEL ── */
.v3-lb-editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--v3-warm-cream);
  position: relative;
  z-index: 2;
}
.v3-lb-editorial--right {
  text-align: right;
  align-items: flex-end;
}
.v3-lb-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--v3-gold);
  margin-bottom: 20px;
}
.v3-lb-title {
  font-family: var(--v3-font-h);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--v3-text-dark);
  margin-bottom: 16px;
}
.v3-lb-title em {
  font-style: italic;
  color: var(--v3-gold);
}
.v3-lb-divider-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--v3-gold), var(--v3-dusty-rose));
  border-radius: 2px;
  margin-bottom: 20px;
}
.v3-lb-editorial--right .v3-lb-divider-line {
  margin-left: auto;
}
.v3-lb-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--v3-text-mid);
  margin-bottom: 32px;
  max-width: 340px;
}
.v3-lb-editorial--right .v3-lb-desc {
  margin-left: auto;
}
.v3-lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--v3-text-dark);
  border: 1.5px solid var(--v3-text-dark);
  border-radius: 60px;
  font-family: var(--v3-font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--v3-ease);
  width: fit-content;
}
.v3-lb-cta:hover {
  background: var(--v3-void);
  color: var(--v3-cream);
  border-color: var(--v3-void);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,8,16,0.15);
}
.v3-lb-cta svg {
  transition: transform 0.3s var(--v3-ease);
}
.v3-lb-cta:hover svg {
  transform: translateX(4px);
}

/* ── IMAGE PANELS (background-image approach — reliable positioning) ── */
.v3-lb-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-repeat: no-repeat;
  transition: background-size 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-size: cover;
}
.v3-lb-img-wrap:hover {
  background-size: 110%;
}
.v3-lb-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,8,16,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── HOTSPOT DOT + RING ── */
.v3-hotspot {
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.v3-hotspot-dot {
  width: 36px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-hotspot-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--v3-text-dark);
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  transition: all 0.35s var(--v3-ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  line-height: 1;
}
.v3-hotspot:hover .v3-hotspot-plus,
.v3-hotspot.active .v3-hotspot-plus {
  background: var(--v3-gold);
  color: #fff;
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
}
.v3-hotspot-ring {
  position: absolute;
  inset: -4px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: v3-hotspot-pulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 1;
}
.v3-hotspot-ring--delay {
  animation-delay: 1.2s;
  border-color: rgba(200,169,110,0.4);
}
@keyframes v3-hotspot-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── HOTSPOT CARD (QUICK BUY POPUP) ── */
.v3-hotspot-card {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) scale(0.9) translateY(8px);
  width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20;
  overflow: hidden;
}
/* Flip card to appear BELOW the dot when hotspot is near the top */
.v3-hotspot--flip-down .v3-hotspot-card {
  bottom: auto;
  top: calc(100% + 14px);
  transform: translateX(-50%) scale(0.9) translateY(-8px);
}
.v3-hotspot--flip-down:hover .v3-hotspot-card,
.v3-hotspot--flip-down.active .v3-hotspot-card {
  transform: translateX(-50%) scale(1) translateY(0);
}
.v3-hotspot-card::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
}
.v3-hotspot--flip-down .v3-hotspot-card::after {
  bottom: auto;
  top: -6px;
  box-shadow: -2px -2px 4px rgba(0,0,0,0.06);
}
.v3-hotspot:hover .v3-hotspot-card,
.v3-hotspot.active .v3-hotspot-card {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) scale(1) translateY(0);
}
/* Edge detection — if near right edge, flip */
.v3-hotspot[style*="left:6"] .v3-hotspot-card,
.v3-hotspot[style*="left:7"] .v3-hotspot-card,
.v3-hotspot[style*="left:8"] .v3-hotspot-card,
.v3-hotspot[style*="left:9"] .v3-hotspot-card {
  left: auto;
  right: 0;
  transform: translateX(0) scale(0.9) translateY(8px);
}
.v3-hotspot:hover .v3-hotspot-card[style*="left:6"],
.v3-hotspot.active .v3-hotspot-card[style*="left:6"],
.v3-hotspot[style*="left:6"]:hover .v3-hotspot-card,
.v3-hotspot[style*="left:7"]:hover .v3-hotspot-card,
.v3-hotspot[style*="left:8"]:hover .v3-hotspot-card,
.v3-hotspot[style*="left:9"]:hover .v3-hotspot-card {
  transform: translateX(0) scale(1) translateY(0);
}

.v3-hc-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--v3-cream);
}
.v3-hc-body {
  padding: 14px 16px 16px;
}
.v3-hc-name {
  font-family: var(--v3-font-h);
  font-size: 15px;
  font-weight: 500;
  color: var(--v3-text-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.v3-hc-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.v3-hc-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--v3-text-dark);
}
.v3-hc-compare {
  font-size: 12px;
  color: var(--v3-text-light);
  text-decoration: line-through;
}
.v3-hc-add {
  width: 100%;
  padding: 10px;
  background: var(--v3-void);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--v3-font-b);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--v3-ease);
}
.v3-hc-add:hover {
  background: var(--v3-gold);
  transform: translateY(-1px);
}

/* ── SOCIAL PROOF BADGE ON CARDS ── */
.v3-card-social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--v3-text-light);
}
.v3-card-social .v3-sp-stars {
  color: var(--v3-gold);
  font-size: 10px;
  letter-spacing: 0.5px;
}
.v3-card-social .v3-sp-sold {
  color: var(--v3-sage);
  font-weight: 600;
}

/* ── BESTSELLER / NEW BADGE ── */
.v3-card-badge-bs {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--v3-gold), #E8C96F);
  color: var(--v3-void);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 60px;
  box-shadow: 0 2px 8px rgba(200,169,110,0.3);
}
.v3-card-badge-new {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #06B6D4, #0891B2);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 60px;
  box-shadow: 0 2px 8px rgba(6,182,212,0.3);
}

/* ── BUNDLE GRID ── */
.v3-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-bundle-card {
  background: var(--v3-warm-cream);
  border-radius: var(--v3-radius-lg);
  overflow: hidden;
  border: 1px solid var(--v3-card-border);
  transition: all 0.4s var(--v3-ease);
  position: relative;
}
.v3-bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--v3-shadow-lg);
  border-color: var(--v3-gold-soft);
}
.v3-bundle-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2/1.1;
  position: relative;
}
.v3-bundle-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v3-bundle-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--v3-void);
  color: var(--v3-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 2;
}
.v3-bundle-body {
  padding: 18px;
}
.v3-bundle-name {
  font-family: var(--v3-font-h);
  font-size: 18px;
  font-weight: 500;
  color: var(--v3-text-dark);
  margin-bottom: 4px;
}
.v3-bundle-intention {
  font-size: 11px;
  font-style: italic;
  color: var(--v3-gold);
  margin-bottom: 10px;
}
.v3-bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.v3-bundle-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--v3-text-dark);
}
.v3-bundle-compare {
  font-size: 13px;
  color: var(--v3-text-light);
  text-decoration: line-through;
}
.v3-bundle-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--v3-sage);
  margin-bottom: 14px;
}
.v3-bundle-add {
  width: 100%;
  padding: 12px;
  background: var(--v3-void);
  color: var(--v3-cream);
  border: none;
  border-radius: var(--v3-radius-sm);
  font-family: var(--v3-font-b);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--v3-ease);
}
.v3-bundle-add:hover {
  background: var(--v3-gold);
  color: var(--v3-void);
}

/* ── LOOKBOOK RESPONSIVE ── */
@media (max-width: 1024px) {
  .v3-lb-row,
  .v3-lb-row--reverse {
    grid-template-columns: 1fr 1fr;
    height: 380px;
  }
  .v3-lb-editorial {
    padding: 40px 32px;
  }
  .v3-bundle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .v3-lb-row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .v3-lb-row--reverse {
    grid-template-columns: 1fr;
    height: auto;
  }
  /* On mobile, swap order so image comes first for Row 2 */
  .v3-lb-row--reverse .v3-lb-img-wrap {
    order: -1;
  }
  .v3-lb-editorial,
  .v3-lb-editorial--right {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }
  .v3-lb-editorial--right .v3-lb-divider-line {
    margin-left: auto;
    margin-right: auto;
  }
  .v3-lb-editorial--right .v3-lb-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .v3-lb-desc {
    max-width: 100%;
  }
  .v3-lb-img-wrap {
    min-height: 380px;
  }
  .v3-hotspot-card {
    width: 200px;
  }
  .v3-bundle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v3-bundle-imgs {
    aspect-ratio: 2/0.9;
  }
}

@media (max-width: 480px) {
  .v3-lb-editorial {
    padding: 32px 20px;
  }
  .v3-lb-title {
    font-size: 28px;
  }
  .v3-lb-img-wrap {
    min-height: 320px;
  }
  .v3-hotspot-card {
    width: 180px;
  }
  .v3-hc-body {
    padding: 10px 12px 12px;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .v3-hotspot-ring { animation: none; }
  .v3-lb-img-inner img { transition: none; }
  .v3-hotspot-card { transition-duration: 0.1s; }
  .v3-reveal { opacity: 1 !important; transform: none !important; }
  .v3-card-urgency .v3-urgency-dot { animation: none; }
  .v3-sticky-cta { transition: none; }
}


/* ═══════════════════════════════════════════════════
   2026 ECOMMERCE CONVERSION FEATURES
   ═══════════════════════════════════════════════════ */

/* ── 1. URGENCY & SCARCITY SIGNALS ── */
.v3-card-urgency {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #C44;
}
.v3-urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C44;
  animation: v3-urgency-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes v3-urgency-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.v3-card-shipping {
  font-size: 10px;
  color: var(--v3-sage);
  margin-top: 3px;
  font-weight: 500;
}

/* ── 2. STICKY MOBILE CTA BAR ── */
.v3-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 10px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.v3-sticky-cta.visible {
  transform: translateY(0);
}
.v3-sticky-info {
  flex: 1;
  min-width: 0;
}
.v3-sticky-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--v3-text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-sticky-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--v3-gold);
}
.v3-sticky-btn {
  padding: 12px 24px;
  background: var(--v3-void);
  color: var(--v3-cream);
  border: none;
  border-radius: 10px;
  font-family: var(--v3-font-b);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--v3-ease);
}
.v3-sticky-btn:hover {
  background: var(--v3-gold);
  color: var(--v3-void);
}
@media (min-width: 769px) {
  .v3-sticky-cta { display: none !important; }
}
@media (max-width: 768px) {
  .v3-sticky-cta { display: flex; }
  .v3-cart-fab { bottom: 68px; }
}

/* ── 3. BNPL DISPLAY ── */
.v3-card-bnpl {
  font-size: 10px;
  color: var(--v3-violet);
  margin-top: 4px;
  font-weight: 500;
}
.v3-pdp-bnpl {
  font-size: 13px;
  color: var(--v3-violet);
  padding: 10px 14px;
  background: rgba(139,109,181,0.06);
  border: 1px solid rgba(139,109,181,0.12);
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ── 4. WISHLIST HEART ── */
.v3-card-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--v3-text-light);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--v3-ease);
  z-index: 5;
}
.v3-card:hover .v3-card-wish {
  opacity: 1;
  transform: scale(1);
}
.v3-card-wish.active {
  opacity: 1;
  transform: scale(1);
  color: #E74C5E;
  background: rgba(231,76,94,0.1);
}
.v3-card-wish:hover {
  transform: scale(1.15);
}
/* Move badge to left when wishlist heart is present */
.v3-card-badge-bs,
.v3-card-badge-new {
  right: auto;
  left: 14px;
}

/* ── 5. SCROLL REVEAL ANIMATION ── */
.v3-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.v3-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── 6. RECENTLY VIEWED CAROUSEL ── */
.v3-rv-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  scrollbar-width: none;
}
.v3-rv-scroll::-webkit-scrollbar { display: none; }
.v3-rv-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: var(--v3-warm-cream);
  border-radius: var(--v3-radius-md);
  overflow: hidden;
  border: 1px solid var(--v3-card-border);
  cursor: pointer;
  transition: all 0.3s var(--v3-ease);
}
.v3-rv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v3-shadow-sm);
}
.v3-rv-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--v3-cream);
}
.v3-rv-body {
  padding: 10px 12px 12px;
}
.v3-rv-name {
  font-family: var(--v3-font-h);
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-rv-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--v3-text-dark);
  margin-top: 4px;
}

/* ── 7. FOCUS STYLES (ACCESSIBILITY) ── */
.v3-card:focus-visible,
.v3-intent-pill:focus-visible,
.v3-hero-cta:focus-visible,
.v3-card-add:focus-visible,
.v3-bundle-add:focus-visible,
.v3-lb-cta:focus-visible,
.v3-card-wish:focus-visible,
.v3-sticky-btn:focus-visible {
  outline: 2px solid var(--v3-gold);
  outline-offset: 2px;
}
.v3-pdp-modal:focus-visible {
  outline: none;
}

/* ── 8. PERFORMANCE: content-visibility ── */
#v3-journey,
#v3-usp,
#v3-story,
#v3-reviews,
#v3-newsletter {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ── FOOTER TEXT WHITE OVERRIDE ──
   .v3-shop body color (#2C2520) cascades into the shared footer.
   Force all footer text back to white. */
.v3-shop .ak-unified-footer { color: #fff; }
.v3-shop .ak-unified-footer .foot-cols a { color: rgba(255,255,255,0.75); }
.v3-shop .ak-unified-footer .foot-cols a:hover { color: #fff; }
.v3-shop .ak-unified-footer .foot-cols h4 { color: rgba(255,255,255,0.85); }
.v3-shop .ak-unified-footer .foot-tagline { color: rgba(255,255,255,0.7); }
.v3-shop .ak-unified-footer .foot-brand p { color: rgba(255,255,255,0.75); }
.v3-shop .ak-unified-footer .foot-trust-item { color: rgba(255,255,255,0.65); }
.v3-shop .ak-unified-footer .foot-bottom p { color: rgba(255,255,255,0.55); }
.v3-shop .ak-unified-footer .foot-social a { color: rgba(255,255,255,0.55); }

/* ═══════════════════════════════════════════════════
   BRAND COHESION — Cosmic Strip
   Forces cosmic dark frame around warm shop interior
   ═══════════════════════════════════════════════════ */

/* Cosmic dark trust strip */
.v3-cosmic-strip {
  background: linear-gradient(90deg, #0A0810, #12082A, #0A0810);
  color: rgba(200, 169, 110, 0.7);
  font-family: var(--v3-font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.v3-cosmic-strip .v3-strip-sep {
  color: rgba(124, 58, 237, 0.3);
  margin: 0 6px;
}
@media (max-width: 600px) {
  .v3-cosmic-strip { font-size: 9px; letter-spacing: 1px; padding: 8px 12px; }
}
