/* ========================================
   KKFOG — Design System & Styles
   Premium Vaping Products | Global Wholesale
   Vibrant · Clean · Dynamic
   ======================================== */

/* ----- DESIGN TOKENS ----- */
:root {
  /* Base — cool slate palette */
  --bg-primary: #F1F5F9;
  --bg-secondary: #E2E8F0;
  --bg-card: #FAFBFC;
  --text-primary: #1A1A1A;
  --text-secondary: #5C5C5C;
  --text-tertiary: #999999;
  --border: #E8E6E0;
  --border-light: #F0EEE8;

  /* Brand Accent — KKFOG Teal */
  --accent: #0D9488;
  --accent-hover: #0F766E;
  --accent-light: rgba(13, 148, 136, 0.08);
  --accent-glow: rgba(13, 148, 136, 0.15);

  /* Vibrant Fruit Palette */
  --color-mango: #FF9800;
  --color-mango-light: #FFF3E0;
  --color-mango-glow: rgba(255, 152, 0, 0.15);
  --color-berry: #E91E63;
  --color-berry-light: #FCE4EC;
  --color-berry-glow: rgba(233, 30, 99, 0.12);
  --color-mint: #00BCD4;
  --color-mint-light: #E0F7FA;
  --color-mint-glow: rgba(0, 188, 212, 0.12);
  --color-grape: #7B1FA2;
  --color-grape-light: #F3E5F5;
  --color-grape-glow: rgba(123, 31, 162, 0.12);
  --color-lime: #8BC34A;
  --color-lime-light: #F1F8E9;
  --color-lime-glow: rgba(139, 195, 74, 0.15);
  --color-coral: #FF6B6B;
  --color-coral-light: #FFF0F0;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.09), 0 8px 20px rgba(0, 0, 0, 0.04);
  --shadow-colored: 0 12px 40px rgba(13, 148, 136, 0.12), 0 4px 12px rgba(13, 148, 136, 0.06);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
  --section-padding: 120px;
  --section-padding-mobile: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 180ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: #1E293B;
  background: #EFF1F4;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration-fast) var(--ease-out); }
ul { list-style: none; }

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0F766E);
  color: #FFFFFF;
  padding: 14px 32px;
  box-shadow: 0 2px 16px rgba(13, 148, 136, 0.3), 0 1px 4px rgba(13, 148, 136, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.4), 0 2px 8px rgba(13, 148, 136, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  z-index: 99;
  background: rgba(15,23,42,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  transition: opacity var(--duration-fast);
}
.trust-bar-item { color: #94A3B8; }
.trust-bar-divider { background: rgba(255,255,255,0.08); }

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-bar-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* Offset hero to account for trust bar */
main {
  padding-top: 44px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out);
}

/* On top of dark hero — clean transparent */
.header:not(.scrolled) {
  background: rgba(241,245,249,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.header:not(.scrolled) .logo { color: #0F172A; }
.header:not(.scrolled) .logo .logo-accent { color: #0D9488; }
.header:not(.scrolled) .logo .logo-mark { color: #0D9488; }
.header:not(.scrolled) .nav-link { color: #475569; }
.header:not(.scrolled) .nav-link:hover { color: #0D9488; }
.header:not(.scrolled) .menu-toggle span { background: #475569; }

/* Scrolled — same look, slightly more opaque */
.header.scrolled {
  background: rgba(241,245,249,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #0F172A;
}
.header.scrolled .logo { color: #0F172A; }
.header.scrolled .logo .logo-accent { color: #0D9488; }
.header.scrolled .logo .logo-mark { color: #0D9488; }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================================
   SECTION NAV PILLS — Quick Jump Directory
   ======================================== */
.section-nav {
  position: sticky;
  top: 80px;
  z-index: 99;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.section-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sn-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: #94A3B8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.sn-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(94,234,212,0.3);
  color: #E2E8F0;
  transform: translateY(-1px);
}

.sn-pill--hot {
  background: rgba(251,191,36,0.10);
  border-color: rgba(251,191,36,0.15);
  color: #FBBF24;
  font-weight: 700;
}
.sn-pill--hot:hover {
  background: rgba(251,191,36,0.18);
  border-color: #FBBF24;
  color: #FBBF24;
}

.sn-pill--dark {
  background: rgba(148,163,184,0.08);
  color: #CBD5E1;
  border-color: rgba(148,163,184,0.12);
  font-weight: 700;
}
.sn-pill--dark:hover {
  background: rgba(148,163,184,0.15);
  border-color: #CBD5E1;
  color: #F1F5F9;
}

.sn-pill--cta {
  background: rgba(94,234,212,0.12);
  color: #5EEAD4;
  border-color: rgba(94,234,212,0.20);
  font-weight: 700;
}
.sn-pill--cta:hover {
  background: rgba(94,234,212,0.20);
  color: #5EEAD4;
  border-color: #5EEAD4;
}

/* Active section highlight */
.sn-pill.active {
  background: rgba(94,234,212,0.15);
  color: #5EEAD4;
  border-color: rgba(94,234,212,0.30);
  font-weight: 700;
}
.sn-pill--hot.active {
  background: rgba(251,191,36,0.20);
  color: #FBBF24;
  border-color: #FBBF24;
}

@media (max-width: 768px) {
  .section-nav { top: 72px; padding: 10px 0; }
  .section-nav-inner { padding: 0 20px; gap: 6px; }
  .sn-pill { font-size: 12px; padding: 7px 12px; }
}

/* ========================================
   MARKET DROPDOWN
   ======================================== */
.sn-dropdown {
  position: relative;
  flex-shrink: 0;
}
.sn-dropdown .sn-pill {
  cursor: pointer;
  user-select: none;
}

.sn-dropdown-menu {
  position: fixed;
  margin: 0 !important;
  min-width: 190px;
  background: #1E293B !important;
  border: 2px solid #5EEAD4;
  border-radius: 14px;
  padding: 8px;
  display: none;
  z-index: 99999 !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
}
.sn-dropdown.open .sn-dropdown-menu {
  display: block;
}

.sn-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  color: #E2E8F0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.sn-dropdown-item:hover {
  background: rgba(94,234,212,0.12);
  color: #5EEAD4;
}

.sn-dropdown-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.sn-dropdown-item:hover {
  background: rgba(94,234,212,0.10);
  color: #5EEAD4;
}

/* Light mode dropdown */
.section-nav.light-mode .sn-dropdown-menu {
  background: rgba(241,245,249,0.98);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.section-nav.light-mode .sn-dropdown-item {
  color: #64748B;
}
.section-nav.light-mode .sn-dropdown-item:hover {
  background: rgba(13,148,136,0.08);
  color: #0F766E;
}

/* Country select — styled like sn-pill */
.sn-select {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font);
  color: #E2E8F0;
  background: rgba(30,41,59,0.8);
  border: 1px solid rgba(94,234,212,0.15);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235EEAD4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.sn-select:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(94,234,212,0.4);
  color: #F1F5F9;
}
.sn-select:focus {
  background: rgba(255,255,255,0.12);
  border-color: #5EEAD4;
  color: #F1F5F9;
}
.sn-select option {
  background: #1E293B;
  color: #E2E8F0;
  font-weight: 600;
  padding: 10px;
}
/* Light mode select */
.section-nav.light-mode .sn-select {
  color: #64748B;
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}
.section-nav.light-mode .sn-select:hover {
  background: rgba(0,0,0,0.06);
  color: #0F172A;
  border-color: rgba(13,148,136,0.3);
}
.section-nav.light-mode .sn-select option {
  background: #F1F5F9;
  color: #1E293B;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.logo-mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.logo-accent {
  font-weight: 900;
}

/* Nav */
.nav-list { display: flex; gap: 40px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--color-mint));
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

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

/* ---- Language Switcher ---- */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

.lang-current:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.lang-current span:first-child { font-size: 16px; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 200;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--duration-fast);
  text-align: left;
  white-space: nowrap;
}

.lang-option:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.lang-option.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

/* Mobile Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 1px; transition: all var(--duration-normal) var(--ease-out); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO — Dark, Premium, Global Vape Supplier
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  background: #0A0F1E;
}

/* === RICH LAYERED BACKGROUND === */

/* Layer 1: Deep gradient base */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    /* Large teal accent glow — top right */
    radial-gradient(ellipse 800px 600px at 85% 15%, rgba(13,148,136,0.10) 0%, transparent 60%),
    /* Cyan pulse — bottom center */
    radial-gradient(ellipse 600px 400px at 50% 90%, rgba(6,182,212,0.07) 0%, transparent 55%),
    /* Amber warmth — bottom left */
    radial-gradient(ellipse 500px 500px at 15% 80%, rgba(245,158,11,0.05) 0%, transparent 50%),
    /* Deep blue anchor — center */
    radial-gradient(ellipse 700px 700px at 50% 50%, rgba(15,23,42,0.4) 0%, transparent 70%);
}

/* Layer 2: Geometric pattern — thin lines */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.03;
  background-image:
    /* Diagonal lines */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.5) 60px,
      rgba(255,255,255,0.5) 61px
    ),
    /* Horizontal lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.3) 80px,
      rgba(255,255,255,0.3) 81px
    );
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 30%, transparent 70%);
}

/* Layer 3: Decorative geometric shapes */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}

/* Large soft orbs */
.hero-bg-glow {
  position: absolute; border-radius: 50%;
}
.hero-bg-glow--top {
  width: 650px; height: 650px;
  top: -200px; right: -150px;
  background: radial-gradient(circle,
    rgba(94,234,212,0.04) 0%,
    rgba(13,148,136,0.06) 25%,
    rgba(6,182,212,0.03) 50%,
    transparent 70%
  );
  filter: blur(60px);
}
.hero-bg-glow--bottom {
  width: 450px; height: 450px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle,
    rgba(245,158,11,0.04) 0%,
    rgba(251,191,36,0.03) 30%,
    transparent 65%
  );
  filter: blur(50px);
}

/* Standalone geometric accent circles */
.hero-geo-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid;
  pointer-events: none; z-index: 0;
}
.hero-geo-circle--1 {
  width: 300px; height: 300px;
  border-color: rgba(94,234,212,0.05);
  top: 15%; left: 55%;
  animation: geo-drift 20s linear infinite;
}
.hero-geo-circle--2 {
  width: 180px; height: 180px;
  border-color: rgba(245,158,11,0.04);
  bottom: 20%; left: 25%;
  animation: geo-drift 25s linear infinite reverse;
}
.hero-geo-circle--3 {
  width: 120px; height: 120px;
  border-color: rgba(13,148,136,0.06);
  top: 40%; right: 25%;
  animation: geo-drift 18s linear infinite;
}
@keyframes geo-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -15px) rotate(120deg); }
  66% { transform: translate(-10px, 20px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Accent corner triangles */
.hero-geo-accent {
  position: absolute; pointer-events: none; z-index: 0;
  width: 0; height: 0;
  border-style: solid;
  opacity: 0.03;
}
.hero-geo-accent--tr {
  border-width: 0 200px 200px 0;
  border-color: transparent #5EEAD4 transparent transparent;
  top: 0; right: 0;
}
.hero-geo-accent--bl {
  border-width: 150px 0 0 150px;
  border-color: transparent transparent transparent #0D9488;
  bottom: 0; left: 0;
}

/* Layer 4: Micro dot grid — tech/factory feel */
.hero-dot-grid {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Layer 5a: Top Center Logo */
.hero-top-logo {
  position: absolute; z-index: 0;
  top: 6%; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center;
  gap: 12px;
  opacity: 0.7;
  pointer-events: none;
  animation: brand-shine 6s ease-in-out infinite;
}
.htl-text {
  font-size: 28px; font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
.htl-accent {
  color: rgba(94,234,212,0.8);
}
.htl-icon {
  animation: htl-icon-rotate 20s linear infinite;
}
@keyframes htl-icon-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .hero-top-logo { top: 4%; gap: 8px; }
  .htl-text { font-size: 20px; }
  .htl-icon { width: 36px; height: 36px; }
}

/* Layer 5b: KKFOG Brand Watermark — centered behind content */
.hero-brand-mark {
  position: absolute; z-index: 0;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  pointer-events: none;
  animation: brand-shine 6s ease-in-out infinite;
}
.brand-mark-svg {
  filter: drop-shadow(0 0 40px rgba(94,234,212,0.06));
}
@keyframes brand-shine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.75; }
}

@media (max-width: 1024px) {
  .hero-brand-mark { bottom: 3%; transform: translateX(-50%) scale(0.55); }
}
@media (max-width: 768px) {
  .hero-brand-mark { bottom: 2%; transform: translateX(-50%) scale(0.35); }
}

/* Layer 6: Dynamic Sparkle Particles */
.hero-sparkles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hs {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #5EEAD4;
  animation: hs-twinkle 3s ease-in-out infinite;
  box-shadow: 0 0 6px 2px rgba(94,234,212,0.6), 0 0 12px 4px rgba(94,234,212,0.2);
}

/* Sparkle positions — scattered across hero */
.hs--1  { top: 12%; left: 58%; animation-delay: 0s; width: 3px; height: 3px; }
.hs--2  { top: 18%; left: 72%; animation-delay: -0.4s; }
.hs--3  { top: 8%; left: 44%; animation-delay: -1.1s; width: 2.5px; height: 2.5px; }
.hs--4  { top: 25%; left: 85%; animation-delay: -0.7s; }
.hs--5  { top: 35%; left: 62%; animation-delay: -1.8s; width: 3px; height: 3px; }
.hs--6  { top: 45%; left: 90%; animation-delay: -2.3s; }
.hs--7  { top: 55%; left: 78%; animation-delay: -0.9s; width: 4px; height: 4px; }
.hs--8  { top: 65%; left: 68%; animation-delay: -1.5s; }
.hs--9  { top: 72%; left: 50%; animation-delay: -2.7s; width: 2px; height: 2px; }
.hs--10 { top: 42%; left: 40%; animation-delay: -0.3s; }
.hs--11 { top: 22%; left: 32%; animation-delay: -2.0s; width: 3px; height: 3px; }
.hs--12 { top: 68%; left: 35%; animation-delay: -1.2s; }

@keyframes hs-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  30% { opacity: 1; transform: scale(1.4); }
  60% { opacity: 0.3; transform: scale(0.6); }
}

/* ---- Inner Layout ---- */
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* ---- Text Side ---- */
.hero-text { max-width: 520px; }

.hero-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #5EEAD4; background: rgba(94,234,212,0.08);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px; letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(94,234,212,0.12);
}

.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -0.035em; color: #F1F5F9;
  margin-bottom: 16px;
}

.title-line { display: block; }
.title-line--accent {
  background: linear-gradient(135deg, #5EEAD4 0%, #22D3EE 50%, #38BDF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px; line-height: 1.65;
  color: #94A3B8; max-width: 440px;
  margin-bottom: 24px;
}
.hero-subtitle strong { color: #5EEAD4; font-weight: 700; }

/* Sourcing Promise Strip */
.hero-sourcing-strip {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: rgba(94,234,212,0.04);
  border: 1px solid rgba(94,234,212,0.08);
  border-radius: 14px;
  margin-bottom: 24px;
  max-width: 440px;
}
.hss-item {
  font-size: 12px; font-weight: 700; color: #5EEAD4;
  display: flex; align-items: center; gap: 4px;
}
.hss-item span { font-size: 16px; }
.hss-arrow { font-size: 14px; color: rgba(94,234,212,0.4); font-weight: 700; }

.hero-actions { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.15);
  color: #CBD5E1;
}
.hero-actions .btn-outline:hover {
  border-color: #5EEAD4; color: #5EEAD4;
  background: rgba(94,234,212,0.06);
}

/* Stats Row */
.hero-stats { display: flex; gap: 32px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
  font-size: 26px; font-weight: 800; color: #F1F5F9;
  letter-spacing: -0.025em;
}
.stat-label {
  font-size: 11px; color: #64748B; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ---- Hero Visual — Central Showcase + Orbit Ring ---- */
.hero-visual {
  position: relative;
  height: 540px;
  display: flex; align-items: center; justify-content: center;
}

/* === Center Showcase === */
.hv-center {
  position: relative; z-index: 3;
  width: 200px; height: 260px;
  animation: hv-center-float 5s ease-in-out infinite;
}
@keyframes hv-center-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hv-main-card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(30,41,59,0.8), rgba(15,23,42,0.9));
  border: 1px solid rgba(94,234,212,0.15);
  box-shadow:
    0 0 60px rgba(94,234,212,0.08),
    0 8px 40px rgba(0,0,0,0.40);
  display: flex; align-items: center; justify-content: center;
}

.hv-main-card img {
  width: 78%; height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.30)) brightness(1.06);
}

.hv-main-glow {
  position: absolute;
  width: 160px; height: 160px;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(94,234,212,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: hv-glow-pulse 3s ease-in-out infinite;
}
@keyframes hv-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

.hv-main-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; flex-direction: column; gap: 1px;
}
.hv-main-brand {
  font-size: 10px; font-weight: 700;
  color: #5EEAD4;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hv-main-model {
  font-size: 14px; font-weight: 700; color: #F1F5F9;
  letter-spacing: -0.01em;
}

/* === Orbit Ring === */
.hv-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: hv-ring-rotate 60s linear infinite;
}
@keyframes hv-ring-rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === Orbiting Thumbnails === */
.hv-orbit {
  position: absolute;
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  margin-left: -210px; margin-top: -210px;
  z-index: 2;
  animation: hv-orbit-rotate 40s linear infinite;
  pointer-events: none;
}
@keyframes hv-orbit-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hv-orbit-item {
  position: absolute;
  width: 76px; height: 100px;
  border-radius: 16px;
  animation: hv-oi-counter-rotate 40s linear infinite;
  pointer-events: all;
  transition: transform 0.3s ease;
}
.hv-orbit-item:hover {
  transform: scale(1.15) !important;
  z-index: 5;
}
@keyframes hv-oi-counter-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* 6 items positioned evenly on the ring */
.hv-orbit-item--1 { top: -10px; left: 50%; margin-left: -38px; }
.hv-orbit-item--2 { top: 12%; right: -8px; }
.hv-orbit-item--3 { bottom: 12%; right: -8px; }
.hv-orbit-item--4 { bottom: -10px; left: 50%; margin-left: -38px; }
.hv-orbit-item--5 { bottom: 12%; left: -8px; }
.hv-orbit-item--6 { top: 12%; left: -8px; }

.hv-oi-card {
  width: 100%; height: 100%;
  border-radius: 16px;
  background: rgba(30,41,59,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hv-oi-card img {
  width: 70%; height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* Mobile */
@media (max-width: 1024px) {
  .hero-visual { height: 420px; }
  .hv-center { width: 160px; height: 210px; }
  .hv-ring, .hv-orbit { width: 320px; height: 320px; }
  .hv-orbit { margin-left: -160px; margin-top: -160px; }
  .hv-orbit-item { width: 60px; height: 78px; border-radius: 12px; }
  .hv-orbit-item--1 { margin-left: -30px; }
  .hv-orbit-item--4 { margin-left: -30px; }
}
@media (max-width: 768px) {
  .hero-visual { height: 340px; }
  .hv-center { width: 130px; height: 170px; }
  .hv-ring, .hv-orbit { width: 260px; height: 260px; }
  .hv-orbit { margin-left: -130px; margin-top: -130px; }
  .hv-orbit-item { width: 48px; height: 64px; border-radius: 10px; }
  .hv-orbit-item--1 { margin-left: -24px; }
  .hv-orbit-item--4 { margin-left: -24px; }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-visual { height: 600px; }
  .hv-center { width: 230px; height: 300px; }
  .hv-ring, .hv-orbit { width: 480px; height: 480px; }
  .hv-orbit { margin-left: -240px; margin-top: -240px; }
  .hv-orbit-item { width: 86px; height: 114px; }
  .hv-orbit-item--1 { margin-left: -43px; }
  .hv-orbit-item--4 { margin-left: -43px; }
}

/* ---- Bottom Nav Pills ---- */
.hero-nav-pills {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  padding: 24px 40px 32px;
}

.hnp-pill {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 600;
  color: #94A3B8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 14px; border-radius: 100px;
  text-decoration: none; transition: all 0.15s ease;
}
.hnp-pill:hover {
  background: rgba(255,255,255,0.08); color: #E2E8F0;
  border-color: rgba(255,255,255,0.12); transform: translateY(-1px);
}
.hnp-pill--accent { background: rgba(94,234,212,0.10); color: #5EEAD4; border-color: rgba(94,234,212,0.15); font-weight: 700; }
.hnp-pill--hot    { background: rgba(251,191,36,0.10); color: #FBBF24; border-color: rgba(251,191,36,0.15); font-weight: 700; }
.hnp-pill--dark   { background: rgba(148,163,184,0.08); color: #CBD5E1; border-color: rgba(148,163,184,0.12); font-weight: 700; }

/* ---- Mobile ---- */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 380px; max-width: 360px; margin: 0 auto; }
  .hero-orbit { transform: scale(0.82); }
  .hero-sourcing-strip { flex-direction: column; gap: 6px; text-align: center; }
  .hss-arrow { transform: rotate(90deg); }
  .hero-nav-pills { padding: 16px 20px 24px; }
}
@media (max-width: 768px) {
  .hero { padding-top: calc(var(--header-height) + 48px); }
  .hero-inner { padding: 32px 16px; gap: 20px; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 14px; }
  .hero-visual { height: 300px; max-width: 300px; }
  .hero-orbit { transform: scale(0.65); }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 20px; }
  .hero-nav-pills { gap: 4px; padding: 12px 12px 20px; }
  .hnp-pill { font-size: 11px; padding: 5px 10px; }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-inner { gap: 100px; }
  .hero-visual { height: 560px; }
  .hero-orbit { width: 500px; height: 500px; }
}


/* ========================================
   SECTIONS (Shared)
   ======================================== */
.section {
  padding: var(--section-padding) 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F1F5F9 0%, #EBEFF4 50%, #F1F5F9 100%);
}
.section::before {
  content: '';
  position: absolute; top: 0; left: 40px; right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
  z-index: 1; pointer-events: none;
}

.section--alt {
  background: linear-gradient(180deg, #E2E8F0 0%, #D9DFE7 50%, #E2E8F0 100%);
  position: relative;
}
/* Dark hero/sourcing sections */
.section--dark { background: #0A0F1E; }
.section--dark::before { background: none; }


/* Wholesale — bridges dark blue hero to cool light content */
.section--wholesale {
  background: linear-gradient(180deg, #1E293B 0%, #334155 50%, #E2E8F0 100%);
}
/* Wholesale section — light text on dark top portion */
.section--wholesale .section-tag,
.section--wholesale .section-title,
.section--wholesale .section-desc {
  color: #F1F5F9;
}
.section--wholesale .section-tag--accent {
  color: #F1F5F9;
  background: rgba(94,234,212,0.12);
  border: 1px solid rgba(94,234,212,0.2);
}
.section--wholesale .section-desc { color: #94A3B8; }

/* Decorative shape in section background */
.section-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.section-shape--top-right {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--color-mango), transparent);
  top: -100px; right: -100px;
}

/* Accent bar */
.section-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--color-mint), var(--color-lime));
}

.section-accent-bar--gradient {
  background: linear-gradient(90deg, var(--color-berry), var(--color-mango), var(--color-lime), var(--color-mint), var(--color-grape));
}

.section-accent-bar--usa {
  background: linear-gradient(90deg, #1565C0, #42A5F5, #90CAF9);
}

.section-accent-bar--me {
  background: linear-gradient(90deg, #7B1FA2, #AB47BC, #CE93D8);
}

.section-accent-bar--ru {
  background: linear-gradient(90deg, #E65100, #FF9800, #FFB74D);
}
.section-accent-bar--uk {
  background: linear-gradient(90deg, #1a3a5c, #2B5F8E, #C8102E);
}
.section-accent-bar--eu {
  background: linear-gradient(90deg, #003399, #0055A4, #FFCC00);
}
.section-accent-bar--af {
  background: linear-gradient(90deg, #008751, #009540, #FFC72C);
}

/* Empty market placeholder */
.empty-market {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 2px dashed var(--border-light);
}
.empty-market p {
  font-size: 16px; color: var(--text-secondary);
  margin: 0 0 8px;
}
.empty-market p:first-child {
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
}

/* Decorative wave */
.section-wave {
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C240,120 480,0 720,60 C960,120 1200,0 1440,60 L1440,0 L0,0 Z' fill='%23FAF8F3'/%3E%3C/svg%3E") center/cover no-repeat;
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* ========================================
   BRAND SHOWCASE STRIP
   ======================================== */
.brand-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}
.brand-strip::before,
.brand-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.brand-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.brand-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.brand-strip-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 8px 40px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  cursor: default;
  white-space: nowrap;
}
.brand-chip:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.brand-chip--gold {
  background: linear-gradient(135deg, #FFFBEB, #FFF7E0);
  border-color: #F59E0B40;
  color: #92400E;
  font-weight: 700;
}
.brand-chip--gold:hover {
  border-color: #F59E0B;
  box-shadow: 0 4px 16px rgba(245,158,11,0.15);
}

.section--flush {
  padding-top: 0;
}

/* ========================================
   WHOLESALE / OEM CONVERSION SECTION
   ======================================== */
.section-tag--accent {
  background: var(--accent);
  color: #fff !important;
}

.section-tag--hot {
  background: linear-gradient(135deg, #DC2626, #EA580C);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 22px;
  letter-spacing: 0.06em;
  animation: tag-hot-pulse 2s ease-in-out infinite;
}

@keyframes tag-hot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(234,88,12,0); }
}

.section-title--hot {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section--value {
  background: linear-gradient(180deg, #FFFBF5 0%, #FFF3E0 30%, #FFEDD5 60%, #FEF3C7 100%);
  position: relative;
}
.section--value::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #DC2626, #EA580C, #F59E0B);
  z-index: 1;
}

/* ========================================
   SOURCING — Dark Section
   ======================================== */
.section--dark {
  background: linear-gradient(180deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -100px; right: -200px;
  background: radial-gradient(circle, rgba(13,148,136,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section--dark::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(245,158,11,0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-tag--dark {
  background: rgba(255,255,255,0.1);
  color: #5EEAD4;
  border: 1px solid rgba(94,234,212,0.2);
}

.sourcing-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sourcing-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sourcing-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.sourcing-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.sourcing-desc strong {
  color: #5EEAD4;
}

.sourcing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sourcing-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sourcing-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.sourcing-item strong {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.sourcing-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* Sourcing Visual Card */
.sourcing-visual {
  display: flex;
  justify-content: center;
}

.sv-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  display: block;
}

.sv-requirement,
.sv-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-requirement span,
.sv-result span {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
}
.sv-requirement span {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  border: 1px dashed rgba(255,255,255,0.1);
}
.sv-result span {
  background: rgba(94,234,212,0.08);
  color: #5EEAD4;
  border: 1px solid rgba(94,234,212,0.15);
}

.sv-arrow {
  text-align: center;
  font-size: 28px;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .sourcing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sourcing-title { font-size: 28px; }
  .sv-card { padding: 24px; }
}

.wholesale-grid {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wholesale-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.wholesale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.wc-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.wc-title {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.wc-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.6;
}

/* Wholesale CTA */
.wholesale-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px 40px;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 40px rgba(13,148,136,0.08);
}

.wholesale-cta h3 {
  font-size: 26px; font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.wholesale-cta p {
  font-size: 15px; color: var(--text-secondary);
  margin-bottom: 28px;
}

.wholesale-cta-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 16px; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-xl {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .wholesale-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wholesale-card { padding: 24px 16px; }
  .wc-title { font-size: 15px; }
  .wholesale-cta { padding: 32px 24px; }
  .wholesale-cta h3 { font-size: 22px; }
}
@media (max-width: 480px) {
  .wholesale-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all var(--duration-normal) var(--ease-bounce);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Category image wrapper */
.cat-image-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-out);
}

.category-card:hover .cat-img {
  transform: scale(1.06);
}

.cat-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

/* Open system card background */
.cat-open .cat-image-wrap {
  background: linear-gradient(135deg, #263238, #37474F);
}

/* Accessory card background */
.cat-accessory .cat-image-wrap {
  background: linear-gradient(135deg, #4A148C, #6A1B9A);
}

.category-card:hover .cat-svg {
  transform: scale(1.05);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.cat-badge {
  position: absolute;
  top: 12px; right: 12px; z-index: 2;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cat-badge--green  { background: #C8E6C9; color: #2E7D32; }
.cat-badge--blue   { background: #BBDEFB; color: #1565C0; }
.cat-badge--orange { background: #FFE0B2; color: #E65100; }
.cat-badge--purple { background: #E1BEE7; color: #6A1B9A; }

/* Category body */
.cat-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.cat-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.category-card:hover .cat-link { text-decoration: underline; }

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cat-image-wrap { height: 130px; }
  .cat-body { padding: 14px 16px 18px; }
  .cat-name { font-size: 15px; }
  .cat-desc { font-size: 12px; }
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: #FAF9F6;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  position: relative;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #14b8a6, #06b6d4);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  border-color: rgba(13,148,136,0.12);
}
.product-card:hover::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 0%, rgba(13,148,136,0.03) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}

/* Product Images — clean, product-focused */
.product-image {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.008) 0%,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0.004) 100%);
}

/* Product real image */
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

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

/* Product Placeholder (no image available) */
.product-placeholder-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #CBD5E1 100%);
  z-index: 1;
  padding: 24px;
}
.product-placeholder-card::before {
  content: '💨';
  font-size: 48px;
  margin-bottom: 6px;
  opacity: 0.6;
}

.product-placeholder-card .pp-brand {
  font-size: 12px; font-weight: 800;
  color: var(--accent); letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 100px;
}

.product-placeholder-card .pp-name {
  font-size: 15px; font-weight: 700;
  color: var(--text-primary); text-align: center;
  max-width: 90%;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ========================================
   PRODUCT DETAIL MODAL (Full Flavor Matrix)
   ======================================== */
.detail-overlay {
  position: fixed; inset: 0; z-index: 9996;
  display: flex; align-items: flex-start; justify-content: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.detail-overlay.open {
  opacity: 1; visibility: visible;
}

.detail-modal {
  background: var(--bg-card);
  border-radius: 28px;
  max-width: 960px; width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 10px 30px rgba(0,0,0,0.10);
  border: 1px solid var(--border-light);
  position: relative;
  animation: qv-slide-in 0.45s var(--ease-out);
  margin: auto;
}

.detail-close {
  position: absolute;
  top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06);
  font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}
.detail-close:hover { background: var(--text-primary); color: #fff; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.detail-image {
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  min-height: 460px;
  position: relative;
}

.detail-no-image {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 40px; text-align: center;
}

.detail-no-image .dni-brand {
  font-size: 16px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.detail-no-image .dni-name {
  font-size: 20px; font-weight: 600; color: var(--text-primary);
}

.detail-info {
  padding: 36px 32px;
  display: flex; flex-direction: column;
  overflow-y: auto; max-height: 70vh;
}

.detail-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent); background: var(--accent-light);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 10px; width: fit-content;
}

.detail-name {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 20px;
  line-height: 1.2;
}

.detail-spec-table {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 20px;
  background: var(--bg-secondary);
  border-radius: 14px;
  padding: 4px;
}

.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  transition: background 0.15s ease;
}
.spec-row:hover {
  background: var(--bg-card);
}

.spec-row span:first-child {
  color: var(--text-tertiary); font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em;
}

.spec-row span:last-child {
  font-weight: 600; text-align: right;
  color: var(--text-primary);
  font-size: 13px;
}

.detail-price {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.price-inquire-badge {
  font-size: 14px; font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.price-inquire-sub {
  font-size: 12px; color: var(--text-tertiary);
  line-height: 1.4;
}

.detail-flavors-title {
  font-size: 15px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.01em;
}

.detail-flavors {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}

.flavor-chip {
  display: flex; align-items: center; gap: 5px;
  background: var(--bg-secondary);
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: default;
}

.flavor-chip:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.fc-icon { font-size: 16px; }

.detail-inquire { width: 100%; margin-top: auto; }

/* PDP — Related Products */
.detail-related {
  border-top: 1px solid var(--border-light);
  padding: 28px 32px;
  display: none;
}

.detail-related-title {
  font-size: 16px; font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.detail-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.rp-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--border-light);
  transition: all var(--duration-fast) var(--ease-out);
}
.rp-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rp-card-img {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary);
  overflow: hidden;
}
.rp-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.rp-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

.rp-card-body {
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}

.rp-card-brand {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--accent);
}

.rp-card-name {
  font-size: 13px; font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.rp-card-price {
  font-size: 12px; font-weight: 700;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* PDP — Enhanced No-Image Placeholder */
.detail-no-image .dni-icon {
  font-size: 52px; margin-bottom: 10px;
}
.detail-no-image .dni-hint {
  font-size: 12px; color: var(--text-tertiary);
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-image {
    border-radius: 20px 20px 0 0;
    min-height: 200px;
  }
  .detail-info { padding: 24px 20px; max-height: none; }
  .detail-name { font-size: 22px; }
  .detail-modal {
    border-radius: 20px;
    margin: 60px auto 20px;
  }
  .detail-related {
    padding: 20px;
  }
  .detail-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .rp-card-name { font-size: 12px; }
}

/* Product SVG illustration (fallback) */
.product-svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.product-card:hover .product-svg {
  transform: translateY(-6px) scale(1.04);
}

.product-gradient-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Vivid product image backgrounds */
.product-img--mango { background: linear-gradient(135deg, #FFF3E0, #FFE0B2, #FFCC80, #FFB74D); }
.product-img--berry { background: linear-gradient(135deg, #FCE4EC, #F8BBD0, #E1BEE7, #CE93D8); }
.product-img--mint  { background: linear-gradient(135deg, #E0F7FA, #B2EBF2, #80DEEA, #4DD0E1); }
.product-img--grape { background: linear-gradient(135deg, #EDE7F6, #D1C4E9, #B39DDB, #CE93D8); }
.product-img--lime  { background: linear-gradient(135deg, #F1F8E9, #DCEDC8, #C5E1A5, #AED581); }
.product-img--pod   { background: linear-gradient(135deg, #ECEFF1, #CFD8DC, #B0BEC5, #90A4AE); }

.product-flavor-dots {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.flv-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.product-image-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 10px; font-weight: 700;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 10px; border-radius: 100px;
  color: var(--text-primary);
  letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-stock-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-size: 10px; font-weight: 700;
  background: rgba(16,185,129,0.12);
  color: #059669;
  padding: 5px 10px; border-radius: 100px;
  letter-spacing: 0.02em;
}
.product-brand-label {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent); margin-bottom: 4px;
}
.product-flavor-chips {
  display: flex; flex-wrap: wrap;
  gap: 4px; margin-bottom: 8px;
}
.flavor-mini-chip {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  background: var(--bg-secondary);
  padding: 2px 8px; border-radius: 100px;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.flavor-mini-chip--more {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
}
.product-spec-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-secondary);
  margin-bottom: 8px;
}
.psr-item { font-weight: 500; }
.psr-sep { color: var(--border-light); }
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}
.product-price {
  font-size: 13px; font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}
.product-moq {
  font-size: 10px; font-weight: 700;
  color: var(--accent); background: var(--accent-light);
  padding: 3px 10px; border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-image-label {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
}

.product-body {
  padding: 14px 16px 18px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product tag line */
.product-tag-line {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Product CTA — Primary conversion action */
.product-inquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid var(--accent);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.product-inquire:hover {
  gap: 10px;
  border-bottom-color: #0b7f7a;
  color: #0b7f7a;
}


.product-card:hover .product-inquire { text-decoration: underline; }

/* ========================================
   BENEFITS (Why Us)
   ======================================== */
.benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all var(--duration-normal) var(--ease-bounce);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Colorful benefit icons */
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.benefit-card:hover .benefit-icon { transform: scale(1.08) rotate(-3deg); }

.benefit-icon--1 { background: linear-gradient(135deg, #E0F7FA, #B2EBF2); color: #0097A7; }
.benefit-icon--2 { background: linear-gradient(135deg, #F3E5F5, #E1BEE7); color: #7B1FA2; }
.benefit-icon--3 { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); color: #E65100; }
.benefit-icon--4 { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); color: #2E7D32; }

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Cert Badge Strip */
.cert-strip {
  max-width: var(--max-width);
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text-primary);
}

/* Section Bottom CTA */
.section-cta-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scb-note {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ========================================
   FLAVOR SPECTRUM
   ======================================== */
.flavor-section {
  position: relative;
}

.flavor-spectrum {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.flavor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.flavor-item:hover {
  transform: translateY(-6px);
}

.flavor-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all var(--duration-normal) var(--ease-bounce);
  box-shadow: var(--shadow-md);
  cursor: default;
}

.flavor-item:hover .flavor-circle {
  box-shadow: var(--shadow-lg);
  transform: scale(1.12);
}

.flavor-circle--berry    { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.flavor-circle--citrus   { background: linear-gradient(135deg, #FFF8E1, #FFECB3); }
.flavor-circle--tropical { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.flavor-circle--mint     { background: linear-gradient(135deg, #E0F7FA, #B2EBF2); }
.flavor-circle--drink    { background: linear-gradient(135deg, #F3E5F5, #E1BEE7); }
.flavor-circle--dessert  { background: linear-gradient(135deg, #EFEBE9, #D7CCC8); }

.flavor-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ========================================
   PARTNER BRANDS
   ======================================== */
.partners-section {
  background: var(--bg-primary);
}

.partners-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: default;
}

.partner-logo:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ========================================
   CTA / CONTACT
   ======================================== */
.cta-section {
  padding: var(--section-padding) 40px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #F8F6F1 50%, var(--bg-secondary) 100%);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.04), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Form */
.cta-form-wrapper {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  text-align: left;
}

.cta-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-label {
  font-size: 12px; font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.form-input::placeholder { color: var(--text-tertiary); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background: #fff;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

textarea.form-input { resize: vertical; min-height: 100px; }

.cta-form .btn { margin-top: 8px; width: 100%; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.btn-full { width: 100%; }

/* ========================================
   STICKY MOBILE CTA BAR
   ======================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  display: flex;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 10px;
}

.sticky-cta-btn {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: 14px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.sticky-cta-btn--form {
  background: var(--accent);
  color: #fff;
}
.sticky-cta-btn--form:hover {
  background: #0b7f7a;
  transform: translateY(-1px);
}

.sticky-cta-btn--wa {
  background: #25D366;
  color: #fff;
}
.sticky-cta-btn--wa:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

/* Desktop: hide sticky bar */
@media (min-width: 1025px) {
  .sticky-cta-bar { display: none; }
}

/* Mobile: push footer up so sticky bar doesn't cover it */
@media (max-width: 1024px) {
  .footer { padding-bottom: 100px; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 72px 40px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

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

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 13px; color: var(--text-tertiary); }

/* ========================================
   AGE VERIFICATION OVERLAY
   ======================================== */
.age-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1; visibility: visible;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.age-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-modal {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  animation: age-modal-in 0.5s var(--ease-out);
}

@keyframes age-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-modal-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.age-modal-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.age-modal-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto; margin-right: auto;
}

.age-modal-desc strong { color: var(--text-primary); font-weight: 600; }

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.age-modal-actions .btn { width: 100%; }
.age-modal-note { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; }

/* Denied state */
.age-denied .age-modal { animation: none; }
.age-denied .age-modal-icon { background: #FEF2F2; color: #DC2626; }

/* ========================================
   COUNTRY / REGION SELECTOR OVERLAY
   ======================================== */
.country-overlay {
  position: fixed; inset: 0; z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1; visibility: visible;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.country-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.country-modal {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 44px 40px 36px;
  max-width: 540px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  animation: age-modal-in 0.5s var(--ease-out);
}

.country-modal-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.country-modal-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.country-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--duration-normal) var(--ease-bounce);
  text-align: left;
}

.country-option:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.country-flag {
  font-size: 28px;
  flex-shrink: 0;
}

.country-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}

.country-lang {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.country-modal-note {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ========================================
   RTL — Arabic Support
   ======================================== */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .header-inner { flex-direction: row; }
html[dir="rtl"] .nav-list { flex-direction: row; }
html[dir="rtl"] .hero-inner { direction: rtl; }
html[dir="rtl"] .hero-actions { justify-content: flex-start; }
html[dir="rtl"] .hero-stats { flex-direction: row; }

html[dir="rtl"] .category-card { text-align: right; }
html[dir="rtl"] .cat-badge { right: auto; left: 16px; }
html[dir="rtl"] .product-image-tag { left: auto; right: 16px; }
html[dir="rtl"] .product-flavor-dots { right: auto; left: 16px; }
html[dir="rtl"] .product-body { text-align: right; }

html[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
html[dir="rtl"] .lang-option { text-align: right; }
html[dir="rtl"] .wa-btn { right: auto; left: 28px; }

html[dir="rtl"] .footer { text-align: right; }
html[dir="rtl"] .country-option { text-align: right; }
html[dir="rtl"] .country-option:hover { transform: translateX(-4px); }

/* ========================================
   PRODUCT QUICK VIEW MODAL
   ======================================== */
.quickview-overlay {
  position: fixed; inset: 0; z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}

.quickview-overlay.open {
  opacity: 1; visibility: visible;
}

.quickview-modal {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 800px;
  width: calc(100% - 48px);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  animation: qv-slide-in 0.4s var(--ease-out);
}

@keyframes qv-slide-in {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.quickview-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 2;
  transition: all var(--duration-fast);
}

.quickview-close:hover {
  background: var(--text-primary);
  color: #fff;
}

.quickview-image {
  min-height: 320px;
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quickview-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quickview-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}

.quickview-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.quickview-spec {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.quickview-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.quickview-flavors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.quickview-flavor-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}

.quickview-body .btn { width: 100%; }

/* Product Card Click Cursor */
.product-card {
  cursor: pointer;
}

/* Product image vape silhouette */
.product-vape-svg {
  position: relative;
  z-index: 2;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .quickview-modal {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }
  .quickview-image {
    min-height: 200px;
    border-radius: 24px 24px 0 0;
  }
  .quickview-body { padding: 28px 24px; }
  .quickview-name { font-size: 22px; }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-bounce);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: none;
}

.wa-btn:active { transform: translateY(-1px) scale(0.98); }

.wa-btn-label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50%      { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ========================================
   RESPONSIVE — Mobile
   ======================================== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s var(--ease-in-out);
    z-index: 100;
  }

  .nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: center; gap: 36px; }
  .nav-link { font-size: 24px; font-weight: 600; }
  .menu-toggle { display: flex; }
  .header .btn { display: none; }
  .header-actions { gap: 8px; }
  .lang-current { padding: 6px 10px; font-size: 12px; }
  .lang-current span:last-child { display: none; }
  .lang-current svg { display: none; }
  .hero-markets { justify-content: center; }
  .hero-markets-label { width: 100%; text-align: center; }
  main { padding-top: 34px; }
  .trust-bar-inner { padding: 0 16px; gap: 10px; }
  .trust-bar-item { font-size: 11px; }
  .trust-bar-divider { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .partner-logo { padding: 18px 10px; font-size: 12px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-text { max-width: 100%; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; gap: 32px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-image-wrap { height: 130px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }

  .flavor-spectrum { gap: 24px; }
  .flavor-circle { width: 64px; height: 64px; font-size: 26px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .partner-logo { padding: 20px 12px; font-size: 13px; }
  .trust-bar-inner { gap: 12px; padding: 0 24px; }
  .trust-bar-item { font-size: 11px; }
  .trust-bar-divider { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: var(--section-padding-mobile) 24px; }
  .cta-section { padding: var(--section-padding-mobile) 24px; }
  .cta-form-wrapper { padding: 28px 20px; }
  .header-inner { padding: 0 24px; }
  .footer { padding: 56px 24px 28px; }

  .age-modal { padding: 36px 24px 28px; }
  .age-modal-title { font-size: 24px; }
  .age-modal-desc { font-size: 15px; }

  .wa-btn { bottom: 20px; right: 16px; padding: 12px 20px; }
  .wa-btn-label { display: none; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-inner { gap: 48px; padding: 60px 32px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 100px 32px; }
  .cta-section { padding: 100px 32px; }
  .header-inner { padding: 0 32px; }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-inner { gap: 100px; }
  .hero-visual { height: 560px; }
  .hero-orbit { width: 500px; height: 500px; }
}
