/* ============================================================
   VELORA — style.css
   Design tokens: engineered luxury / blueprint-glass aesthetic
   ============================================================ */

:root {
  /* ---- Color: Dark (default) ---- */
  --bg: #0A0B0D;
  --surface: #15171B;
  --surface-2: #1D2025;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #F1F1EF;
  --text-dim: #9BA0AA;
  --text-faint: #5C6169;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --accent: #6E8CFF;
  --accent-soft: rgba(110, 140, 255, 0.16);
  --accent-2: #B7C4FF;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);

  /* ---- Type ---- */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ---- Layout ---- */
  --container: 1320px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg: #F3F3F0;
  --surface: #FFFFFF;
  --surface-2: #EAEAE6;
  --line: rgba(10, 11, 13, 0.08);
  --line-strong: rgba(10, 11, 13, 0.14);
  --text: #101114;
  --text-dim: #55585F;
  --text-faint: #9A9DA3;
  --glass: rgba(10, 11, 13, 0.035);
  --glass-strong: rgba(10, 11, 13, 0.05);
  --glass-border: rgba(10, 11, 13, 0.1);
  --shadow: 0 20px 60px rgba(10, 11, 13, 0.12);
  --shadow-sm: 0 8px 24px rgba(10, 11, 13, 0.08);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, li { list-style: none; }
input { font: inherit; }
::selection { background: var(--accent); color: #fff; }

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

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ============ UTILITIES ============ */
.section { max-width: var(--container); margin: 0 auto; padding: 140px 32px; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--accent-2); }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-title.light { color: #fff; }
.section-desc { margin-top: 18px; color: var(--text-dim); font-size: 16px; line-height: 1.6; max-width: 480px; }
.section-desc.light { color: rgba(255,255,255,0.7); }

.placeholder-icon {
  font-size: 64px;
  color: var(--text-faint);
  font-family: var(--font-display);
  opacity: 0.4;
  animation: pulse-ph 3s ease-in-out infinite;
}
.placeholder-icon.sm { font-size: 36px; }
@keyframes pulse-ph { 0%,100% { opacity: 0.25; } 50% { opacity: 0.55; } }

[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #4A63D6);
  color: #fff;
  box-shadow: 0 10px 30px rgba(110, 140, 255, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(110, 140, 255, 0.4); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(16px);
}
.btn-ghost:hover { background: var(--glass-strong); transform: translateY(-3px); }
.btn.full { width: 100%; justify-content: center; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.5); transform: scale(0); animation: ripple-anim 0.7s ease-out; pointer-events: none; }
@keyframes ripple-anim { to { transform: scale(3); opacity: 0; } }

.icon-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text);
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { background: var(--glass-strong); transform: translateY(-2px); }
.icon-btn.border { border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(10px); }
.icon-btn .badge {
  position: absolute; top: -2px; right: -2px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-mark { position: relative; width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
.loader-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--line-strong); border-top-color: var(--accent); animation: spin 1.1s linear infinite; }
.loader-text { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text); }
.loader-caption { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.22em; color: var(--text-faint); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ CURSOR GLOW ============ */
.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,140,255,0.10), transparent 70%);
  pointer-events: none; z-index: 5; transform: translate(-50%, -50%);
  left: -500px; top: -500px;
  transition: opacity 0.4s ease;
}
@media (max-width: 900px) { .cursor-glow { display: none; } }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%; z-index: 1001;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), height 0.4s var(--ease);
}
.navbar.hide-nav { transform: translateY(-100%); }
.navbar.scrolled { height: 68px; background: var(--surface); box-shadow: var(--shadow-sm); }
.navbar-inner {
  max-width: var(--container); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #3D50B8);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.logo-word { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: 0.03em; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-dim); position: relative; padding: 6px 0; transition: color 0.3s ease; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--accent); transition: width 0.35s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 6px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; }
.hamburger span { width: 20px; height: 1.5px; background: var(--text); transition: all 0.35s var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.icon-sun { transition: transform 0.5s var(--ease); }
[data-theme="light"] .icon-sun { transform: rotate(180deg); }

/* search panel */
.search-panel {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease);
}
.search-panel.open { max-height: 420px; }
.search-panel-inner { display: flex; align-items: center; gap: 14px; max-width: var(--container); margin: 0 auto; padding: 22px 32px; }
.search-panel-inner svg { width: 20px; height: 20px; color: var(--text-faint); flex-shrink: 0; }
.search-panel-inner input { flex: 1; background: none; border: none; color: var(--text); font-size: 17px; }
.search-panel-inner input:focus { outline: none; }
.search-results { max-width: var(--container); margin: 0 auto; padding: 0 32px 22px; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.search-result-item { display: flex; justify-content: space-between; padding: 12px 16px; background: var(--glass); border: 1px solid var(--line); border-radius: 12px; font-size: 13.5px; }
.search-result-item span:last-child { color: var(--accent); font-family: var(--font-mono); }

/* mobile nav */
.mobile-nav {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 850;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; padding: 10px 32px;
  max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease);
}
.mobile-nav.open { max-height: 600px; padding: 20px 32px 30px; }
.mobile-link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
  animation: grid-pan 40s linear infinite;
  opacity: 0.7;
}
@keyframes grid-pan { from { background-position: 0 0; } to { background-position: 64px 128px; } }
.hero-glow {
  position: absolute; top: -10%; right: -10%; width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(110,140,255,0.14), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  width: 100%; padding: 60px 32px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 26px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: dot-pulse 2s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98; letter-spacing: -0.02em;
}
.outline-text {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}
[data-theme="light"] .outline-text { -webkit-text-stroke-color: var(--text); }

.hero-sub { margin: 28px 0 38px; font-size: 17px; line-height: 1.7; color: var(--text-dim); max-width: 460px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 44px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 600; }
.stat-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em; margin-top: 6px; max-width: 110px; }

.hero-showcase { position: relative; display: flex; align-items: center; justify-content: center; }
.showcase-frame {
  position: relative; width: 100%; aspect-ratio: 1/1.05;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.corner { position: absolute; width: 22px; height: 22px; border: 1.5px solid var(--accent-2); opacity: 0.8; }
.corner.tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.corner.tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.corner.bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.corner.br { bottom: 18px; right: 18px; border-left: none; border-top: none; }
.scan-line {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  top: 0; animation: scan 4.5s ease-in-out infinite;
  box-shadow: 0 0 18px var(--accent);
}
@keyframes scan { 0%,100% { top: 6%; opacity: 0; } 10% { opacity: 1; } 50% { top: 92%; opacity: 1; } 60% { opacity: 0; } }
.spec-tag {
  position: absolute; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.06em; color: var(--text-faint);
}
.spec-tl { top: 44px; left: 24px; }
.spec-br { bottom: 44px; right: 24px; text-align: right; }
.hero-image-wrap { width: 62%; height: 62%; display: flex; align-items: center; justify-content: center; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: contain; }

.floating-card {
  position: absolute; display: flex; flex-direction: column; gap: 3px;
  padding: 14px 18px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}
.fc-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); letter-spacing: 0.05em; }
.fc-value { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.fc-1 { top: 10%; left: -6%; animation-delay: 0s; }
.fc-2 { bottom: 22%; right: -8%; animation-delay: 1.2s; }
.fc-3 { bottom: -4%; left: 12%; animation-delay: 2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-faint); }
.scroll-cue-line { width: 1px; height: 34px; background: linear-gradient(var(--text-faint), transparent); animation: cue-move 2s ease-in-out infinite; }
@keyframes cue-move { 0% { opacity: 0; transform: scaleY(0.3); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0.3); transform-origin: bottom; } }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; background: var(--surface);
}
.marquee-track { display: flex; gap: 26px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--text-faint); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ CATEGORIES ============ */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; background: var(--glass); border: 1px solid var(--glass-border);
  cursor: pointer; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.category-card.cat-lg { grid-column: span 2; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.cat-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--surface-2); }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.category-card:hover .cat-media img { transform: scale(1.08); }
.cat-info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 80%);
  color: #fff;
}
.cat-code { font-family: var(--font-mono); font-size: 11px; color: var(--accent-2); letter-spacing: 0.08em; }
.cat-info h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-top: 6px; }
.cat-info p { font-size: 13px; opacity: 0.75; margin-top: 4px; }

/* ============ FILTER BAR ============ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-chip {
  padding: 10px 20px; border-radius: 100px; font-size: 13.5px; font-weight: 500;
  border: 1px solid var(--line-strong); color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--accent); color: var(--text); }
.filter-chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ============ PRODUCT GRID ============ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  padding: 18px; overflow: hidden;
  transition: box-shadow 0.5s var(--ease), transform 0.15s linear;
  transform-style: preserve-3d;
}
.product-card:hover { box-shadow: var(--shadow); }
.pc-badge {
  position: absolute; top: 26px; left: 26px; z-index: 2;
  background: var(--accent); color: #fff; font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.05em; padding: 5px 10px; border-radius: 100px;
}
.pc-wishlist {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.pc-wishlist svg { width: 17px; height: 17px; transition: all 0.3s var(--ease); }
.pc-wishlist:hover { background: var(--accent); }
.pc-wishlist:hover svg { stroke: #fff; }
.pc-wishlist.active svg { fill: var(--accent); stroke: var(--accent); }

.pc-media {
  aspect-ratio: 1/1; border-radius: var(--radius-sm); background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden; position: relative;
}
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.1); }
.pc-quickview {
  position: absolute; bottom: 14px; left: 50%; transform: translate(-50%, 60px);
  padding: 10px 20px; border-radius: 100px; font-size: 12.5px; font-weight: 600;
  background: var(--text); color: var(--bg); opacity: 0;
  transition: all 0.4s var(--ease); white-space: nowrap;
}
.product-card:hover .pc-quickview { transform: translate(-50%, 0); opacity: 1; }

.pc-cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.06em; }
.pc-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin: 8px 0 8px; }
.pc-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.pc-rating svg { width: 13px; height: 13px; }
.pc-rating span { font-size: 12px; color: var(--text-faint); font-family: var(--font-mono); }
.pc-foot { display: flex; align-items: center; justify-content: space-between; }
.pc-price { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.pc-price del { font-size: 13px; color: var(--text-faint); font-weight: 400; margin-left: 8px; }
.pc-add {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease);
}
.pc-add svg { width: 18px; height: 18px; }
.pc-add:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }

/* ============ FEATURED SLIDER ============ */
.slider-wrap { overflow: hidden; position: relative; }
.slider-wrap::before, .slider-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.slider-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.slider-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.slider-track { display: flex; gap: 22px; width: max-content; animation: slide 30s linear infinite; }
.slider-wrap:hover .slider-track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.slide-card {
  width: 280px; flex-shrink: 0; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 16px; backdrop-filter: blur(14px);
}
.slide-media { aspect-ratio: 1/1; border-radius: var(--radius-sm); background: var(--surface-2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; overflow: hidden; }
.slide-media img { width: 100%; height: 100%; object-fit: cover; }
.slide-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.slide-card span { font-family: var(--font-mono); font-size: 13px; color: var(--accent-2); }

/* ============ WHY CHOOSE US ============ */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card {
  padding: 34px 24px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }

/* ============ REVIEWS ============ */
.review-slider { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none; }
.review-slider::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 340px; scroll-snap-align: start; padding: 30px;
  border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.review-stars svg { width: 15px; height: 15px; }
.review-card p { font-size: 14.5px; line-height: 1.7; color: var(--text-dim); margin-bottom: 24px; }
.review-person { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; color: var(--text-faint); overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 14px; }
.review-loc { font-size: 12px; color: var(--text-faint); }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, #12142B, #0A0B0D 60%);
  padding: 120px 32px; text-align: center; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,140,255,0.16), transparent 65%);
}
.newsletter-inner { position: relative; max-width: 560px; margin: 0 auto; }
.newsletter .section-head, .newsletter-inner .section-title, .newsletter-inner .section-desc { }
.newsletter-form { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 240px; padding: 16px 22px; border-radius: 100px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; backdrop-filter: blur(10px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* ============ FOOTER ============ */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 90px 32px 0; }
.footer-top { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 70px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; margin: 18px 0 24px; max-width: 280px; line-height: 1.6; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.social-icons a svg { width: 16px; height: 16px; }
.social-icons a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-dim); margin-bottom: 14px; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 26px 0;
  border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  font-size: 12.5px; color: var(--text-faint);
}
.footer-tag { font-family: var(--font-mono); letter-spacing: 0.1em; }

/* ============ DRAWERS (CART / WISHLIST) ============ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  z-index: 1100; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 92vw;
  background: var(--surface); z-index: 1101; box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 26px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px 26px; display: flex; flex-direction: column; gap: 18px; }
.drawer-empty { color: var(--text-faint); font-size: 14px; text-align: center; margin-top: 60px; }
.drawer-item { display: flex; gap: 14px; align-items: center; }
.di-media { width: 70px; height: 70px; border-radius: 12px; background: var(--surface-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.di-media img { width: 100%; height: 100%; object-fit: cover; }
.di-info { flex: 1; }
.di-info h5 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.di-info span { font-size: 12.5px; color: var(--text-faint); font-family: var(--font-mono); }
.di-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.di-qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-strong); font-size: 14px; }
.di-remove { color: var(--text-faint); }
.di-remove:hover { color: #E4574A; }
.drawer-foot { padding: 22px 26px 30px; border-top: 1px solid var(--line); }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-family: var(--font-display); font-weight: 600; font-size: 17px; }

/* ============ QUICK VIEW MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--surface); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  max-width: 760px; width: 100%; max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
  transform: scale(0.92) translateY(20px); transition: transform 0.45s var(--ease);
  box-shadow: var(--shadow);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 3; background: var(--glass-strong); }
.modal-media { background: var(--surface-2); display: flex; align-items: center; justify-content: center; min-height: 320px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 40px 36px; }
.modal-cat { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; }
.modal-info h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin: 10px 0 12px; }
.modal-rating { display: flex; gap: 5px; margin-bottom: 16px; }
.modal-rating svg { width: 14px; height: 14px; }
.modal-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.modal-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 22px; }
.size-picker { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.size-chip {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500;
  transition: all 0.3s ease;
}
.size-chip:hover { border-color: var(--accent); }
.size-chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.modal-actions { display: flex; gap: 12px; }

/* ============ TOASTS ============ */
.toast-container { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1300; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm); font-size: 13.5px; font-weight: 500;
  animation: toast-in 0.4s var(--ease);
}
.toast.out { animation: toast-out 0.4s var(--ease) forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-10px); } }
.toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all 0.4s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: #fff; }
.back-to-top svg { width: 20px; height: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-showcase { max-width: 460px; margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.cat-lg { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 90px 24px; }
  .hero-stats { gap: 26px; flex-wrap: wrap; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .navbar-inner { padding: 0 18px; }
  .logo-word { display: none; }
  .hero-inner { padding: 40px 18px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .modal { grid-template-columns: 1fr; }
  .modal-media { min-height: 220px; }
  .floating-card { display: none; }
  .section { padding: 70px 18px; }
  .newsletter { padding: 90px 20px; }
}
