/* ============================================
   VAPEOVE — Cyberpunk B2B Vape Wholesale
   Multi-layer neon, synthwave grid, glitch,
   holographic glass, scanline CRT
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
  --bg: #050510;
  --bg-card: #080a14;
  --bg-card-hover: #0c0f20;
  --bg-panel: #0d1020;
  --cyan: #00e5ff;
  --cyan-deep: #0090b0;
  --pink: #ff2d78;
  --pink-deep: #b01a50;
  --purple: #bd00ff;
  --purple-deep: #7a00a8;
  --green: #00ff9d;
  --yellow: #ffe900;
  --text: #dce2f0;
  --text-muted: #7a82a0;
  --text-dim: #4a5070;
  --border: #1a1d30;
  --border-glow: rgba(0,229,255,0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Orbitron', monospace;
  --font-body: 'Rajdhani', 'Inter', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === Background Layers === */
/* Scanline overlay */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,229,255,0.015) 2px, rgba(0,229,255,0.015) 4px
  );
}

/* Grid background */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Noise texture */
.noise-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700; line-height: 1.15; letter-spacing: 0.03em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }

/* Multi-layer neon text glow (7 layers) */
.neon-cyan {
  color: #fff;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 18px var(--cyan),
    0 0 30px var(--cyan),
    0 0 50px var(--cyan),
    0 0 80px rgba(0,229,255,0.4),
    0 0 120px rgba(0,229,255,0.2);
}
.neon-pink {
  color: #fff;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 18px var(--pink),
    0 0 30px var(--pink),
    0 0 50px var(--pink),
    0 0 80px rgba(255,45,120,0.4),
    0 0 120px rgba(255,45,120,0.2);
}
.neon-purple {
  color: #fff;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 18px var(--purple),
    0 0 30px var(--purple),
    0 0 50px var(--purple),
    0 0 80px rgba(189,0,255,0.4),
    0 0 120px rgba(189,0,255,0.2);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.08em;
  border: none; transition: var(--transition);
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan), var(--purple));
  color: #000; font-weight: 700;
  box-shadow:
    0 0 10px rgba(0,229,255,0.3),
    0 0 25px rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(0,229,255,0.5),
    0 0 40px rgba(0,229,255,0.2),
    0 0 80px rgba(189,0,255,0.15);
}

.btn-outline {
  background: transparent; color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.3);
  box-shadow: 0 0 8px rgba(0,229,255,0.08);
}
.btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.05);
  box-shadow:
    0 0 18px rgba(0,229,255,0.3),
    0 0 40px rgba(0,229,255,0.1);
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink), var(--purple));
  color: #000; font-weight: 700;
  box-shadow:
    0 0 10px rgba(255,45,120,0.3),
    0 0 25px rgba(255,45,120,0.12);
  border: 1px solid rgba(255,45,120,0.3);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(255,45,120,0.5),
    0 0 40px rgba(255,45,120,0.2);
}

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title h2::after {
  content: ''; display: block; width: 60px; height: 1px;
  margin: 16px auto 0;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,229,255,0.3);
}
.section-title p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; color: var(--text-muted); }

/* ============================================
   NAVIGATION — Glass + Neon
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,5,16,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
/* Corner accent on nav - top-right glowing line */
.nav::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  box-shadow: 0 0 10px var(--cyan);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

/* Glitch logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: #fff; letter-spacing: 0.08em; position: relative;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 18px var(--cyan),
    0 0 35px rgba(0,229,255,0.4);
  animation: logo-flicker 8s step-end infinite;
}
@keyframes logo-flicker {
  0%, 93%, 100% { opacity: 1; text-shadow: 0 0 4px #fff, 0 0 10px #fff, 0 0 18px var(--cyan), 0 0 35px rgba(0,229,255,0.4); }
  94% { opacity: 0.6; text-shadow: 0 0 2px #fff, 0 0 5px var(--cyan); }
  96% { opacity: 0.85; text-shadow: 0 0 3px #fff, 0 0 8px var(--cyan), 0 0 20px rgba(0,229,255,0.3); }
}
.logo-icon {
  width: 34px; height: 34px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  color: #000; font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 0 12px rgba(0,229,255,0.4);
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius); font-weight: 500;
  font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; transition: var(--transition);
}
.nav-links a:hover { color: var(--cyan); background: rgba(0,229,255,0.06); text-shadow: 0 0 8px rgba(0,229,255,0.4); }
.nav-links a.active {
  color: var(--cyan); background: rgba(0,229,255,0.08);
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
  border: 1px solid rgba(0,229,255,0.2);
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 4px; font-size: 0.72rem; font-weight: 600; }
.lang-switch span {
  padding: 4px 8px; border-radius: var(--radius); cursor: pointer;
  color: var(--text-dim); transition: var(--transition);
}
.lang-switch span.active { background: var(--cyan); color: #000; box-shadow: 0 0 8px rgba(0,229,255,0.3); }
.lang-switch span:hover:not(.active) { color: var(--cyan); }

.mobile-toggle {
  display: none; width: 40px; height: 40px; border-radius: var(--radius);
  background: rgba(0,229,255,0.06); align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(0,229,255,0.2);
}
.mobile-toggle span {
  display: block; width: 20px; height: 2px; background: var(--cyan);
  position: relative; transition: var(--transition);
  box-shadow: 0 0 6px var(--cyan);
}
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ''; position: absolute; width: 20px; height: 2px; background: var(--cyan);
  transition: var(--transition); box-shadow: 0 0 6px var(--cyan);
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

/* ============================================
   HERO — Synthwave Grid + Glitch + Stats
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 68px;
}

/* Synthwave perspective grid floor */
.hero-grid {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120vw; height: 50vh;
  background:
    /* Horizontal lines (cyan) */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,229,255,0.06) 2px,
      rgba(0,229,255,0.06) 4px
    ),
    /* Vertical lines (pink, denser near center) */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(255,45,120,0.05) 3px,
      rgba(255,45,120,0.05) 6px
    );
  transform-origin: center top;
  transform: translateX(-50%) perspective(800px) rotateX(60deg);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Horizon glow */
.hero-horizon {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(0,229,255,0.12), transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(255,45,120,0.1), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(189,0,255,0.08), transparent 70%);
  pointer-events: none;
}

/* Floating glow orbs */
.hero-gradient {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.hero-gradient:nth-child(1) {
  top: 15%; right: 10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,0.1), transparent 70%);
}
.hero-gradient:nth-child(2) {
  bottom: 30%; left: 5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,45,120,0.08), transparent 70%);
}
.hero-gradient:nth-child(3) {
  top: 40%; left: 40%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(189,0,255,0.06), transparent 70%);
}

.hero-inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: var(--radius);
  background: rgba(0,229,255,0.04); border: 1px solid rgba(0,229,255,0.2);
  color: var(--cyan); font-size: 0.78rem; font-weight: 600;
  margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.12em;
  width: fit-content; font-family: var(--font-head);
  box-shadow: 0 0 15px rgba(0,229,255,0.08);
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.hero h1 {
  color: #fff; margin-bottom: 24px; font-weight: 900;
  text-shadow:
    0 0 4px #fff,
    0 0 10px rgba(255,255,255,0.6),
    0 0 20px var(--cyan),
    0 0 40px rgba(0,229,255,0.3);
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--text-muted); font-size: 1.08rem;
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.03), transparent);
}
.hero-stat h3 {
  color: #fff; font-size: 2.2rem; margin-bottom: 4px; font-weight: 800;
  text-shadow:
    0 0 4px #fff,
    0 0 10px var(--cyan),
    0 0 20px rgba(0,229,255,0.5);
}
.hero-stat p {
  color: var(--text-dim); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-head);
  margin-bottom: 0;
}

/* Hero visual side */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-product {
  position: relative; z-index: 2; max-width: 400px;
  filter: drop-shadow(0 30px 60px rgba(0,229,255,0.15)) drop-shadow(0 0 30px rgba(189,0,255,0.1));
  animation: float-device 6s ease-in-out infinite;
}
@keyframes float-device {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  33% { transform: translateY(-12px) rotateY(3deg); }
  66% { transform: translateY(-6px) rotateY(-2deg); }
}
.hero-glow {
  position: absolute; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,229,255,0.15), rgba(189,0,255,0.08), transparent);
  border-radius: 50%; filter: blur(100px); z-index: 1;
}

/* ============================================
   PRODUCT CARDS — Holographic + Corner Accents
   ============================================ */
.products-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
/* Corner L-shaped neon accent */
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; z-index: 2;
  width: 30px; height: 1px; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,229,255,0.4);
  transition: width 0.4s ease;
}
.product-card::after {
  content: ''; position: absolute; top: 0; left: 0; z-index: 2;
  width: 1px; height: 20px; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,229,255,0.4);
  transition: height 0.4s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.25);
  box-shadow:
    0 0 30px rgba(0,229,255,0.08),
    0 8px 40px rgba(0,0,0,0.6);
  background: var(--bg-card-hover);
}
.product-card:hover::before { width: 50px; }
.product-card:hover::after { height: 35px; }

.product-image {
  position: relative; height: 260px; overflow: hidden;
  background: linear-gradient(135deg, #060612, #0c0f24);
  display: flex; align-items: center; justify-content: center;
}
.product-image img { height: 82%; width: auto; object-fit: contain; transition: transform 0.5s ease; }

/* Data stream overlay on product image */
.product-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,229,255,0.05));
  pointer-events: none;
}
.product-card:hover .product-image img { transform: scale(1.06); }

.product-puffs {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 6px 14px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #fff; font-weight: 700; font-size: 0.76rem;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow:
    0 0 12px rgba(255,45,120,0.4),
    0 0 25px rgba(255,45,120,0.15);
}

.product-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 {
  margin-bottom: 8px; font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(0,229,255,0.3);
}
.product-info p { font-size: 0.9rem; margin-bottom: 16px; flex: 1; color: var(--text-muted); }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.product-meta span {
  padding: 5px 12px; border-radius: var(--radius); font-size: 0.72rem; font-weight: 600;
  background: rgba(0,229,255,0.04); color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.15);
  text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-head);
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cyan); font-weight: 600; font-size: 0.82rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em;
  transition: var(--transition);
}
.product-link:hover {
  gap: 10px;
  text-shadow:
    0 0 8px var(--cyan),
    0 0 16px rgba(0,229,255,0.5);
}

/* ============================================
   FEATURES — Holographic Glass Cards
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  position: relative; text-align: center; padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10,12,20,0.7), rgba(15,18,35,0.5));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 20px; height: 1px;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  opacity: 0; transition: opacity 0.3s ease;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,255,0.2);
  box-shadow: 0 0 30px rgba(0,229,255,0.06), 0 8px 30px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, rgba(12,15,28,0.9), rgba(18,22,42,0.7));
}

.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem;
  border: 1px solid var(--border);
}
.feature-card:nth-child(1) .feature-icon {
  background: rgba(0,229,255,0.06); border-color: rgba(0,229,255,0.2);
  box-shadow: 0 0 15px rgba(0,229,255,0.2);
}
.feature-card:nth-child(2) .feature-icon {
  background: rgba(255,45,120,0.06); border-color: rgba(255,45,120,0.2);
  box-shadow: 0 0 15px rgba(255,45,120,0.2);
}
.feature-card:nth-child(3) .feature-icon {
  background: rgba(189,0,255,0.06); border-color: rgba(189,0,255,0.2);
  box-shadow: 0 0 15px rgba(189,0,255,0.2);
}
.feature-card:nth-child(4) .feature-icon {
  background: rgba(0,255,157,0.06); border-color: rgba(0,255,157,0.2);
  box-shadow: 0 0 15px rgba(0,255,157,0.2);
}

.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; color: var(--text); }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(0,229,255,0.03), rgba(189,0,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin: 0 24px;
  padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.06), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(189,0,255,0.04), transparent 60%);
}
.cta-section h2 {
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
  text-shadow:
    0 0 4px #fff,
    0 0 10px var(--cyan),
    0 0 25px rgba(0,229,255,0.3);
}
.cta-section p { color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; position: relative; z-index: 1; font-size: 1.05rem; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 140px 0 70px; text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative; background: var(--bg);
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(0,229,255,0.3);
}
.page-header h1 {
  color: #fff; margin-bottom: 12px;
  text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 20px var(--cyan),
    0 0 40px rgba(0,229,255,0.3);
}
.page-header p { color: var(--text-muted); font-size: 1.08rem; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; padding: 60px 0;
}
.product-gallery {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #060612, #0c0f24);
  display: flex; align-items: center; justify-content: center;
  min-height: 500px; border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(0,229,255,0.04);
}
.product-gallery img { max-height: 460px; width: auto; }
.product-details h2 {
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(0,229,255,0.3), 0 0 20px rgba(0,229,255,0.1);
}
.product-details .tag {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink));
  color: #fff; font-weight: 700; font-size: 0.78rem;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-head);
  box-shadow: 0 0 12px rgba(255,45,120,0.35);
}

.specs-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.specs-table th, .specs-table td {
  padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.specs-table th {
  font-weight: 600; color: var(--cyan); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em; width: 40%;
  font-family: var(--font-head);
}
.specs-table td { font-weight: 500; color: var(--text); }

.flavor-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.flavor-tag {
  padding: 6px 14px; border-radius: var(--radius);
  background: rgba(0,229,255,0.03); font-size: 0.84rem; font-weight: 500;
  border: 1px solid var(--border); color: var(--text-muted);
  transition: var(--transition);
}
.flavor-tag:hover {
  border-color: rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.06);
  color: var(--cyan);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 60px 0;
}
.about-image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #060612, #0c0f24);
  min-height: 400px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0,229,255,0.04);
}
.about-image img { max-height: 380px; width: auto; }
.about-content h2 {
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(0,229,255,0.3);
}
.about-content p { margin-bottom: 18px; font-size: 1.02rem; color: var(--text-muted); line-height: 1.7; }

.cert-grid { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cert-badge {
  padding: 10px 18px; border-radius: var(--radius);
  background: rgba(0,229,255,0.04); border: 1px solid rgba(0,229,255,0.2);
  font-size: 0.78rem; font-weight: 600; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-head);
  transition: var(--transition);
}
.cert-badge:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 12px rgba(0,229,255,0.15);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; }
.contact-info h2 {
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(0,229,255,0.3);
}
.contact-info > p { margin-bottom: 36px; color: var(--text-muted); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
  border: 1px solid rgba(0,229,255,0.2);
  background: rgba(0,229,255,0.04);
  box-shadow: 0 0 10px rgba(0,229,255,0.1);
}
.contact-item h4 { margin-bottom: 4px; font-size: 0.98rem; color: var(--text); font-weight: 600; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); }

.form-card {
  background: linear-gradient(135deg, rgba(10,12,20,0.8), rgba(15,18,35,0.6));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border);
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 30px; height: 1px; background: var(--pink);
  box-shadow: 0 0 10px var(--pink), 0 0 20px rgba(255,45,120,0.4);
}
.form-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 1px; height: 20px; background: var(--pink);
  box-shadow: 0 0 10px var(--pink), 0 0 20px rgba(255,45,120,0.4);
}

.form-card h3 {
  margin-bottom: 24px;
  text-shadow: 0 0 8px rgba(0,229,255,0.3);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.8rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 0.95rem;
  font-family: var(--font-body); transition: var(--transition);
  background: rgba(5,5,16,0.8); color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--cyan);
  box-shadow:
    0 0 8px rgba(0,229,255,0.2),
    0 0 20px rgba(0,229,255,0.08);
  background: rgba(8,10,20,0.9);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 18px; text-align: center; }
.form-group select { background: rgba(5,5,16,0.8); }
.form-group select option { background: var(--bg-card); color: var(--text); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-card); padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 15px var(--cyan), 0 0 30px rgba(0,229,255,0.25);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; }

.footer h4 {
  font-family: var(--font-head); font-size: 0.8rem; margin-bottom: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(0,229,255,0.3);
}
.footer-links a {
  display: block; padding: 6px 0; font-size: 0.88rem;
  color: var(--text-dim); transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-dim);
}
.age-warning {
  background: rgba(255,45,120,0.04); padding: 12px 20px; border-radius: var(--radius);
  font-size: 0.8rem; color: var(--text-dim); text-align: center;
  margin-top: 24px; border: 1px solid rgba(255,45,120,0.15);
}

/* ============================================
   ANIMATIONS — Glitch, Data Stream
   ============================================ */

/* Glitch effect on hover for primary headings */
.glitch-hover {
  position: relative;
}
.glitch-hover:hover::before {
  content: attr(data-text);
  position: absolute; left: 2px; top: 0; width: 100%; height: 100%;
  color: var(--pink);
  clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  animation: glitch-anim 0.4s ease-in-out;
  opacity: 0.8;
}
.glitch-hover:hover::after {
  content: attr(data-text);
  position: absolute; left: -2px; top: 0; width: 100%; height: 100%;
  color: var(--cyan);
  clip-path: polygon(0 65%, 100% 65%, 100% 85%, 0 85%);
  animation: glitch-anim 0.4s ease-in-out reverse;
  opacity: 0.8;
}
@keyframes glitch-anim {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  60% { transform: translateX(-1px); }
  80% { transform: translateX(1px); }
}

/* Fade-up reveal */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Scanline sweep animation on data elements */
@keyframes data-sweep {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,16,0.97); z-index: 999; padding: 24px;
  transform: translateX(100%); transition: transform 0.35s ease;
  backdrop-filter: blur(24px);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 16px; font-size: 1.05rem; font-weight: 600;
  border-bottom: 1px solid var(--border); color: var(--text);
  text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-head);
}
.mobile-menu a.active {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.25); }

/* === SECTION DIVIDERS === */
.section-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--cyan-dim), var(--border), transparent);
}
.section-divider::after {
  content: ''; display: block; width: 60px; height: 1px; margin: 0 auto;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-product { max-width: 260px; }
  .hero-badge { margin: 0 auto 28px; }
  .hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 40px; }
  .nav-links { display: none; }
  .lang-switch { display: none; }
  .mobile-toggle { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
  .cta-section { margin: 0 16px; padding: 50px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .page-header { padding: 120px 0 50px; }
  .hero-grid { height: 30vh; }
}

@media (prefers-reduced-motion: reduce) {
  .logo { animation: none; }
  .hero-product { animation: none; }
  .glitch-hover:hover::before, .glitch-hover:hover::after { animation: none; display: none; }
}

/* === Floating WhatsApp / Telegram Buttons === */
.wa-float-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px;
}
.wa-float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.85rem; text-decoration: none;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.wa-float-btn.wa {
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
}
.wa-float-btn.tg {
  background: linear-gradient(135deg, #0088cc, #229ED9); color: #fff;
}
.wa-float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,229,255,0.3); }
.wa-float-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* === Warehouse Cards === */
.warehouse-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.warehouse-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
  overflow: hidden; transition: var(--transition);
}
.warehouse-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 30px; height: 1px;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
.warehouse-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 1px; height: 20px;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}
.warehouse-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.warehouse-flag { font-size: 2.5rem; margin-bottom: 12px; }
.warehouse-card h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--cyan); margin-bottom: 8px; }
.warehouse-card .wh-location { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.warehouse-card ul { list-style: none; padding: 0; }
.warehouse-card li { padding: 6px 0; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid var(--border); }
.warehouse-card li:last-child { border-bottom: none; }
.warehouse-card li strong { color: var(--cyan); }

/* === Stock Badge === */
.stock-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0, 255, 157, 0.1); border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--green); padding: 4px 12px; border-radius: 4px;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.stock-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* === Puff Badge (Large) === */
.puff-badge-large {
  display: inline-block; font-family: var(--font-head); font-weight: 900;
  font-size: 2.5rem; background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}

/* === Quote CTA Section === */
.quote-cta {
  background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(189,0,255,0.05));
  border: 1px solid var(--border-glow); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; margin-top: 48px;
}
.quote-cta h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 16px; color: var(--text); }
.quote-cta p { color: var(--text-muted); max-width: 600px; margin: 0 auto 28px; }
.quote-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  padding: 14px 32px; border-radius: 4px; font-family: var(--font-head);
  font-weight: 700; text-decoration: none; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-tg {
  background: linear-gradient(135deg, #0088cc, #229ED9); color: #fff;
  padding: 14px 32px; border-radius: 4px; font-family: var(--font-head);
  font-weight: 700; text-decoration: none; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,204,0.4); }

/* === Blog Cards === */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px; margin-top: 40px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
  text-decoration: none; display: block; position: relative;
}
.blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 30px; height: 1px;
  background: var(--pink); box-shadow: 0 0 10px var(--pink); z-index: 1;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block; font-family: var(--font-head); font-size: 0.7rem;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.blog-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.blog-card .blog-date { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; }

/* === Blog Article Content === */
.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--cyan); margin: 40px 0 16px; }
.blog-article h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin: 32px 0 12px; }
.blog-article p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.blog-article ul { padding-left: 24px; margin-bottom: 20px; }
.blog-article li { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 8px; }
.blog-article li strong { color: var(--cyan); }
.blog-article .article-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.blog-article .article-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-dim); }

/* === FAQ Accordion === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  padding: 20px 24px; cursor: pointer; font-family: var(--font-head);
  font-size: 1rem; color: var(--text); display: flex;
  justify-content: space-between; align-items: center; transition: var(--transition);
}
.faq-question:hover { color: var(--cyan); }
.faq-question .faq-icon { color: var(--cyan); font-size: 1.2rem; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* === Feature Highlight Bar === */
.feature-bar {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.feature-bar-item { display: flex; align-items: center; gap: 10px; }
.feature-bar-item .fb-icon { font-size: 1.4rem; }
.feature-bar-item .fb-text { font-family: var(--font-head); font-size: 0.85rem; color: var(--text); }
.feature-bar-item .fb-text strong { color: var(--cyan); }

/* === Shipping Logos === */
.shipping-logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 32px; }
.shipping-logo {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--text);
}

/* === MOQ Highlight === */
.moq-highlight {
  display: inline-block; background: rgba(255,46,120,0.1);
  border: 1px solid rgba(255,46,120,0.3); color: var(--pink);
  padding: 8px 16px; border-radius: 4px; font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 600;
}

/* Utility */
.text-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
