/* ============================================
   VLTX — PREMIUM LUXURY STREETWEAR
   style.css — Core Styling
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg: #0F0F10;
  --card: #17181B;
  --card-hover: #1E1F24;
  --white: #F5F5F5;
  --muted: #A1A1AA;
  --accent: #D6FF3F;
  --accent-dim: rgba(214, 255, 63, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glass: rgba(23, 24, 27, 0.7);
  --glass-border: rgba(255, 255, 255, 0.06);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --sidebar-width: 80px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

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

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

ul {
  list-style: none;
}

/* ---------- CUSTOM CURSOR ---------- */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .custom-cursor {
  width: 16px;
  height: 16px;
  background: var(--white);
}

.cursor-hover .cursor-follower {
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- NOISE OVERLAY ---------- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- LOADING SCREEN ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  display: flex;
  gap: 8px;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--white);
}

.loading-logo span {
  animation: loadingLetter 1.2s ease-in-out infinite;
}

.loading-logo span:nth-child(1) { animation-delay: 0s; }
.loading-logo span:nth-child(2) { animation-delay: 0.15s; }
.loading-logo span:nth-child(3) { animation-delay: 0.3s; }
.loading-logo span:nth-child(4) { animation-delay: 0.45s; }

.loading-bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  animation: loadingBar 1.5s ease-in-out forwards;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--sidebar-width);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 20px 0;
  overflow-y: auto;
}

.sidebar-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
  transition: color var(--transition-fast);
  writing-mode: vertical-rl;
  rotate: 180deg;
}

.sidebar-logo:hover {
  color: var(--accent);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  rotate: 180deg;
  color: var(--muted);
  transition: color var(--transition-smooth);
  position: relative;
  line-height: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: height 0.3s ease;
}

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

.nav-link.active::after {
  height: 60%;
}

.nav-link.active {
  color: var(--accent);
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sidebar-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.icon-btn {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted);
  transition: all var(--transition-smooth);
  background: rgba(255, 255, 255, 0.03);
}

.icon-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  color: var(--bg);
  font-size: 8px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0 16px;
}

.mobile-nav-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition-fast);
}

.mobile-nav-link.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px);
}

.menu-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translateY(-4.5px);
}

/* ---------- MAIN CONTENT ---------- */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* ---------- SECTION BASICS ---------- */
section {
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1200px) {
  section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 20px;
  }
}

.section-header {
  margin-bottom: 64px;
}

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

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.accent-text {
  color: var(--accent);
  font-style: italic;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.section-cta-center {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.cta-outline {
  padding: 14px 36px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  transition: all var(--transition-smooth);
}

.cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ---------- AMBIENT BLOBS ---------- */
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ambient-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(214, 255, 63, 0.06);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.ambient-blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  bottom: 10%;
  left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.ambient-blob-3 {
  width: 350px;
  height: 350px;
  background: rgba(214, 255, 63, 0.04);
  top: 20%;
  right: 5%;
  animation: blobFloat 9s ease-in-out infinite;
}

.ambient-blob-4 {
  width: 250px;
  height: 250px;
  background: rgba(214, 255, 63, 0.06);
  top: -50px;
  left: 20%;
  animation: blobFloat 7s ease-in-out infinite;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all var(--transition-smooth);
}

.cta-primary:hover {
  background: #e2ff4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 255, 63, 0.2);
}

.cta-secondary {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-smooth);
}

.cta-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Hero Images */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
}

.hero-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.05s linear;
}

.hero-img-card svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-img-card.card-1 {
  width: 85%;
  top: 0;
  right: 0;
  z-index: 3;
}

.hero-img-card.card-2 {
  width: 65%;
  bottom: 5%;
  left: 0;
  z-index: 2;
}

.hero-img-card.card-3 {
  width: 45%;
  top: 15%;
  left: 5%;
  z-index: 1;
}

.floating-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid var(--border);
}

.floating-tag.accent-tag {
  background: var(--accent);
  color: var(--bg);
  border: none;
}

/* ---------- HERO MARQUEE ---------- */
.hero-marquee {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--muted);
}

.marquee-dot {
  margin: 0 24px;
  color: var(--accent);
  font-size: 8px;
}

/* ---------- COLLECTION MASONRY ---------- */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.masonry-card.tall {
  /* handled by content height */
}

.masonry-card.wide {
  column-span: none;
}

.masonry-img svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-premium);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 15, 16, 0.85) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

.masonry-card:hover .masonry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.masonry-card:hover .masonry-img svg {
  transform: scale(1.05);
}

.masonry-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.masonry-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.masonry-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}

.quick-view-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  width: fit-content;
  transition: all var(--transition-smooth);
}

.quick-view-btn:hover {
  background: var(--white);
  color: var(--bg);
}

/* ---------- TRENDING SLIDER ---------- */
.trending-section {
  overflow: visible;
}

.slider-container {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 20px;
  padding: 8px 4px;
  width: max-content;
}

.slider-card {
  scroll-snap-align: start;
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
}

.slider-card-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 3/4;
}

.slider-card-img svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--transition-smooth);
}

.slider-card:hover .slider-card-img svg {
  transform: scale(1.04);
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wishlist-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ff6b6b;
}

.price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-card-info {
  padding: 0 4px;
}

.slider-card-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.slider-card-name {
  font-size: 15px;
  font-weight: 600;
  margin: 4px 0;
  letter-spacing: -0.3px;
}

.slider-card-color {
  font-size: 12px;
  color: var(--muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--white);
  transition: all var(--transition-smooth);
}

.slider-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

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

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition-smooth);
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ---------- EDITORIAL SECTION ---------- */
.editorial-section {
  padding-top: 160px;
  padding-bottom: 160px;
}

.editorial-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.editorial-image svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.animated-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
  animation: dividerPulse 2s ease-in-out infinite;
}

.editorial-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 440px;
}

.editorial-text.muted {
  color: var(--muted);
  font-size: 15px;
}

.editorial-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.editorial-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.e-stat-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent);
}

.e-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ---------- LOOKBOOK SECTION ---------- */
.lookbook-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.bento-card svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-premium);
}

.bento-card:hover svg {
  transform: scale(1.04);
}

.bento-card.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.bento-portrait {
  grid-row: span 2;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(15, 15, 16, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.bento-card:hover .bento-overlay {
  opacity: 1;
}

.bento-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.bento-btn {
  padding: 10px 28px;
  border: 1px solid var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  transition: all var(--transition-smooth);
}

.bento-btn:hover {
  background: var(--white);
  color: var(--bg);
}

/* ---------- STATISTICS SECTION ---------- */
.stats-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

.stat-item:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ---------- TESTIMONIAL SECTION ---------- */
.testimonial-section {
  overflow: hidden;
}

.testimonial-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px 0;
}

.testimonial-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonialScroll 40s linear infinite;
}

.testimonial-card.glass {
  min-width: 340px;
  max-width: 380px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.testimonial-stars {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
}

.testimonial-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--accent-dim);
  border: 1px solid rgba(214, 255, 63, 0.15);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- NEWSLETTER SECTION ---------- */
.newsletter-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.newsletter-box {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 56px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--glass-border);
  text-align: center;
  overflow: hidden;
}

.newsletter-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.newsletter-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.input-wrapper {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all var(--transition-smooth);
}

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

.newsletter-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-left: -52px;
  transition: all var(--transition-smooth);
}

.newsletter-btn:hover {
  background: #e2ff4a;
  box-shadow: 0 8px 30px rgba(214, 255, 63, 0.25);
}

.newsletter-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ---------- CART POPUP ---------- */
.cart-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  z-index: 1002;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.cart-popup.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cart-popup-header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-popup-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.cart-popup-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cart-popup-item {
  font-size: 13px;
  color: var(--muted);
}

.cart-popup-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* ---------- FOOTER ---------- */
.footer-section {
  padding: 80px 64px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.footer-bg-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20vw;
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 6px;
  display: inline-block;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--accent);
}

.footer-nav-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

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

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

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

/* ---------- HOME PREVIEW ---------- */
.home-preview {
  padding: 80px 64px 120px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.preview-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.preview-card.preview-wide {
  grid-column: span 2;
}

.preview-card svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-premium);
}

.preview-card:hover svg {
  transform: scale(1.03);
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(15,15,16,0.85));
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition-smooth);
}

.preview-card:hover .preview-overlay {
  padding-bottom: 40px;
}

.preview-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
}

.preview-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}

.hero-landing {
  min-height: 90vh;
  padding-bottom: 0;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: 100px 64px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header .section-tag {
  margin-bottom: 12px;
}

.page-header .section-title {
  margin-bottom: 12px;
}

.page-header .section-desc {
  margin: 0 auto;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: 80px 64px 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form-group input,
.contact-form-group textarea {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all var(--transition-smooth);
  resize: vertical;
}

.contact-form-group textarea {
  min-height: 140px;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact-submit {
  padding: 16px 32px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all var(--transition-smooth);
  margin-top: 8px;
}

.contact-submit:hover {
  background: #e2ff4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 255, 63, 0.25);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-info-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.contact-info-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- GLASS UTILITY ---------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}
