/* ==========================================================================
   AGOBUNS OFFICIAL STORE - LUXURY WHITE THEME & FRONT-FORWARD ANIMATIONS
   ========================================================================== */

:root {
  /* Clean White & Black Color Palette */
  --bg-pitch: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --bg-glass: rgba(255, 255, 255, 0.94);
  
  --accent-orange: #FF5500;
  --accent-orange-glow: rgba(255, 85, 0, 0.35);
  --accent-amber: #F59E0B;
  --accent-green: #10B981;
  --accent-cyan: #06B6D4;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-subtle: #94A3B8;
  
  --border-subtle: #E2E8F0;
  --border-hover: #FF5500;
  --border-active: #FF5500;
  
  /* Typography */
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'Geist Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 25px var(--accent-orange-glow);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.text-gradient {
  background: linear-gradient(135deg, #0F172A 0%, #FF5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   1. Announcement Bar (Full Width)
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #FF5500 0%, #E64A19 50%, #FF8A00 100%);
  color: #FFFFFF;
  padding: 10px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  letter-spacing: 0.02em;
  width: 100%;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.live-pill {
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #10B981; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.countdown-timer {
  display: inline-flex;
  gap: 6px;
  font-family: var(--font-mono);
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
}

.time-block b {
  font-weight: 700;
}

.announcement-btn {
  background: #0F172A;
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.announcement-btn:hover {
  background: #FFFFFF;
  color: #0F172A;
  transform: translateY(-1px);
}

.announcement-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 1.3rem;
  opacity: 0.8;
}

.announcement-close:hover {
  opacity: 1;
}

/* ==========================================================================
   2. Full-Width Edge-To-Edge Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  width: 100%;
  transition: var(--transition);
}

.header-container-full {
  width: 100%;
  max-width: 100%;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  background: transparent;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent;
  filter: brightness(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
  opacity: 0.85;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 480px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-heading {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.dropdown-column a {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-column a:hover {
  background: var(--bg-surface);
  color: var(--text-main);
  transform: translateX(3px);
}

.dropdown-column a i {
  color: var(--accent-orange);
  width: 16px;
}

.nav-featured-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.nav-featured-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 6px 0;
  color: var(--text-main);
}

.nav-featured-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.badge-hot {
  background: var(--accent-orange);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.free-pill-link {
  position: relative;
}

.free-spark {
  background: linear-gradient(135deg, #FF5500, #FF8A00);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

/* Header Actions & Social Mini */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social-mini a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.header-social-mini a:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.currency-selector {
  position: relative;
}

.currency-btn {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
}

.currency-btn:hover {
  color: var(--text-main);
  border-color: var(--text-subtle);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.currency-selector.active .currency-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-dropdown button {
  text-align: left;
  color: var(--text-muted);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  border-radius: 4px;
}

.currency-dropdown button:hover {
  background: var(--bg-surface);
  color: var(--text-main);
}

.btn-header-cta {
  background: var(--accent-orange);
  color: #FFFFFF;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  background: #FF6611;
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.4);
}

.cart-trigger-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-trigger-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav-drawer {
  display: none;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.mobile-link {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.05rem;
}

.mobile-social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-social-row a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   3. Hero Section & Atmospheric Blurred Background
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-blurred-bg {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img-blurred {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.96) saturate(1.25);
  transform: scale(1.1);
  opacity: 0.7;
  animation: heroCinematicMotion 24s ease-in-out infinite alternate;
}

@keyframes heroCinematicMotion {
  0% { transform: scale(1.08) translate(0, 0); }
  50% { transform: scale(1.14) translate(-1%, -1%); }
  100% { transform: scale(1.1) translate(1%, 0.5%); }
}

.hero-glass-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 75%, #FFFFFF 100%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #FF5500;
  top: -50px;
  left: 10%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #00E5FF;
  bottom: 0;
  right: 10%;
  opacity: 0.15;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
  100% { transform: translateY(10px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

/* ==========================================================================
   3D HERO SHOWCASE STAGE (ANIMATES STRAIGHT FORWARD TO FRONT)
   ========================================================================== */
.hero-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 420px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-3d-wrap {
  position: relative;
  width: 250px;
  height: 330px;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(8deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover & Active Animate Straight Front */
.box-3d-wrap:hover {
  transform: rotateY(-10deg) rotateX(4deg) translateY(-14px) scale(1.06);
}

.box-3d-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.box-3d-cover-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.box-3d-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.box-3d-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: #0F172A;
  transform-origin: left;
  transform: rotateY(-90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  padding: 10px 0;
}

.box-3d-shadow {
  position: absolute;
  bottom: -30px;
  left: 5%;
  width: 90%;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotateX(90deg);
  filter: blur(8px);
  pointer-events: none;
}

/* Floating Interactive Kit Badges */
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 10;
}

.floating-badge:hover {
  transform: translateY(-6px) scale(1.08);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 30px var(--accent-orange-glow);
}

.floating-badge:active {
  transform: scale(0.96);
}

.badge-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.floating-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.1;
}

.floating-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.badge-1 { top: 10%; left: 0%; animation: floatAnim 6s ease-in-out infinite; }
.badge-2 { top: 70%; left: -5%; animation: floatAnim 7s ease-in-out infinite 1s; }
.badge-3 { top: 15%; right: 0%; animation: floatAnim 6.5s ease-in-out infinite 0.5s; }
.badge-4 { top: 75%; right: -5%; animation: floatAnim 8s ease-in-out infinite 1.5s; }

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

/* Right Column: Text & Audio Player */
.hero-content-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.25);
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Hero Audio Widget */
.hero-audio-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.audio-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.audio-track-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.track-indicator {
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.audio-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.audio-wave-bars span {
  width: 3px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.audio-wave-bars.playing span {
  animation: waveAnimation 1s infinite ease-in-out;
}

.audio-wave-bars.playing span:nth-child(2) { animation-delay: 0.1s; }
.audio-wave-bars.playing span:nth-child(3) { animation-delay: 0.2s; }
.audio-wave-bars.playing span:nth-child(4) { animation-delay: 0.3s; }
.audio-wave-bars.playing span:nth-child(5) { animation-delay: 0.4s; }
.audio-wave-bars.playing span:nth-child(6) { animation-delay: 0.15s; }

@keyframes waveAnimation {
  0%, 100% { height: 4px; }
  50% { height: 18px; }
}

/* Hero Kit Switcher Tabs */
.hero-kit-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hero-kit-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-kit-pill:hover {
  border-color: var(--accent-orange);
  color: var(--text-main);
}

.hero-kit-pill.active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--accent-orange-glow);
}

.hero-kit-pill.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-kit-pill.disabled:hover {
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.audio-track-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.track-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.track-btn:hover {
  background: #FFFFFF;
  color: var(--text-main);
  border-color: var(--text-subtle);
}

.track-btn.active {
  background: rgba(255, 85, 0, 0.1);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange-glow);
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-orange);
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--accent-orange-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #FF6611;
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--text-subtle);
  transform: translateY(-2px);
}

.btn-micro {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 600;
}

.btn-micro:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* Stats Bar */
.hero-stats {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* ==========================================================================
   4. FEATURED PRODUCT SPOTLIGHT (3D Box Showcase)
   ========================================================================== */
.featured-spotlight-section {
  padding: 40px 0 60px;
  background: var(--bg-surface);
}

.featured-banner-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.featured-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.featured-status-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: center;
}

.featured-art-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 85, 0, 0.12) 0%, #F8FAFC 80%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.featured-image-stage:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 0 25px rgba(255, 85, 0, 0.2);
}

.featured-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-image-stage:hover .featured-cover-img {
  transform: scale(1.02);
}

.featured-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px var(--accent-orange-glow);
  transition: all 0.25s ease;
  z-index: 10;
}

.featured-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #FF6611;
}

.featured-info-column {
  display: flex;
  flex-direction: column;
}

.featured-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 6px 0 14px;
  line-height: 1.2;
  color: var(--text-main);
}

.featured-description {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Dedicated Audio Previews Player Card */
.featured-player-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.featured-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.f-track-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 700;
}

.f-track-meta i {
  color: var(--accent-orange);
}

.featured-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}

.featured-wave-bars span {
  width: 3px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.featured-wave-bars.playing span {
  animation: waveAnimation 1s infinite ease-in-out;
}

.featured-wave-bars.playing span:nth-child(2) { animation-delay: 0.1s; }
.featured-wave-bars.playing span:nth-child(3) { animation-delay: 0.2s; }
.featured-wave-bars.playing span:nth-child(4) { animation-delay: 0.3s; }
.featured-wave-bars.playing span:nth-child(5) { animation-delay: 0.4s; }
.featured-wave-bars.playing span:nth-child(6) { animation-delay: 0.15s; }

.featured-track-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.f-track-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.f-track-btn:hover {
  background: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--text-subtle);
}

.f-track-btn.active {
  background: rgba(255, 85, 0, 0.1);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.f-track-btn.active i {
  color: var(--accent-orange);
}

.featured-scrubber-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-play-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.f-time-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.f-progress-track {
  flex-grow: 1;
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.f-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-orange);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.featured-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.featured-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.featured-old-price {
  font-size: 1.1rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.featured-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
}

.featured-save-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.featured-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   5. Products Catalogue Grid & Front-Forward Cards (No sideways rotation)
   ========================================================================== */
.products-section {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--text-main);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
}

.tab-btn:hover {
  color: var(--text-main);
  border-color: var(--text-subtle);
}

.tab-btn.active {
  background: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

/* Products Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Product Card - Animates Straight Forward to the Front */
.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

/* Lift and scale straight forward on hover - NO sideways rotation */
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--border-hover);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12), var(--shadow-glow);
}

.product-card:active {
  transform: scale(0.98);
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, rgba(255, 85, 0, 0.08) 0%, var(--bg-surface) 80%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* Kit Image Animates Straight Front */
.card-cover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.14));
}

.product-card:hover .card-cover-img {
  transform: scale(1.08) translateY(-4px); /* Clean front zoom without sideways tilt */
}

.card-art-fallback {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.card-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.05em;
}

.card-tag-badge.badge-sale {
  background: #10B981;
  color: #FFFFFF;
}

.card-tag-badge.badge-bundle {
  background: #0284C7;
  color: #FFFFFF;
}

.card-audio-overlay-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--accent-orange);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.product-card:hover .card-audio-overlay-btn {
  opacity: 1;
  transform: scale(1);
}

.card-audio-overlay-btn:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
}

.card-details {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #FFFFFF;
}

.card-category {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.25;
}

.card-meta-bullets {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Card Mini Audio Preview Row */
.card-mini-previews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.mini-preview-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-preview-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.mini-chip-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.mini-chip-btn i {
  color: var(--accent-orange);
  font-size: 0.65rem;
}

.mini-chip-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
}

.mini-chip-btn:hover i {
  color: #FFFFFF;
}

.mini-chip-pending {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-subtle);
  font-style: italic;
}

.qv-track-btn:hover {
  background: #FFFFFF !important;
  border-color: var(--accent-orange) !important;
  box-shadow: 0 2px 8px var(--accent-orange-glow);
  transform: translateY(-1px);
}

.qv-track-btn:active {
  transform: scale(0.97);
}

.card-footer-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.card-old-price {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-decoration: line-through;
}

.card-current-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.card-btn-add {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-btn-add:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
}

/* ==========================================================================
   6. Value Features Grid
   ========================================================================== */
.features-section {
  padding: 60px 0;
  background: var(--bg-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 85, 0, 0.08);
  color: var(--accent-orange);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   7. Free Starter Pack Lead Magnet
   ========================================================================== */
.free-bundle-section {
  padding: 60px 0;
  background: #FFFFFF;
}

.free-box {
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.06) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.free-content {
  max-width: 650px;
  margin: 0 auto;
}

.free-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--text-main);
}

.free-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.free-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 16px;
}

.free-form input {
  flex-grow: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 14px 20px;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

.free-form input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange-glow);
}

.form-feedback {
  min-height: 24px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.free-subtext {
  font-size: 0.78rem;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   8. FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-question i {
  color: var(--accent-orange);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ==========================================================================
   8B. Full Kit Bundle Section
   ========================================================================== */
.vault-bundle-section {
  padding: 80px 0;
  background: var(--bg-surface);
}

.vault-bundle-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.vault-bundle-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.vault-bundle-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin: 12px 0 8px;
  letter-spacing: -0.02em;
}

.vault-bundle-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.vault-covers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.vault-cover-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  transition: var(--transition);
}

.vault-cover-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: 0 10px 24px rgba(255, 85, 0, 0.12);
}

.vault-cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  margin-bottom: 12px;
}

.vault-cover-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vault-cover-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.vault-cover-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.vault-bundle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 20px;
}

.vault-pricing-summary {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.vault-price-breakdown {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vault-price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.vault-price-regular {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.vault-bundle-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vault-price-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.vault-cta-btn {
  padding: 16px 36px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .vault-covers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vault-covers-grid {
    grid-template-columns: 1fr;
  }
  .vault-bundle-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .vault-pricing-summary {
    justify-content: center;
  }
}

/* ==========================================================================
   8C. About Ago Buns Section
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.about-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image-wrap:hover .about-hero-img {
  transform: scale(1.02);
}

.about-badge-flag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-quote-box {
  background: var(--bg-surface);
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.about-quote-lead {
  font-family: var(--font-mono);
  font-size: 0.9rem !important;
  color: var(--text-main) !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px !important;
}

.about-quote-highlight {
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--text-main) !important;
  line-height: 1.4 !important;
  margin-bottom: 0 !important;
}

.about-origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.25);
  color: var(--accent-orange);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.brand-col .footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.footer-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text-subtle);
  background: var(--bg-surface);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.payment-badges {
  display: flex;
  gap: 10px;
  font-size: 1.5rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   10. Cart Drawer Slide-Over (Clean White)
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #FFFFFF;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

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

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
}

.cart-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--text-main);
}

.cart-title-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close-btn {
  font-size: 1.6rem;
  color: var(--text-muted);
}

.cart-close-btn:hover {
  color: var(--text-main);
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
}

.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted);
}

.empty-cart-state i {
  font-size: 3rem;
  color: var(--accent-orange);
  opacity: 0.8;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.cart-item-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.cart-item-remove {
  color: var(--text-subtle);
  font-size: 0.8rem;
  margin-top: 6px;
  display: inline-block;
}

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

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-promo-box {
  display: flex;
  gap: 8px;
}

.cart-promo-box input {
  flex-grow: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text-main);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.cart-total-row .total-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-main);
}

.cart-guarantee {
  font-size: 0.72rem;
  color: var(--text-subtle);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   11. Quick View Modal (Clean White)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
  color: var(--text-muted);
  z-index: 10;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-body {
  padding: 36px;
}

/* ==========================================================================
   12. Global Bottom Audio Bar (Clean White)
   ========================================================================== */
.global-audio-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  z-index: 80;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
}

.global-audio-bar.active {
  transform: translateY(0);
}

.audio-bar-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.audio-bar-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.bar-play-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px var(--accent-orange-glow);
}

.bar-titles {
  display: flex;
  flex-direction: column;
}

.bar-titles strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-main);
}

.bar-titles span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.audio-bar-scrubber {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 540px;
}

.time-lbl {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.progress-track {
  flex-grow: 1;
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.progress-fill {
  width: 35%;
  height: 100%;
  background: var(--accent-orange);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.audio-bar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-bar-controls i {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.audio-bar-controls input[type="range"] {
  width: 70px;
  accent-color: var(--accent-orange);
}

/* ==========================================================================
   13. Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .header-container-full {
    padding: 0 24px;
  }
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content-col {
    text-align: center;
    align-items: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .featured-grid-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-action-bar {
    justify-content: center;
  }
  .featured-track-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container-full {
    padding: 0 16px;
  }
  .desktop-nav {
    display: none;
  }
  .header-social-mini {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .stat-divider {
    display: none;
  }
  .audio-track-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-banner-card {
    padding: 24px;
  }
  .featured-track-buttons {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .free-form {
    flex-direction: column;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .global-audio-bar {
    padding: 10px 14px;
  }
  .audio-bar-scrubber {
    display: none;
  }
  .hero-3d-stage {
    transform: scale(0.8);
    height: 340px;
  }
}

/* ==========================================================================
   14. BI-DIRECTIONAL SCROLL ANIMATIONS & DYNAMIC SCROLL SYSTEM
   ========================================================================== */

/* Top Real-Time Scroll Progress Indicator Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #FF5500 0%, #FF8A00 50%, #FF2E00 100%);
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.9), 0 0 4px rgba(245, 158, 11, 0.7);
  z-index: 99999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Dynamic Sticky Header on Scroll */
.site-header {
  transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.site-header.scrolled .header-container-full {
  height: 66px;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .brand-logo-img {
  height: 42px;
}

/* ScrollSpy Active Nav Link Indicator */
.nav-link.active-section,
.mobile-link.active-section {
  color: var(--accent-orange) !important;
  font-weight: 700;
  position: relative;
}

.nav-link.active-section::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
  border-radius: 2px;
  animation: navUnderlineSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navUnderlineSlide {
  from { width: 0; opacity: 0; }
  to { width: 100%; opacity: 1; }
}

/* Floating Scroll To Top Button with Animated Circular Progress Ring */
.scroll-top-btn {
  position: fixed;
  right: 28px;
  bottom: 86px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0F172A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              box-shadow 0.25s ease;
  cursor: pointer;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: var(--accent-orange);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(255, 85, 0, 0.4), 0 0 0 2px rgba(255, 85, 0, 0.3);
}

.scroll-top-btn svg.scroll-progress-ring {
  position: absolute;
  top: 2px;
  left: 2px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.scroll-top-btn circle.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 2.5;
}

.scroll-top-btn circle.ring-fill {
  fill: none;
  stroke: var(--accent-orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-top-btn:hover circle.ring-fill {
  stroke: #FFFFFF;
}

.scroll-top-btn i {
  font-size: 15px;
  transition: transform 0.25s ease;
  z-index: 1;
}

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

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (UP & DOWN SCROLLING)
   ========================================================================== */

/* Base Hidden States */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-45px) rotate(-1deg);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px) rotate(1deg);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(28px);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed Active States */
.reveal-on-scroll.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-scale.is-revealed,
.reveal-fade.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
  filter: blur(0px);
}

/* Stagger Groups */
.stagger-group .stagger-item {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(3px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.stagger-group.is-revealed .stagger-item,
.stagger-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger Delays for child items */
.stagger-group.is-revealed .stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-group.is-revealed .stagger-item:nth-child(2) { transition-delay: 0.12s; }
.stagger-group.is-revealed .stagger-item:nth-child(3) { transition-delay: 0.19s; }
.stagger-group.is-revealed .stagger-item:nth-child(4) { transition-delay: 0.26s; }
.stagger-group.is-revealed .stagger-item:nth-child(5) { transition-delay: 0.33s; }
.stagger-group.is-revealed .stagger-item:nth-child(6) { transition-delay: 0.40s; }
.stagger-group.is-revealed .stagger-item:nth-child(7) { transition-delay: 0.47s; }
.stagger-group.is-revealed .stagger-item:nth-child(8) { transition-delay: 0.54s; }

/* Continuous Fluid Ambient Animations */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.floating-badge {
  animation: floatSlow 4.5s ease-in-out infinite;
}
.floating-badge.badge-1 { animation-delay: 0s; }
.floating-badge.badge-2 { animation-delay: 1.1s; }
.floating-badge.badge-3 { animation-delay: 2.2s; }
.floating-badge.badge-4 { animation-delay: 3.3s; }

.glow-orb {
  animation: glowPulse 8s ease-in-out infinite alternate;
}
.glow-orb.orb-2 {
  animation-delay: -4s;
}

/* Subtle Interactive Lift on Product Card Hover */
.product-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08), 0 0 20px rgba(255, 85, 0, 0.15);
  border-color: var(--accent-orange);
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade,
  .stagger-group .stagger-item,
  .floating-badge,
  .glow-orb {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

