/*
 * Vookum Diamond District - Main Theme Stylesheet
 * Luxury watch store with dark/light mode
 */

/* ============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */

:root {
  /* Purple Palette — extracted from Vookum logo (#9c15ed) */
  --purple-50: #f5eefe;
  --purple-100: #e8d7f2;
  --purple-200: #d8b4fe;
  --purple-300: #c667ff;
  --purple-400: #9c15ed;
  --purple-500: #8a12d4;
  --purple-600: #7d1db7;
  --purple-700: #661a93;
  --purple-800: #4a156b;
  --purple-900: #35104d;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Sizing */
  --container-max: 1400px;
  --container-padding: 24px;
  --header-height: 80px;
  --top-bar-height: 40px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 200ms var(--ease-out-quart);
  --transition-base: 350ms var(--ease-out-expo);
  --transition-slow: 600ms var(--ease-out-expo);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ---- DARK THEME (Default) ---- */
[data-theme="dark"] {
  --color-bg: #0a0a0d;
  --color-bg-elevated: #111114;
  --color-bg-card: #161618;
  --color-bg-card-hover: #1c1c20;
  --color-bg-overlay: rgba(0, 0, 0, 0.85);
  --color-bg-glass: rgba(255, 255, 255, 0.04);
  --color-bg-glass-hover: rgba(255, 255, 255, 0.08);

  --color-text: #f0edf5;
  --color-text-secondary: #a09bad;
  --color-text-muted: #6b677a;
  --color-text-inverse: #0a0a0d;

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  --color-border-purple: rgba(156, 21, 237, 0.3);

  --color-accent: #9c15ed;
  --color-accent-hover: #b44dff;
  --color-accent-glow: rgba(156, 21, 237, 0.15);
  --color-accent-text: #ffffff;

  --color-surface-1: #111114;
  --color-surface-2: #1a1a1e;
  --color-surface-3: #222226;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-purple: 0 4px 20px rgba(156, 21, 237, 0.15);
  --shadow-purple-lg: 0 8px 40px rgba(156, 21, 237, 0.2);

  --gradient-hero: linear-gradient(135deg, #0a0a0d 0%, #150a1f 50%, #0a0a0d 100%);
  --gradient-card: linear-gradient(145deg, var(--color-bg-card) 0%, #121016 100%);
  --gradient-purple: linear-gradient(135deg, #9c15ed 0%, #c667ff 50%, #9c15ed 100%);
  --gradient-purple-text: linear-gradient(135deg, #9c15ed, #c667ff, #9c15ed);
}

/* ---- LIGHT THEME ---- */
[data-theme="light"] {
  --color-bg: #faf9fc;
  --color-bg-elevated: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f7f5fa;
  --color-bg-overlay: rgba(255, 255, 255, 0.9);
  --color-bg-glass: rgba(0, 0, 0, 0.03);
  --color-bg-glass-hover: rgba(0, 0, 0, 0.06);

  --color-text: #1a181f;
  --color-text-secondary: #5c5863;
  --color-text-muted: #99959e;
  --color-text-inverse: #faf9fc;

  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.15);
  --color-border-purple: rgba(125, 29, 183, 0.3);

  --color-accent: #7d1db7;
  --color-accent-hover: #661a93;
  --color-accent-glow: rgba(125, 29, 183, 0.1);
  --color-accent-text: #ffffff;

  --color-surface-1: #f5f4f8;
  --color-surface-2: #eeedf2;
  --color-surface-3: #e5e4ea;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-purple: 0 4px 20px rgba(125, 29, 183, 0.1);
  --shadow-purple-lg: 0 8px 40px rgba(125, 29, 183, 0.12);

  --gradient-hero: linear-gradient(135deg, #f5f4f8 0%, #f8f5ff 50%, #f5f4f8 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fbf9ff 100%);
  --gradient-purple: linear-gradient(135deg, #7d1db7 0%, #9c15ed 50%, #7d1db7 100%);
  --gradient-purple-text: linear-gradient(135deg, #661a93, #7d1db7, #661a93);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--color-accent);
  color: var(--color-accent-text);
}

/* ============================================
   LAYOUT
   ============================================ */

.vookum-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.vookum-main {
  min-height: 60vh;
}

/* ============================================
   PRELOADER
   ============================================ */

.vookum-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.vookum-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-diamond {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--purple-400);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-diamond svg {
  width: 100%;
  height: 100%;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.3em;
  color: var(--purple-400);
  display: block;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   SPARKLE CANVAS
   ============================================ */

.sparkle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

[data-theme="light"] .sparkle-canvas {
  opacity: 0.3;
}

/* ============================================
   TOP BAR
   ============================================ */

.vookum-top-bar {
  height: var(--top-bar-height);
  background: var(--color-surface-1);
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  position: relative;
  z-index: 1000;
  transition: background-color var(--transition-slow), border-color var(--transition-slow);
}

.vookum-top-bar .vookum-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: var(--color-accent);
}

.top-bar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  max-width: 600px;
}

.top-bar-marquee {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.top-bar-menu {
  display: flex;
  gap: 16px;
}

.top-bar-menu a {
  color: var(--color-text-secondary);
  font-size: 12px;
  transition: color var(--transition-fast);
}

.top-bar-menu a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .top-bar-left, .top-bar-right { display: none; }
  .top-bar-center { position: static; transform: none; max-width: 100%; }
}

/* ============================================
   HEADER
   ============================================ */

.vookum-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

[data-theme="dark"] .vookum-header {
  background: rgba(10, 10, 10, 0.9);
}

[data-theme="light"] .vookum-header {
  background: rgba(250, 249, 246, 0.9);
}

.vookum-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img,
.header-logo .custom-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.logo-link:hover .logo-img,
.logo-link:hover .custom-logo {
  transform: scale(1.03);
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-menu > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition-fast);
}

.primary-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
  color: var(--color-accent);
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.primary-menu > li {
  position: relative;
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.primary-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.primary-menu .sub-menu a:hover {
  color: var(--color-accent);
  padding-left: 24px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.header-action-btn:hover {
  color: var(--color-accent);
  background: var(--color-bg-glass);
}

.vookum-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  line-height: 1;
  padding: 0 4px;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  overflow: hidden;
}

.theme-icon {
  position: absolute;
  transition: all var(--transition-base);
}

[data-theme="dark"] .theme-icon--sun {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme="dark"] .theme-icon--moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="light"] .theme-icon--sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

[data-theme="light"] .theme-icon--moon {
  opacity: 1;
  transform: rotate(0deg);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.hamburger {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */

.vookum-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color-bg-overlay);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.search-overlay-inner {
  width: 100%;
  max-width: 700px;
  padding: 40px;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition-slow);
}

.vookum-search-overlay.active .search-overlay-inner {
  transform: translateY(0);
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.search-close:hover {
  color: var(--color-accent);
  background: var(--color-bg-glass);
}

.search-label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.search-input-wrap {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 20px 60px 20px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  border-color: var(--color-accent);
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

.search-submit {
  position: absolute;
  right: 0;
  bottom: 12px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.search-submit:hover {
  color: var(--color-accent);
}

.search-suggestions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.search-suggestions span {
  color: var(--color-text-muted);
}

.search-suggestions a {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.search-suggestions a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================
   MOBILE NAV
   ============================================ */

.vookum-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 85vw;
  height: 100vh;
  z-index: 2001;
  background: var(--color-bg-elevated);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.vookum-mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.mobile-logo {
  height: 40px;
  width: auto;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--color-bg-glass);
  color: var(--color-accent);
}

.mobile-nav-body {
  flex: 1;
  padding: 20px 0;
}

.mobile-menu > li > a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.mobile-menu > li > a:hover {
  color: var(--color-accent);
  padding-left: 30px;
}

.mobile-menu .sub-menu a {
  padding: 10px 24px 10px 40px;
  font-size: 14px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
}

.mobile-nav-phone {
  margin-top: 16px;
  text-align: center;
}

.mobile-nav-phone a {
  color: var(--color-accent);
  font-weight: 600;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

/* ============================================
   BUTTONS
   ============================================ */

.vookum-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.vookum-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.vookum-btn:hover::before {
  transform: translateX(100%);
}

.vookum-btn--primary {
  background: var(--gradient-purple);
  color: #ffffff;
  box-shadow: var(--shadow-purple);
}

.vookum-btn--primary:hover {
  box-shadow: var(--shadow-purple-lg);
  transform: translateY(-2px);
}

.vookum-btn--outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.vookum-btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-accent-text);
  transform: translateY(-2px);
}

.vookum-btn--glass {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vookum-btn--glass:hover {
  background: var(--color-bg-glass-hover);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.vookum-btn--white {
  background: #fff;
  color: #0a0a0a;
}

.vookum-btn--white:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.vookum-btn--lg {
  padding: 18px 40px;
  font-size: 14px;
}

.vookum-btn svg {
  transition: transform var(--transition-fast);
}

.vookum-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.vookum-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

[data-theme="dark"] .hero-bg {
  background: radial-gradient(ellipse at 30% 50%, rgba(156, 21, 237, 0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(156, 21, 237, 0.03) 0%, transparent 50%),
              var(--gradient-hero);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-accent);
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--color-border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

.hero-scroll-indicator span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-accent);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================
   MARQUEE BANNER
   ============================================ */

.vookum-marquee {
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-bg);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: marqueeFlow 40s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.marquee-diamond {
  color: var(--color-accent);
  font-size: 14px;
}

@keyframes marqueeFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   COLLECTIONS GRID
   ============================================ */

.vookum-collections {
  padding: 100px 0;
}

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

.collection-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.collection-card--large {
  grid-row: span 1;
}

.collection-card-image {
  position: absolute;
  inset: 0;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.08);
}

.collection-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
}

[data-theme="dark"] .collection-card-placeholder {
  background: linear-gradient(135deg, #17141e 0%, #100e16 100%);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  transition: opacity var(--transition-base);
}

[data-theme="light"] .collection-card-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 1;
  color: #fff;
}

.collection-card-count {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.collection-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 12px;
}

.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.collection-card:hover .collection-card-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-card { aspect-ratio: 3 / 4; }
}

@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vookum-featured-products {
  padding: 100px 0;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.product-card:hover {
  border-color: var(--color-border-purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-6px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface-1);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-1);
  color: var(--color-text-muted);
}

/* Product Badges */
.vookum-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vookum-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.vookum-badge--sale {
  background: #e74c3c;
  color: #fff;
}

.vookum-badge--featured {
  background: var(--color-accent);
  color: #ffffff;
}

.vookum-badge--new {
  background: #2ecc71;
  color: #fff;
}

/* Product Actions */
.product-card-actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 2;
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-action-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.product-action-btn:hover {
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

/* Product Info */
.product-card-info {
  padding: 20px;
}

.product-card-category {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-card-title a:hover {
  color: var(--color-accent);
}

.product-card-price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.product-card-price del {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 14px;
  margin-right: 8px;
}

.product-card-price ins {
  text-decoration: none;
  color: var(--color-accent);
}

/* Star Rating */
.vookum-star-rating {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}

.vookum-star-rating .star {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .featured-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .featured-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .featured-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-info { padding: 12px; }
  .product-card-title { font-size: 14px; }
}

/* ============================================
   PARALLAX BANNER
   ============================================ */

.vookum-parallax-banner {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -50px;
  background: linear-gradient(135deg, #17141e 0%, #0a090d 50%, #15101f 100%);
  z-index: 0;
}

[data-theme="light"] .parallax-bg {
  background: linear-gradient(135deg, #28243a 0%, #1a1828 50%, #28203a 100%);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: #f0edf5;
}

.parallax-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 20px;
}

.parallax-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.parallax-title em {
  font-style: italic;
  color: var(--purple-400);
}

.parallax-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 237, 230, 0.7);
  margin-bottom: 40px;
}

/* ============================================
   EDUCATION / WHY VOOKUM
   ============================================ */

.vookum-education {
  padding: 100px 0;
}

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

.education-card {
  position: relative;
  padding: 40px 30px;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.education-card:hover {
  border-color: var(--color-border-purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.education-card-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
}

.education-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--color-accent);
}

.education-card-icon svg {
  width: 100%;
  height: 100%;
}

.education-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.education-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

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

@media (max-width: 480px) {
  .education-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.vookum-testimonials {
  padding: 100px 0;
  background: var(--color-surface-1);
  transition: background-color var(--transition-slow);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 40px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-border-purple);
  box-shadow: var(--shadow-purple);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-location {
  font-size: 13px;
  color: var(--color-text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.testimonial-nav-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.testimonial-dot.active {
  width: 24px;
  background: var(--color-accent);
}

@media (max-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 100%; }
}

/* ============================================
   GALLERY / INSTAGRAM
   ============================================ */

.vookum-gallery {
  padding: 100px 0 0;
}

.vookum-gallery .section-header {
  padding: 0 var(--container-padding);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-1);
  color: var(--color-text-muted);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* ============================================
   NEWSLETTER
   ============================================ */

.vookum-newsletter {
  padding: 100px 0;
}

.newsletter-inner {
  position: relative;
  padding: 60px;
  background: var(--gradient-card);
  border: 1px solid var(--color-border-purple);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--color-accent-glow) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-sparkle {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.newsletter-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin-bottom: 12px;
}

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

.newsletter-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-bg);
  transition: border-color var(--transition-fast);
}

.newsletter-input-group:focus-within {
  border-color: var(--color-accent);
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  outline: none;
}

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

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--gradient-purple);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .newsletter-inner { padding: 40px 24px; }
  .newsletter-input-group { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-btn { justify-content: center; }
}

/* ============================================
   FOOTER
   ============================================ */

.vookum-footer {
  background: var(--color-surface-1);
  transition: background-color var(--transition-slow);
}

/* Trust Bar */
.footer-trust-bar {
  padding: 50px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.trust-badge-icon svg {
  width: 100%;
  height: 100%;
}

.trust-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-badge-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; }
}

/* Footer Main */
.footer-main {
  padding: 60px 0;
}

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

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.footer-hours {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Social Links */
.vookum-social-links {
  display: flex;
  gap: 10px;
}

.vookum-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.vookum-social-link svg {
  width: 16px;
  height: 16px;
}

.vookum-social-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

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

.footer-copyright {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-tagline {
  color: var(--color-accent);
  margin-left: 8px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

.footer-payment-icons {
  display: flex;
  gap: 8px;
  color: var(--color-text-muted);
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   BACK TO TOP
   ============================================ */

.vookum-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-purple);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.vookum-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vookum-back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple-lg);
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */

.vookum-quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.vookum-quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.quick-view-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-slow);
}

.vookum-quick-view-modal.active .quick-view-content {
  transform: scale(1) translateY(0);
}

.quick-view-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg-glass);
  z-index: 1;
  transition: all var(--transition-fast);
}

.quick-view-close:hover {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

.quick-view-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.quick-view-gallery {
  background: var(--color-surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.quick-view-gallery img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.quick-view-info {
  padding: 40px;
  overflow-y: auto;
}

.quick-view-info h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.quick-view-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.quick-view-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .quick-view-body { grid-template-columns: 1fr; }
  .quick-view-gallery { max-height: 250px; }
}

/* ============================================
   MINI CART DRAWER
   ============================================ */

.vookum-mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  z-index: 2001;
  background: var(--color-bg-elevated);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}

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

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

.mini-cart-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.mini-cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mini-cart-close:hover {
  background: var(--color-bg-glass);
  color: var(--color-accent);
}

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

/* ============================================
   BREADCRUMBS
   ============================================ */

.vookum-breadcrumbs {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
}

.vookum-breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.vookum-breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumb-sep {
  display: inline-flex;
  margin: 0 8px;
  color: var(--color-accent);
}

/* ============================================
   CONTENT PAGES
   ============================================ */

.vookum-page,
.vookum-single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
}

.page-content,
.single-content {
  font-size: 17px;
  line-height: 1.8;
}

.page-content h2, .single-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 40px 0 16px;
}

.page-content h3, .single-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 32px 0 12px;
}

.page-content p, .single-content p {
  margin-bottom: 20px;
}

.page-content a, .single-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content img, .single-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.page-content blockquote, .single-content blockquote {
  margin: 24px 0;
  padding: 24px 30px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-glass);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: italic;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.post-card:hover {
  border-color: var(--color-border-purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.post-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card-content {
  padding: 24px;
}

.post-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.post-card-meta a {
  color: var(--color-accent);
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.post-card-title a:hover {
  color: var(--color-accent);
}

.post-card-excerpt {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
}

/* Single Post */
.single-header {
  text-align: center;
  margin-bottom: 40px;
}

.single-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.single-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
}

.single-excerpt {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-top: 16px;
  font-family: var(--font-accent);
  font-style: italic;
}

.single-featured-image {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.single-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.single-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.single-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-link {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  transition: all var(--transition-fast);
}

.tag-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.single-share {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.single-share a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.single-share a:hover {
  color: var(--color-accent);
}

/* Pagination */
.vookum-pagination {
  margin-top: 50px;
  text-align: center;
}

.vookum-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vookum-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.vookum-pagination .page-numbers:hover,
.vookum-pagination .page-numbers.current {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.vookum-pagination .page-numbers.current {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

/* 404 Page */
.vookum-404 {
  text-align: center;
  padding: 100px 0;
}

.error-404-diamond {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  color: var(--color-accent);
  animation: float 3s ease-in-out infinite;
}

.error-404-diamond svg {
  width: 100%;
  height: 100%;
}

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

.error-404-title {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  background: var(--gradient-purple-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-404-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ============================================
   ANIMATIONS (data-animate elements)
   ============================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
[data-animate].in-view .education-card:nth-child(1),
[data-animate].in-view .trust-badge:nth-child(1) { transition-delay: 0s; }
[data-animate].in-view .education-card:nth-child(2),
[data-animate].in-view .trust-badge:nth-child(2) { transition-delay: 0.1s; }
[data-animate].in-view .education-card:nth-child(3),
[data-animate].in-view .trust-badge:nth-child(3) { transition-delay: 0.2s; }
[data-animate].in-view .education-card:nth-child(4),
[data-animate].in-view .trust-badge:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Content area */
.vookum-content-area {
  padding: 40px 0;
}

/* Post navigation */
.post-navigation {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.nav-subtitle {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.nav-title {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.post-navigation a:hover .nav-title {
  color: var(--color-accent);
}

/* ============================================
   SHOP LAYOUT
   ============================================ */

.shop-layout {
  display: flex;
  gap: 40px;
  padding: 40px 0;
}

.shop-layout--single {
  display: block;
}

.shop-content {
  flex: 1;
  min-width: 0;
}

.shop-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.shop-page-header {
  padding: 40px 0 20px;
  text-align: center;
}

.shop-page-header .page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
}

.shop-page-header .archive-description {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .shop-layout { flex-direction: column; }
  .shop-sidebar { width: 100%; }
}

/* ============================================
   COMMENTS STYLING
   ============================================ */

.vookum-comments {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.comments-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-list .comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.comment-list .comment-body {
  display: flex;
  gap: 16px;
}

.comment-list .comment-author img {
  border-radius: var(--radius-full);
}

.comment-list .comment-author .fn {
  font-weight: 600;
  font-size: 15px;
}

.comment-list .comment-metadata {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.comment-list .comment-content {
  font-size: 15px;
  line-height: 1.7;
}

.comment-list .reply a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.vookum-comment-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.vookum-comment-form input[type="text"],
.vookum-comment-form input[type="email"],
.vookum-comment-form input[type="url"],
.vookum-comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.vookum-comment-form input:focus,
.vookum-comment-form textarea:focus {
  border-color: var(--color-accent);
}

.vookum-comment-form .form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--gradient-purple);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.vookum-comment-form .form-submit input[type="submit"]:hover {
  box-shadow: var(--shadow-purple-lg);
  transform: translateY(-2px);
}

/* ============================================
   EXTRA VISUAL POLISH
   ============================================ */

/* Purple line accent on hover for links */
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin-right: 0;
  transition: all var(--transition-fast);
}

.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

/* Shimmer effect on purple buttons */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.vookum-btn--primary {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  background-image: linear-gradient(135deg, #9c15ed 0%, #c667ff 25%, #9c15ed 50%, #c667ff 75%, #9c15ed 100%);
}

/* Subtle glow on product card hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 40%, rgba(156, 21, 237, 0.1) 50%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: -1;
}

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

/* Collection card shine sweep */
.collection-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.collection-card:hover::after {
  left: 125%;
}

/* No results */
.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results h1 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
}

.no-results p {
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

/* Search form */
.search-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.search-form .search-field {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.search-form .search-submit {
  padding: 12px 20px;
  background: var(--gradient-purple);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

/* Smooth body transitions */
body, body * {
  -webkit-font-smoothing: antialiased;
}

/* Selection color */
::selection {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

::-moz-selection {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

/* Custom scrollbar for dark mode */
[data-theme="dark"] ::-webkit-scrollbar {
  width: 8px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background: #0a0a0a;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

[data-theme="light"] ::-webkit-scrollbar {
  width: 8px;
}

[data-theme="light"] ::-webkit-scrollbar-track {
  background: #faf9fc;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ============================================
   PREMIUM UPGRADE #1: FILM GRAIN NOISE OVERLAY
   ============================================ */

.vookum-noise-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.035;
}

[data-theme="light"] .vookum-noise-overlay {
  opacity: 0.025;
  mix-blend-mode: multiply;
}

/* ============================================
   PREMIUM UPGRADE #2: METALLIC SHIMMER ON HERO TITLE
   ============================================ */

.hero-title--shimmer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.3em;
  background: linear-gradient(
    105deg,
    var(--color-text) 0%,
    var(--color-text) 35%,
    #d4af37 50%,
    var(--color-text) 65%,
    var(--color-text) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 6s ease-in-out infinite;
}

[data-theme="light"] .hero-title--shimmer {
  background: linear-gradient(
    105deg,
    var(--color-text) 0%,
    var(--color-text) 35%,
    #9c15ed 50%,
    var(--color-text) 65%,
    var(--color-text) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shimmerSweep {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

/* ============================================
   PREMIUM UPGRADE #3: PER-WORD HERO TITLE REVEAL
   ============================================ */

.hero-word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

/* ============================================
   PREMIUM UPGRADE #4: DIAMOND DIVIDERS
   ============================================ */

.vookum-diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
  color: var(--color-text-muted);
}

.divider-line {
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-purple), transparent);
  transform: scaleX(0);
  transition: transform 1s var(--ease-out-expo);
}

.divider-line--left {
  transform-origin: right center;
}

.divider-line--right {
  transform-origin: left center;
}

.divider-diamond {
  opacity: 0;
  transform: rotate(0deg) scale(0);
  transition: all 0.8s var(--ease-out-expo) 0.3s;
  color: var(--color-accent);
  flex-shrink: 0;
}

.vookum-diamond-divider.in-view .divider-line,
.vookum-diamond-divider.divider-animated .divider-line {
  transform: scaleX(1);
}

.vookum-diamond-divider.in-view .divider-diamond,
.vookum-diamond-divider.divider-animated .divider-diamond {
  opacity: 1;
  transform: rotate(360deg) scale(1);
}

@media (min-width: 768px) {
  .divider-line {
    width: 200px;
  }
}

/* ============================================
   PREMIUM UPGRADE #5: ANIMATED GRADIENT BORDER EDUCATION CARDS
   ============================================ */

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.education-card {
  position: relative;
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-base);
}

.education-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(
    from var(--border-angle),
    transparent 30%,
    var(--color-accent) 50%,
    transparent 70%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.education-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--color-bg-card);
  z-index: -1;
}

.education-card:hover::before {
  opacity: 1;
  animation: rotateBorder 3s linear infinite;
}

.education-card:hover .education-card-icon {
  filter: drop-shadow(0 0 12px var(--color-accent));
}

.education-card .education-card-icon {
  transition: filter var(--transition-base);
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

/* Firefox fallback — no @property support */
@supports not (background: conic-gradient(red, blue)) {
  .education-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-purple);
  }
}

/* ============================================
   PREMIUM UPGRADE #6: TESTIMONIALS SECTION ELEVATION
   ============================================ */

.vookum-testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(156, 21, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .testimonials-glow {
  background: radial-gradient(ellipse, rgba(125, 29, 183, 0.05) 0%, transparent 70%);
}

.testimonials-quote-mark {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  color: var(--color-accent);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

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

.testimonial-card {
  background: var(--color-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-border-purple);
  box-shadow: 0 8px 30px rgba(156, 21, 237, 0.1);
}

[data-theme="light"] .testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(125, 29, 183, 0.08);
}

/* ============================================
   PREMIUM UPGRADE #8: PARALLAX BANNER UPGRADE
   ============================================ */

.parallax-watch-svg {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 1;
  animation: watchFloat 8s ease-in-out infinite;
}

@keyframes watchFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  33% { transform: translateY(-53%) translateX(5px); }
  66% { transform: translateY(-47%) translateX(-5px); }
}

@media (max-width: 1024px) {
  .parallax-watch-svg {
    display: none;
  }
}

.parallax-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.parallax-stat {
  text-align: center;
}

.parallax-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.parallax-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.parallax-stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.parallax-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
  .parallax-stats-row {
    gap: 16px;
  }
  .parallax-stat-number {
    font-size: 1.4rem;
  }
}

/* ============================================
   PREMIUM UPGRADE #9: BRAND HERITAGE STORY SECTION
   ============================================ */

.vookum-brand-story {
  padding: 100px 0;
  position: relative;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story-image {
  position: relative;
}

.brand-story-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
}

.brand-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-accent-border {
  position: absolute;
  inset: -12px -12px auto auto;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.brand-story-year-watermark {
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.brand-story-content {
  max-width: 520px;
}

.brand-story-title {
  margin-bottom: 30px;
}

.brand-story-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.brand-story-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.signature-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.signature-name {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-story-image-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .brand-story-year-watermark {
    font-size: 5rem;
  }

  .vookum-brand-story {
    padding: 60px 0;
  }
}

