/* ═══════════════════════════════════════════════════════════════════
   VapeForge Theme — Main Stylesheet
   Color Palette: Dark bg · Orange #ff5e00 · Amber/Yellow #ffb800
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. Variables ─────────────────────────────────────────────────── */
:root {
  --bg:          #0b0b0b;
  --bg2:         #141414;
  --bg3:         #1c1c1c;
  --bg4:         #242424;
  --border:      rgba(255,255,255,0.07);
  --orange:      #ff5e00;
  --amber:       #ffb800;
  --grad:        linear-gradient(135deg, #ff5e00 0%, #ffb800 100%);
  --grad-rev:    linear-gradient(135deg, #ffb800 0%, #ff5e00 100%);
  --text:        #f0f0f0;
  --text-muted:  #888888;
  --text-faint:  #555555;
  --white:       #ffffff;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow:      0 4px 32px rgba(0,0,0,0.5);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.4);
  --glow-orange: 0 0 40px rgba(255,94,0,0.25);
  --glow-amber:  0 0 40px rgba(255,184,0,0.2);
  --font-head:   'Rajdhani', 'Inter', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --header-h:    72px;
  --topbar-h:    36px;
  --transition:  0.25s ease;
}

/* ─── 2. Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── 3. Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); font-size: 0.95rem; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── 4. Layout Utilities ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.section { padding-block: clamp(48px, 7vw, 96px); }

.section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-header--row {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 12px; }
.section-desc { max-width: 560px; margin-inline: auto; }

/* ─── 5. Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn .vf-icon { width: 16px; height: 16px; flex-shrink: 0; }
.btn .vf-icon svg { width: 100%; height: 100%; }

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,94,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,94,0,0.5);
  filter: brightness(1.1);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,94,0,0.05);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-disabled { background: var(--bg4); color: var(--text-faint); cursor: not-allowed; }

/* ─── 6. Icons ─────────────────────────────────────────────────────── */
.vf-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vf-icon svg { width: 1em; height: 1em; }

/* ─── 7. Header ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

/* Topbar */
.header-topbar {
  background: linear-gradient(90deg, #1a0a00, #0d0d0d 40%, #1a0a00);
  border-bottom: 1px solid rgba(255,94,0,0.15);
  height: var(--topbar-h);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.topbar-left .vf-icon { color: var(--orange); width: 14px; height: 14px; }
.topbar-left strong { color: var(--amber); }
/* Rotating topbar announcements */
.topbar-announcements {
  position: relative;
  height: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.topbar-announcement {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 0.78rem;
  color: var(--text-muted);
  pointer-events: none;
}
.topbar-announcement--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.topbar-announcement strong { color: var(--amber); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}
.topbar-right a { color: var(--text-muted); transition: color var(--transition); }
.topbar-right a:hover { color: var(--orange); }
.topbar-sep { color: var(--text-faint); }
.age-badge {
  background: rgba(255,94,0,0.15);
  border: 1px solid rgba(255,94,0,0.3);
  color: var(--orange) !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Main Header */
.header-main {
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.site-logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}
.site-logo .vf-icon, .footer-logo .vf-icon {
  color: var(--orange);
  width: 26px; height: 26px;
  filter: drop-shadow(0 0 8px rgba(255,94,0,0.6));
}
.logo-accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Nav */
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-menu > li.current-menu-item > a { color: var(--orange); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-menu .sub-menu li a:hover { background: rgba(255,94,0,0.08); color: var(--orange); }

/* Header Action Buttons */
.header-actions { display: flex; align-items: center; gap: 4px; }
.hdr-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition);
  position: relative;
}
.hdr-btn .vf-icon { width: 20px; height: 20px; }
.hdr-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.btn-cart { color: var(--text); }
.cart-bubble {
  position: absolute;
  top: 4px; right: 4px;
  width: 17px; height: 17px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* Hamburger — only shows when menu is open */
.btn-hamburger .vf-icon:last-child { display: none; }
.btn-hamburger.is-open .vf-icon:first-child { display: none; }
.btn-hamburger.is-open .vf-icon:last-child { display: flex; }

/* Search Drawer */
.search-drawer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.search-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
}
.search-form .vf-icon { color: var(--text-faint); width: 18px; height: 18px; }
.search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
}
.search-form input::placeholder { color: var(--text-faint); }
.search-close { color: var(--text-muted); padding: 4px; border-radius: 4px; }
.search-close:hover { color: var(--orange); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.mobile-nav { padding: 16px; flex: 1; }
.mobile-nav-list li a {
  display: block;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav-list li a:hover { color: var(--white); background: rgba(255,94,0,0.08); padding-left: 22px; }
.mobile-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-footer p { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 12px; }
.mobile-social { display: flex; gap: 12px; }
.mobile-social a { color: var(--text-muted); transition: color var(--transition); }
.mobile-social a .vf-icon { width: 20px; height: 20px; }
.mobile-social a:hover { color: var(--orange); }

/* Body offset for fixed header */
body { padding-top: calc(var(--topbar-h) + var(--header-h)); }

/* ─── 8. Hero Slider ───────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: clamp(520px, 85vh, 820px);
}
.slider-track {
  position: relative;
  width: 100%; height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.slide.slide-exit {
  opacity: 0;
  transform: translateX(-60px);
}

/* Slide backgrounds */
.slide-bg { position: absolute; inset: 0; overflow: hidden; }

/* Slide 1 — photo background */
.slide-1 .slide-bg {
  background:
    url('../images/slides/slide-1.jpg') center 42% / cover no-repeat,
    var(--bg);
}
/* Left-to-right gradient overlay so text stays readable */
.slide-1 .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11,11,11,1.00)  0%,
    rgba(11,11,11,0.94) 28%,
    rgba(11,11,11,0.60) 52%,
    rgba(11,11,11,0.18) 72%,
    rgba(11,11,11,0.00) 100%
  );
}
/* Bottom fade for polish */
.slide-1 .slide-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #0b0b0b, transparent);
  z-index: 1;
}

/* Slide 2 — photo background */
.slide-2 .slide-bg {
  background:
    url('../images/slides/slide-2.png') center center / cover no-repeat,
    var(--bg);
}
.slide-2 .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 45%, transparent 70%);
  z-index: 1;
}

/* Slide 3 — photo background */
.slide-3 .slide-bg {
  background:
    url('../images/slides/slide-3.png') center center / cover no-repeat,
    var(--bg);
}
.slide-3 .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 45%, transparent 70%);
  z-index: 1;
}

.slide-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.slide-glow--orange { width: 500px; height: 500px; background: rgba(255,94,0,0.2); top: -10%; right: 5%; }
.slide-glow--yellow { width: 400px; height: 400px; background: rgba(255,184,0,0.18); top: 5%; left: 10%; }
.slide-glow--dual {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,94,0,0.15) 0%, rgba(255,184,0,0.1) 50%, transparent 70%);
  top: -20%; right: -10%;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.slide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,94,0,0.3);
  background: rgba(255,94,0,0.08);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.slide-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.slide-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slide-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slide 1 — hide the CSS mockup; photo background provides the visual */
.slide-1 .slide-visual--1 { pointer-events: none; }
.slide-1 .device-mockup { display: none; }
/* Give slide 1 text column extra breathing room */
.slide-1 .slide-inner { grid-template-columns: 1fr 0.6fr; }

/* Slides 2 & 3 — image has baked-in text; show only CTA buttons at bottom */
.slide-2 .slide-inner,
.slide-3 .slide-inner {
  grid-template-columns: 1fr;
  align-items: flex-end;
  padding-bottom: 40px;
}
.slide-2 .slide-tag,
.slide-2 .slide-title,
.slide-2 .slide-desc,
.slide-3 .slide-tag,
.slide-3 .slide-title,
.slide-3 .slide-desc { display: none; }
.slide-2 .slide-visual,
.slide-3 .slide-visual { display: none; }
.slide-2 .slide-glow,
.slide-3 .slide-glow { display: none; }

/* Device Mockups */
.slide-visual { display: flex; justify-content: center; align-items: center; }
.device-mockup { position: relative; }

/* Mod shape */
.mod-shape { width: 140px; height: 240px; }
.device-body {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2a1a00 0%, #1a1a1a 40%, #111 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,94,0,0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,94,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.device-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(255,94,0,0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulseGlow 3s ease-in-out infinite;
}
.device-glow--yellow {
  background: radial-gradient(circle, rgba(255,184,0,0.3) 0%, transparent 70%);
}
.device-screen {
  margin: 16px 12px 12px;
  background: linear-gradient(135deg, #1a1000, #0d0d0d);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.screen-watt {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.screen-label {
  display: block;
  font-size: 0.55rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.device-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
}
.device-buttons span {
  display: block;
  height: 4px;
  border-radius: 2px;
}
.device-buttons span:nth-child(1) { background: var(--orange); width: 100%; }
.device-buttons span:nth-child(2) { background: rgba(255,255,255,0.1); width: 70%; }
.device-buttons span:nth-child(3) { background: rgba(255,255,255,0.07); width: 50%; }

/* Tank shape */
.tank-shape { width: 80px; height: 200px; }
.tank-body { width: 100%; height: 100%; position: relative; }
.tank-top {
  width: 60%; height: 20%;
  background: linear-gradient(135deg, #2a2000, #1a1a1a);
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(255,184,0,0.2);
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(255,184,0,0.2);
}
.tank-glass {
  width: 100%; height: 55%;
  background: linear-gradient(135deg, rgba(255,184,0,0.08), rgba(255,94,0,0.04));
  border: 1px solid rgba(255,184,0,0.15);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.tank-glass::after {
  content: '';
  position: absolute;
  left: 20%; top: 20%; right: 20%; bottom: 20%;
  background: rgba(255,184,0,0.06);
  border-radius: 50%;
}
.tank-base {
  width: 100%; height: 25%;
  background: linear-gradient(135deg, #2a2000, #111);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px rgba(255,184,0,0.15);
}

/* Battery cluster */
.battery-cluster { display: flex; gap: 12px; align-items: flex-end; }
.battery-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(255,184,0,0.2);
}
.cell-1 {
  width: 44px; height: 180px;
  background: linear-gradient(180deg, #333 0%, #1a1200 30%, #0d0d0d 100%);
  border: 1px solid rgba(255,184,0,0.25);
  color: var(--amber);
}
.cell-2 {
  width: 44px; height: 140px;
  background: linear-gradient(180deg, #333 0%, #1a1200 30%, #0d0d0d 100%);
  border: 1px solid rgba(255,94,0,0.25);
  color: var(--orange);
}
.cell-3 {
  width: 44px; height: 160px;
  background: linear-gradient(180deg, #333 0%, #1a1200 30%, #0d0d0d 100%);
  border: 1px solid rgba(255,184,0,0.2);
  color: var(--text-muted);
}
.battery-cell span { transform: rotate(180deg); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.slider-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.slider-btn .vf-icon { width: 18px; height: 18px; }
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.25);
  transition: all 0.35s ease;
}
.dot.active { background: var(--orange); width: 28px; }
.slider-progress-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--grad);
  width: 0;
  transition: width 0.1s linear;
}

/* ─── 9. Features Bar ──────────────────────────────────────────────── */
.features-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item .vf-icon {
  width: 36px; height: 36px;
  color: var(--orange);
  flex-shrink: 0;
}
.feature-item .vf-icon svg { width: 100%; height: 100%; }
.feature-item-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  width: 100%;
}
.feature-item-link:hover .feature-text strong { color: var(--orange); }
.feature-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1px;
}
.feature-text span { font-size: 0.78rem; color: var(--text-faint); }

/* ─── 10. Collections ──────────────────────────────────────────────── */
.collections-section { background: var(--bg); }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius);
}
.cat-box-mods::before    { background: radial-gradient(ellipse at 50% 0%, rgba(255,94,0,0.12) 0%, transparent 70%); }
.cat-tanks-rdas::before  { background: radial-gradient(ellipse at 50% 0%, rgba(0,150,255,0.1) 0%, transparent 70%); }
.cat-batteries::before   { background: radial-gradient(ellipse at 50% 0%, rgba(255,184,0,0.1) 0%, transparent 70%); }
.cat-accessories::before { background: radial-gradient(ellipse at 50% 0%, rgba(180,100,255,0.1) 0%, transparent 70%); }

.collection-card:hover { border-color: rgba(255,94,0,0.25); transform: translateY(-4px); box-shadow: var(--shadow-card), 0 0 30px rgba(255,94,0,0.06); }
.collection-card:hover::before { opacity: 1; }

.collection-icon-wrap {
  position: relative;
  width: 56px; height: 56px;
  background: rgba(255,94,0,0.08);
  border: 1px solid rgba(255,94,0,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.cat-tanks-rdas .collection-icon-wrap  { background: rgba(0,150,255,0.08); border-color: rgba(0,150,255,0.15); }
.cat-batteries .collection-icon-wrap   { background: rgba(255,184,0,0.08); border-color: rgba(255,184,0,0.15); }
.cat-accessories .collection-icon-wrap { background: rgba(180,100,255,0.08); border-color: rgba(180,100,255,0.15); }

.collection-icon-wrap .vf-icon { width: 28px; height: 28px; color: var(--orange); }
.cat-tanks-rdas  .collection-icon-wrap .vf-icon { color: #0096ff; }
.cat-batteries   .collection-icon-wrap .vf-icon { color: var(--amber); }
.cat-accessories .collection-icon-wrap .vf-icon { color: #b464ff; }

.collection-info { flex: 1; }
.collection-info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.collection-info p  { font-size: 0.82rem; color: var(--text-faint); line-height: 1.5; }
.product-count { display: inline-block; font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-top: 8px; }

.collection-arrow { color: var(--text-faint); transition: all var(--transition); }
.collection-arrow .vf-icon { width: 18px; height: 18px; }
.collection-card:hover .collection-arrow { color: var(--orange); transform: translateX(4px); }

/* ─── 11. Products Grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Product Card */
.product-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.product-card:hover {
  border-color: rgba(255,94,0,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(255,94,0,0.05);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg4);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.product-img-placeholder .vf-icon { width: 48px; height: 48px; opacity: 0.4; }
.product-img-placeholder .vf-icon svg { width: 100%; height: 100%; }
.product-card:hover .product-img-placeholder { transform: scale(1.05); }

/* Placeholder gradients */
.cat-box-mods    .product-img-placeholder, .product-img-placeholder.cat-box-mods    { background: linear-gradient(135deg, #150600 0%, #2d1000 40%, #1a0a00 100%); }
.cat-tanks-rdas  .product-img-placeholder, .product-img-placeholder.cat-tanks-rdas  { background: linear-gradient(135deg, #00061a 0%, #001430 40%, #001a24 100%); }
.cat-batteries   .product-img-placeholder, .product-img-placeholder.cat-batteries   { background: linear-gradient(135deg, #1a1000 0%, #2d1e00 40%, #1a1400 100%); }
.cat-accessories .product-img-placeholder, .product-img-placeholder.cat-accessories { background: linear-gradient(135deg, #10001a 0%, #200030 40%, #160024 100%); }

/* Badges */
.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-new  { background: var(--orange);  color: #fff; }
.badge-hot  { background: var(--amber);   color: #000; }
.badge-sale { background: #e53e3e;        color: #fff; }

/* Hover Actions */
.product-hover-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}
.product-card:hover .product-hover-actions {
  opacity: 1;
  transform: translateX(0);
}
.pact-btn {
  width: 34px; height: 34px;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.pact-btn .vf-icon { width: 15px; height: 15px; }
.pact-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Product Info */
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1; /* stretch card info to full card height */
}
.product-cat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a { color: inherit; transition: color var(--transition); }
.product-name a:hover { color: var(--orange); }

.product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.star .vf-icon { width: 12px; height: 12px; color: var(--text-faint); }
.star.filled .vf-icon { color: var(--amber); }
.rating-count { font-size: 0.72rem; color: var(--text-faint); margin-left: 4px; }

.product-price-row { margin-bottom: 12px; margin-top: auto; /* push price + button to bottom */ }
.product-price-row .price,
.product-price-row ins .amount {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.product-price-row del { color: var(--text-faint); font-size: 0.85rem; margin-right: 6px; }
.product-price-row del .amount { text-decoration: line-through; }
.product-price-row ins { text-decoration: none; }
.product-price-row ins .amount { color: var(--orange); }

/* Add to Cart button — fixed full width of info box, consistent height */
.btn-add-cart {
  font-size: 0.85rem;
  padding: 10px 16px;
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
/* Equal-height cards in all grids */
.products-grid .product-card,
.products-grid--4 .product-card {
  display: flex;
  flex-direction: column;
}

.no-products { grid-column: 1 / -1; text-align: center; padding: 48px 0; color: var(--text-faint); }
.no-products a { color: var(--orange); }

/* ─── 12. Promo Banner ─────────────────────────────────────────────── */
.promo-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.promo-bg { position: absolute; inset: 0; }
.promo-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.promo-glow--left  { background: rgba(255,94,0,0.12); left: -20%; top: -20%; }
.promo-glow--right { background: rgba(255,184,0,0.08); right: -15%; bottom: -20%; }

.promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.promo-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,94,0,0.3);
  background: rgba(255,94,0,0.08);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.promo-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}
.promo-desc { max-width: 500px; margin-bottom: 32px; font-size: 1rem; }
.promo-desc strong { color: var(--amber); }
.promo-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Countdown */
.promo-countdown { display: flex; align-items: center; gap: 4px; }
.countdown-unit { text-align: center; min-width: 52px; }
.countdown-unit span {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.countdown-unit label { display: block; font-size: 0.65rem; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.countdown-sep { font-size: 1.5rem; font-weight: 700; color: var(--orange); padding-bottom: 12px; }

/* Promo device visuals */
.promo-devices {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  opacity: 0.7;
}
.promo-device {
  border-radius: 10px;
  border: 1px solid rgba(255,94,0,0.15);
  box-shadow: 0 0 30px rgba(255,94,0,0.1);
}
.promo-device--mod { width: 70px; height: 130px; background: linear-gradient(160deg, #2a1a00, #0d0d0d); }
.promo-device--tank { width: 50px; height: 110px; background: linear-gradient(160deg, #1a1200, #0d0d0d); border-color: rgba(255,184,0,0.15); }
.promo-device--battery { width: 36px; height: 100px; background: linear-gradient(160deg, #1a1200, #0d0d0d); border-radius: 6px; }

/* ─── 13. Brand Strip ──────────────────────────────────────────────── */
.brand-strip { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); }
.brand-strip-label { text-align: center; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 28px; }
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-logo-item {
  padding: 10px 22px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.brand-logo-item span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.brand-logo-item { text-decoration: none; cursor: pointer; }
.brand-logo-item:hover { border-color: rgba(255,94,0,0.35); background: rgba(255,94,0,0.06); transform: translateY(-2px); }
.brand-logo-item:hover span { color: var(--orange); }

/* ─── 14. Newsletter ───────────────────────────────────────────────── */
.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.newsletter-bg { position: absolute; inset: 0; }
.newsletter-glow {
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,94,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}
.newsletter-icon {
  width: 60px; height: 60px;
  background: rgba(255,94,0,0.1);
  border: 1px solid rgba(255,94,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.newsletter-icon .vf-icon { width: 28px; height: 28px; color: var(--orange); }
.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-section p { margin-bottom: 32px; }

.newsletter-form .nl-form-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.nl-input {
  flex: 1;
  min-width: 180px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.nl-input:focus { border-color: var(--orange); }
.nl-input::placeholder { color: var(--text-faint); }
.nl-disclaimer { font-size: 0.75rem; color: var(--text-faint); margin-top: 12px; }
.nl-disclaimer a { color: var(--orange); }

/* ─── 15. Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
}
.footer-main { padding: clamp(48px, 7vw, 80px) 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(24px, 4vw, 56px);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-faint); line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link .vf-icon { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,94,0,0.08); }

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover { color: var(--orange); transform: translateX(4px); }
.footer-links li a::before { content: '›'; color: var(--text-faint); transition: color var(--transition); }
.footer-links li a:hover::before { color: var(--orange); }

.footer-newsletter-col p { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 16px; }
.footer-newsletter-form .newsletter-input-wrap {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
  transition: border-color var(--transition);
}
.footer-newsletter-form .newsletter-input-wrap:focus-within { border-color: var(--orange); }
.footer-newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.85rem;
}
.footer-newsletter-form input::placeholder { color: var(--text-faint); }
.footer-newsletter-form .btn-primary { border-radius: 0; padding: 11px 14px; }

.footer-badges { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-faint);
}
.trust-badge .vf-icon { width: 14px; height: 14px; color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.copyright { font-size: 0.8rem; color: var(--text-faint); }

/* Legal links bar */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-legal-links a:hover { color: var(--orange); }
.footer-legal-sep {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.15);
  user-select: none;
}
.age-warning {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-faint);
}
.age-warning .vf-icon { width: 14px; height: 14px; color: var(--orange); }
.age-warning strong { color: var(--orange); }

/* ─── 16. WooCommerce Page Wrapper ─────────────────────────────────── */
/* Layout, sidebar, and toolbar styles are in archive-product.php <style> block */
.woocommerce-page-wrapper { padding-top: 0; }
.woo-container .woocommerce { min-width: 0; }
.widget { margin-bottom: 24px; }
.widget-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ─── 17. Page Templates ───────────────────────────────────────────── */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 6vw, 80px) 0 clamp(32px, 5vw, 60px);
}
.page-hero-title {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-meta-bar span {
  font-size: 0.8rem;
  color: var(--text-faint);
  padding: 3px 10px;
  background: var(--bg3);
  border-radius: 4px;
}

/* Breadcrumb */
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.8rem; color: var(--text-faint); }
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--orange); }

/* Page content */
.page-content, .entry-content {
  max-width: 760px;
}
.entry-content h1, .entry-content h2, .entry-content h3 { margin: 32px 0 16px; }
.entry-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.entry-content a { color: var(--orange); }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 16px; }
.entry-content li { color: var(--text-muted); margin-bottom: 8px; font-size: 0.95rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { border-color: rgba(255,94,0,0.2); transform: translateY(-3px); }
.blog-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-meta { font-size: 0.75rem; color: var(--text-faint); display: block; margin-bottom: 8px; }
.blog-title { font-size: 1rem; margin-bottom: 10px; }
.blog-title a:hover { color: var(--orange); }
.blog-excerpt { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Post layout */
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.post-content img { width: 100%; border-radius: var(--radius); margin-block: 24px; }
.post-featured-img { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; padding-top: 32px; border-top: 1px solid var(--border); margin-top: 32px; }
.post-nav-item a { color: var(--orange); font-size: 0.9rem; }
.post-nav-next { text-align: right; }

/* Pagination */
.pagination-wrap { padding-top: 40px; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  margin: 0 3px;
  transition: all var(--transition);
}
.page-numbers:hover, .page-numbers.current { background: var(--orange); color: #fff; border-color: var(--orange); }

/* 404 Page */
.error-page { padding: 80px 0; text-align: center; }
.error-inner { max-width: 560px; margin: 0 auto; }
.error-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.error-code .vf-icon { width: 6rem; height: 6rem; }
.error-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.error-search { margin-top: 40px; }
.error-search .search-form { max-width: 400px; margin: 0 auto; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-faint);
}
.empty-state .vf-icon { width: 64px; height: 64px; margin: 0 auto 16px; opacity: 0.3; }
.empty-state h2 { color: var(--text-muted); margin-bottom: 12px; }

/* ─── 18. Animations ───────────────────────────────────────────────── */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.animate-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.animate-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.animate-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
.animate-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.33s; }
.animate-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }
.animate-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.47s; }
.animate-stagger.is-visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.54s; }

/* ─── 19. Responsive ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); } /* 6 → 2×3 */
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .promo-inner { grid-template-columns: 1fr; }
  .promo-devices { display: none; }
  .post-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .slide-inner { grid-template-columns: 1fr; }
  .slide-visual { display: none; }
  .header-nav { display: none; }
  .topbar-right { display: none; }
  .topbar-left span { font-size: 0.72rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; --topbar-h: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .promo-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form .nl-form-row { flex-direction: column; }
  .footer-bottom-inner { gap: 8px; }
  .slider-controls { gap: 10px; }
  .slider-btn { width: 36px; height: 36px; }
}

/* ─── 20. Contact Page ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 24px;
}

/* Contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.contact-card--link { cursor: pointer; text-decoration: none; color: inherit; }
.contact-card--link:hover {
  border-color: rgba(255,94,0,0.25);
  transform: translateX(4px);
  background: var(--bg4);
}

.contact-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(255,94,0,0.08);
  border: 1px solid rgba(255,94,0,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-icon--messenger {
  background: rgba(0,102,255,0.08);
  border-color: rgba(0,102,255,0.2);
  color: #0066ff;
}
.contact-card-icon--email {
  background: rgba(255,184,0,0.08);
  border-color: rgba(255,184,0,0.2);
  color: var(--amber);
}

.contact-card-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-card-body p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.contact-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--transition);
}
.contact-card--link:hover .contact-link { color: var(--amber); }

/* Map */
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-map-wrap iframe { display: block; filter: grayscale(30%) brightness(0.85); transition: filter var(--transition); }
.contact-map-wrap:hover iframe { filter: grayscale(0%) brightness(1); }

/* Contact form */
.contact-form-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; gap: 16px; }
.cf-row--2 { grid-template-columns: 1fr 1fr; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.cf-field label span { color: var(--orange); }
.cf-field input,
.cf-field textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-faint); }
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,94,0,0.1);
}
.cf-actions { display: flex; flex-direction: column; gap: 12px; }
.cf-note { font-size: 0.8rem; color: var(--text-faint); }
.cf-note a { color: var(--orange); }

/* Success message */
.contact-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #22c55e;
  font-size: 0.9rem;
}
.contact-success .vf-icon { width: 18px; height: 18px; color: var(--orange); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .cf-row--2 { grid-template-columns: 1fr; }
}

/* ── 21. About Page ─────────────────────────────────────────────────────── */
.about-intro-banner {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.about-intro-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.about-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.about-content { display: flex; flex-direction: column; gap: 40px; }

/* Content blocks */
.about-block h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.about-block p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-block p:last-child { margin-bottom: 0; }
.about-block strong { color: var(--text); }

/* Product list */
.about-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-list li .vf-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list li strong { color: var(--text); }

/* Platform cards */
.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), background var(--transition);
}
a.platform-card:hover {
  border-color: var(--orange);
  background: rgba(255,94,0,0.05);
}
.platform-card--closed { opacity: 0.5; cursor: default; }
.platform-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--text);
}
.platform-card--lazada .platform-card-icon { color: #ff6000; }
.platform-card--shopee .platform-card-icon  { color: #ee4d2d; }
.platform-card-icon svg { width: 100%; height: auto; padding: 10px; }
.platform-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.platform-card-body strong { color: var(--text); font-size: 0.95rem; }
.platform-card-body span  { font-size: 0.8rem; color: var(--text-faint); }
.platform-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 4px;
}
.platform-badge--active {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25);
}
.platform-badge--closed {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}

/* Sidebar */
.about-sidebar { display: flex; flex-direction: column; gap: 20px; }
.about-sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.about-sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.about-sidebar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.about-sidebar-card--cta {
  background: linear-gradient(135deg, rgba(255,94,0,0.08), rgba(255,184,0,0.06));
  border-color: rgba(255,94,0,0.2);
}
.about-sidebar-card--cta h4 { color: var(--orange); }
.btn-full { width: 100%; text-align: center; justify-content: center; }
.about-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
  margin-bottom: 8px;
}
.about-contact-link:last-child { margin-bottom: 0; }
.about-contact-link--messenger {
  background: rgba(0,132,255,0.08);
  color: #0084ff;
  border: 1px solid rgba(0,132,255,0.2);
}
.about-contact-link--messenger:hover { background: rgba(0,132,255,0.15); }
.about-contact-link--email {
  background: var(--bg3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.about-contact-link--email:hover { border-color: var(--orange); color: var(--orange); }
.about-age-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem !important;
  color: var(--text-faint) !important;
}
.about-age-note .vf-icon { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.about-age-note strong { color: var(--text-muted); }

@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr 280px; gap: 32px; }
}
@media (max-width: 800px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-intro-inner { gap: 0; }
  .about-stat { padding: 12px 24px; }
  .about-stat-divider { width: 40px; height: 1px; }
  .about-intro-inner { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 17b — Pagination hard-reset
   ═══════════════════════════════════════════════════════════ */
nav.woocommerce-pagination,
.woocommerce-pagination { display: block !important; }

nav.woocommerce-pagination ul,
nav.woocommerce-pagination ul.page-numbers,
.woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 0 !important;
  align-items: center !important;
  width: auto !important;
}
nav.woocommerce-pagination ul li,
nav.woocommerce-pagination ul.page-numbers li,
.woocommerce-pagination ul li,
.woocommerce-pagination ul.page-numbers li {
  display: block !important;
  float: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  overflow: visible !important;
}
nav.woocommerce-pagination ul li a,
nav.woocommerce-pagination ul li span,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border) !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box !important;
}
nav.woocommerce-pagination ul li a:hover,
nav.woocommerce-pagination ul li span.current,
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 18 — Policy Pages
   ═══════════════════════════════════════════════════════════ */

/* Layout */
.policy-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

/* Intro paragraph */
.policy-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 40px;
}

/* Sections */
.policy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-section h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.policy-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.policy-section p:last-child { margin-bottom: 0; }

/* Lists */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.policy-list--ordered {
  list-style: none;
  counter-reset: policy-counter;
}
.policy-list--ordered li {
  counter-increment: policy-counter;
  padding-left: 28px;
}
.policy-list--ordered li::before {
  content: counter(policy-counter);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3px;
}

/* Table */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.policy-table th {
  background: var(--bg3);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.policy-table td {
  padding: 10px 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
  line-height: 1.6;
}
.policy-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Highlight boxes */
.policy-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(255,94,0,0.07);
  border: 1px solid rgba(255,94,0,0.2);
  border-radius: var(--radius-sm);
  margin-top: 14px;
}
.policy-highlight svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.policy-highlight p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

.policy-highlight--warning {
  background: rgba(229,62,62,0.07);
  border-color: rgba(229,62,62,0.25);
}
.policy-highlight--warning svg { color: #e53e3e; }

/* Note text */
.policy-note {
  font-size: 0.82rem !important;
  color: var(--text-faint) !important;
  font-style: italic;
}

/* ── Policy Sidebar ─────────────────────────────────────────── */
.policy-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--header-h) + var(--topbar-h) + 20px); }

.policy-sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.policy-sidebar-card--contact {
  background: linear-gradient(135deg, rgba(255,94,0,0.06), rgba(255,184,0,0.04));
  border-color: rgba(255,94,0,0.15);
}
.policy-sidebar-card--meta {
  background: transparent;
  border-color: rgba(255,255,255,0.06);
}

.policy-sidebar-heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-sidebar-card--contact .policy-sidebar-heading { color: var(--orange); border-color: rgba(255,94,0,0.2); }

/* Policy nav links */
.policy-nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.policy-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.policy-nav li a:hover,
.policy-nav li.active a {
  background: rgba(255,94,0,0.08);
  color: var(--orange);
}
.policy-nav li.active a { font-weight: 600; }
.policy-nav li a svg { color: var(--text-faint); flex-shrink: 0; }
.policy-nav li.active a svg { color: var(--orange); }

/* Contact buttons */
.policy-sidebar-card--contact p { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 12px; }
.policy-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 8px;
  color: #0084ff;
  background: rgba(0,132,255,0.08);
  border: 1px solid rgba(0,132,255,0.2);
}
.policy-contact-btn:last-child { margin-bottom: 0; }
.policy-contact-btn:hover { background: rgba(0,132,255,0.15); }
.policy-contact-btn--email {
  color: var(--text-muted);
  background: var(--bg3);
  border-color: var(--border);
}
.policy-contact-btn--email:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,94,0,0.06); }

.policy-meta { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 8px; line-height: 1.6; }
.policy-meta:last-child { margin-bottom: 0; }
.policy-meta strong { color: var(--text-muted); }

/* Policy responsive */
@media (max-width: 1024px) {
  .policy-layout { grid-template-columns: 1fr 240px; gap: 32px; }
}
@media (max-width: 800px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 18b — Cart & Checkout Pages
   ═══════════════════════════════════════════════════════════ */

/* Single-column wrapper for cart / checkout / account */
.woo-single-col {
  max-width: 960px;
  margin-inline: auto;
  padding-block: clamp(32px, 5vw, 64px);
  width: 100%;
}

/* WooCommerce table reset */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.woocommerce table.shop_table th {
  background: var(--bg2);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.woocommerce table.shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
  color: var(--text-muted);
}
.woocommerce table.shop_table td a { color: var(--white); text-decoration: none; }
.woocommerce table.shop_table td a:hover { color: var(--orange); }
.woocommerce table.shop_table .product-thumbnail img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }
.woocommerce table.shop_table .product-remove a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(229,62,62,0.08);
  border: 1px solid rgba(229,62,62,0.2);
  color: #e53e3e;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.woocommerce table.shop_table .product-remove a:hover { background: rgba(229,62,62,0.2); }

/* Cart coupon + update row */
.woocommerce .cart-collaterals { margin-top: 32px; }
.woocommerce .coupon { display: flex; gap: 8px; }
.woocommerce .coupon input[type="text"],
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce select,
.woocommerce textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.woocommerce input:focus, .woocommerce select:focus, .woocommerce textarea:focus { border-color: var(--orange); }

/* Cart totals box */
.woocommerce .cart_totals {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 400px;
  margin-left: auto;
}
.woocommerce .cart_totals h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.woocommerce .cart_totals table td,
.woocommerce .cart_totals table th { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.woocommerce .cart_totals .order-total td strong { color: var(--white); font-size: 1.1rem; }

/* Checkout button */
.woocommerce .wc-proceed-to-checkout { margin-top: 16px; }
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover { background: var(--amber); transform: translateY(-1px); }

/* Cart buttons (update cart, apply coupon) */
.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"] {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.woocommerce button[name="apply_coupon"]:hover,
.woocommerce button[name="update_cart"]:hover { border-color: var(--orange); color: var(--orange); }

/* Cart quantity input */
.woocommerce .quantity .qty {
  width: 64px;
  text-align: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  padding: 6px 8px;
  font-size: 0.9rem;
}

/* Cart recommendations */
.cart-recommendations {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.cart-rec-header { text-align: center; margin-bottom: 32px; }
.cart-rec-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cart-rec-sub { color: var(--text-faint); font-size: 0.88rem; }
.cart-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px)  { .cart-rec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .cart-rec-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ═══════════════════════════════════════════════════════════
   SECTION 18b — Checkout Page
   ═══════════════════════════════════════════════════════════ */

/* ── Checkout layout: billing left, order summary right ── */
.woocommerce-checkout.checkout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}
.woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1 / 3; }
.woocommerce-checkout #order_review_heading { grid-column: 2; grid-row: 1; margin: 0 0 12px; font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; }
.woocommerce-checkout #order_review { grid-column: 2; grid-row: 2; }

/* Two-column fields (first name / last name side by side) */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.col2-set { width: 100%; }
.form-row-first,
.form-row-last {
  display: inline-block;
  width: calc(50% - 6px);
  vertical-align: top;
}
.form-row-first { margin-right: 12px; }
.form-row-wide { display: block; width: 100%; }

/* ── Each form field row ── */
p.form-row {
  margin: 0 0 14px;
  padding: 0;
}
p.form-row label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
p.form-row label .required { color: var(--orange); margin-left: 2px; }
p.form-row label .optional { color: var(--text-faint); font-weight: 400; text-transform: none; font-size: 0.72rem; }

/* ── All checkout inputs — WC uses class="input-text" on every field ── */
.woocommerce-checkout input.input-text,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg3) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="number"]:focus,
.woocommerce-checkout input[type="password"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus { border-color: var(--orange) !important; }

.woocommerce-checkout input.input-text::placeholder { color: var(--text-faint); }
.woocommerce-checkout textarea { height: 100px; resize: vertical; }

/* ── Section headings ── */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── "Ship to a different address" checkbox toggle ── */
.woocommerce-shipping-fields { margin-top: 28px; }
.woocommerce-shipping-fields h3 label { cursor: pointer; display: flex; align-items: center; gap: 10px; }
.woocommerce-shipping-fields h3 input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--orange); }

/* ── Order review box (right column) ── */
.woocommerce-checkout-review-order {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.woocommerce-checkout-review-order table.shop_table { font-size: 0.88rem; }
.woocommerce-checkout-review-order table.shop_table thead th {
  background: transparent;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
}
.woocommerce-checkout-review-order table.shop_table tbody td { padding: 10px 0; }
.woocommerce-checkout-review-order table.shop_table tfoot tr th,
.woocommerce-checkout-review-order table.shop_table tfoot tr td { padding: 8px 0; }
.woocommerce-checkout-review-order table.shop_table .order-total td strong { color: var(--orange); font-size: 1.1rem; }

/* ── Payment methods ── */
.woocommerce-checkout-payment { margin-top: 20px; }
.woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.woocommerce-checkout-payment ul.payment_methods li.payment_method {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.woocommerce-checkout-payment ul.payment_methods li.payment_method:has(input:checked) { border-color: var(--orange); }
.woocommerce-checkout-payment ul.payment_methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.woocommerce-checkout-payment ul.payment_methods input[type="radio"] { accent-color: var(--orange); width: 16px; height: 16px; }
.payment_box {
  padding: 12px 0 4px;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ── Place Order button ── */
#place_order,
.woocommerce-checkout #place_order {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--orange);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(255,94,0,0.3);
}
#place_order:hover { background: #e05400; transform: translateY(-1px); }

/* ── Checkout notices / errors ── */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.88rem;
  list-style: none;
}
.woocommerce-checkout .woocommerce-error { background: rgba(229,62,62,0.1); border-left: 3px solid #e53e3e; color: #fc8181; }
.woocommerce-checkout .woocommerce-message { background: rgba(72,187,120,0.1); border-left: 3px solid #48bb78; color: #9ae6b4; }
.woocommerce-checkout .woocommerce-info { background: rgba(66,153,225,0.1); border-left: 3px solid #4299e1; color: #90cdf4; }

/* ── Coupon toggle ── */
.woocommerce-form-coupon-toggle { margin-bottom: 16px; font-size: 0.88rem; color: var(--text-faint); }
.woocommerce-form-coupon-toggle a { color: var(--orange); }
.woocommerce-form-coupon { padding: 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 20px; }
.woocommerce-form-coupon .form-row { display: flex; gap: 10px; margin: 0; }
.woocommerce-form-coupon .form-row input { flex: 1; }

/* ── Checkout responsive ── */
@media (max-width: 860px) {
  .woocommerce-checkout.checkout {
    grid-template-columns: 1fr;
  }
  .woocommerce-checkout #customer_details { grid-column: 1; grid-row: 1; }
  .woocommerce-checkout #order_review_heading { grid-column: 1; grid-row: 2; }
  .woocommerce-checkout #order_review { grid-column: 1; grid-row: 3; }
  .form-row-first,
  .form-row-last { width: 100%; display: block; }
  .form-row-first { margin-right: 0; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 19 — Age Gate Overlay
   ═══════════════════════════════════════════════════════════ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(ellipse at center, #141414 0%, #0b0b0b 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.age-gate--visible { opacity: 1; }
.age-gate--exit {
  opacity: 0;
  pointer-events: none;
}
.age-gate--denied {
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.5s, filter 0.5s;
}

.age-gate-inner {
  max-width: 460px;
  width: 100%;
  text-align: center;
  background: var(--bg2);
  border: 1px solid rgba(255,94,0,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 0 80px rgba(255,94,0,0.08), 0 40px 100px rgba(0,0,0,0.8);
  animation: age-gate-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes age-gate-in {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

/* Logo */
.age-gate-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
}
.age-gate-logo .vf-icon { width: 24px; height: 24px; color: var(--orange); }

/* Age badge */
.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(255,94,0,0.3);
}

.age-gate-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.age-gate-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate-subtitle strong { color: var(--white); }

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.age-gate-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.age-gate-btn .vf-icon { width: 16px; height: 16px; }

.age-gate-btn--no {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-faint);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  padding: 14px 24px;
}
.age-gate-btn--no:hover {
  border-color: rgba(229,62,62,0.4);
  color: #e53e3e;
  background: rgba(229,62,62,0.06);
}

.age-gate-legal {
  font-size: 0.75rem;
  color: var(--text-faint);
  line-height: 1.6;
  margin-bottom: 8px;
}
.age-gate-legal a { color: var(--orange); text-decoration: underline; }
.age-gate-legal a:hover { color: var(--amber); }

.age-gate-law {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 480px) {
  .age-gate-inner { padding: 36px 24px; }
  .age-gate-title { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 20 — Single Product Page
   ═══════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.product-page-wrapper { padding-top: 0; }

/* ── Product breadcrumb nav bar ── */
.product-page-wrapper .woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0;
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.product-page-wrapper .woocommerce-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.product-page-wrapper .woocommerce-breadcrumb a:hover {
  color: var(--orange);
  background: rgba(255,94,0,0.08);
}
/* The WC delimiter (plain text "/") inherits color: var(--text-faint) from parent */

/* ── Product grid: gallery | summary ── */
.type-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 48px;
  align-items: start;
  padding-top: 32px;
}
/* Full-width rows below gallery+summary */
.woocommerce-tabs,
.up-sells.upsells,
.related.products {
  grid-column: 1 / -1;
}

/* ── Sale flash: keep it inside gallery area, not as a disruptive grid child ── */
.type-product > span.onsale {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  z-index: 5;
  margin: 12px 0 -32px; /* overlap the gallery below */
  position: relative;
}

/* ── Product Gallery ── */
.woocommerce-product-gallery {
  grid-column: 1;
  grid-row: 1;
  /* Only the outer wrapper needs float cleared — DO NOT touch inner
     flexslider elements; they rely on float:left for horizontal slides */
  float: none !important;
  width: 100%;
  min-width: 0; /* prevent grid blowout */
  opacity: 1 !important; /* WC starts gallery at opacity:0; ensure it shows */
}
.woocommerce-product-gallery__wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  width: 100%;
}
/* Main image */
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a { display: block; width: 100%; }
.woocommerce-product-gallery__image img,
.woocommerce-product-gallery .wp-post-image {
  width: 100%;
  height: auto;
  display: block;
}
.woocommerce-product-gallery__trigger { display: none; }
/* Thumbnails */
.flex-control-nav {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.flex-control-nav li img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  display: block;
}
.flex-control-nav li.flex-active-slide img { border-color: var(--orange); }

/* ── Summary column ── */
.summary.entry-summary {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
}

/* Sale badge */
.woocommerce-badge--sale,
span.onsale {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
}

/* Title */
.product_title.entry-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}

/* ── Star Rating (WooCommerce CSS trick) ── */
.star-rating {
  display: inline-block;
  position: relative;
  width: 5.5em;
  height: 1em;
  font-size: 14px;
  line-height: 1;
  overflow: hidden;
  vertical-align: middle;
}
.star-rating::before {
  content: '\2605\2605\2605\2605\2605';
  color: #3a3a3a;
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 0.12em;
}
.star-rating span {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
}
.star-rating span::before {
  content: '\2605\2605\2605\2605\2605';
  color: var(--orange);
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 0.12em;
}
.star-rating span strong { display: none; }

/* Product rating row */
.woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-review-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}
.woocommerce-review-link:hover { color: var(--orange); }

/* ── Price (scoped to product summary to avoid bleeding into shop cards) ── */
.summary .price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.summary .price del {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
}
.summary .price del .woocommerce-Price-amount { color: var(--muted); }
.summary .price ins { text-decoration: none; }
.summary .woocommerce-Price-amount { color: var(--orange); }

/* ── Short description ── */
.woocommerce-product-details__short-description {
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.woocommerce-product-details__short-description p { margin: 0 0 8px; }

/* ── Quantity + Add to Cart (scoped to product page) ── */
/* Cart form — both inside .type-product grid and the fallback bare .cart form */
.type-product form.cart,
.product-page-wrapper .summary form.cart,
.product-page-wrapper .vf-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.type-product .quantity,
.product-page-wrapper .summary .quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
  background: var(--bg-card);
}
.type-product .quantity input[type="number"] {
  width: 60px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
  padding: 0;
}
.type-product .quantity input[type="number"]::-webkit-inner-spin-button,
.type-product .quantity input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.single_add_to_cart_button {
  flex: 1;
  min-width: 160px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  padding: 0 24px;
}
.single_add_to_cart_button:hover { background: #e05400; transform: translateY(-1px); }
.single_add_to_cart_button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Variable product: override flex row → column so variations table stacks above button ── */
.type-product form.variations_form.cart {
  flex-direction: column;
  align-items: stretch;
}

/* ── Variations table (attribute selectors) ── */
/* WC template uses <th class="label"> and <td class="value"> */
table.variations {
  width: 100%;
  border-collapse: collapse;
  display: block; /* override table so flex/block layout works */
  margin-bottom: 4px;
}
table.variations tbody { display: block; }
table.variations tr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
table.variations th.label,
table.variations td.label {
  padding: 0;
  display: block;
  text-align: left;
  background: none;
}
table.variations th.label label,
table.variations td.label label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
table.variations td.value {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
table.variations td.value select {
  flex: 1;
  min-width: 160px;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
table.variations td.value select:focus {
  border-color: var(--orange);
}
table.variations td.value select option {
  background: var(--bg3);
  color: var(--text);
}
.reset_variations {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.reset_variations:hover { color: var(--orange); }

/* ── Variation result: updated price + stock shown after selection ── */
.single_variation_wrap { width: 100%; }
.woocommerce-variation.single_variation {
  padding: 10px 0 4px;
  font-size: 0.9rem;
  color: var(--text-dim);
  min-height: 0;
}
.woocommerce-variation .price {
  font-size: 1.4rem !important;
  font-family: var(--font-head);
  color: var(--orange);
  font-weight: 700;
}
.variations_button {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.variations_button .quantity { flex-shrink: 0; }
.variations_button .single_add_to_cart_button { flex: 1; min-width: 160px; }

/* ── Stock status ── */
.stock {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}
.in-stock { background: rgba(72,187,120,0.12); color: #48bb78; }
.out-of-stock { background: rgba(229,62,62,0.12); color: #e53e3e; }

/* ── Product meta (SKU, categories, tags) ── */
.product_meta {
  font-size: 0.83rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product_meta span { display: flex; gap: 6px; align-items: baseline; }
.product_meta .sku { font-weight: 600; color: var(--text-dim); }
.product_meta a { color: var(--muted); text-decoration: none; }
.product_meta a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   Sticky Tab Navigation
   ══════════════════════════════════════════════════════════ */
.woocommerce-tabs.wc-tabs-wrapper {
  position: static;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
ul.wc-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: calc(var(--header-h) + var(--topbar-h));
  z-index: 90;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
ul.wc-tabs::-webkit-scrollbar { display: none; }
ul.wc-tabs li {
  display: block;
  margin: 0;
  padding: 0;
}
ul.wc-tabs li a {
  display: block;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
ul.wc-tabs li a:hover { color: var(--text); }
ul.wc-tabs li.active a { color: var(--orange); border-bottom-color: var(--orange); }

/* Tab panels */
.woocommerce-Tabs-panel {
  padding: 48px 0;
  display: none;
}
.woocommerce-Tabs-panel.active { display: block; }
.woocommerce-Tabs-panel > h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.woocommerce-Tabs-panel p { color: var(--text-dim); line-height: 1.75; margin-bottom: 12px; }
.woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.woocommerce-Tabs-panel table th,
.woocommerce-Tabs-panel table td {
  padding: 10px 16px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  text-align: left;
}
.woocommerce-Tabs-panel table th { background: var(--bg-card); color: var(--text); font-weight: 600; }
.woocommerce-Tabs-panel table td { color: var(--text-dim); }

/* ══════════════════════════════════════════════════════════
   Reviews Section
   ══════════════════════════════════════════════════════════ */
.woocommerce-Reviews-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.woocommerce-Reviews-title span { color: var(--orange); }

/* Review list */
ol.commentlist {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment_container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 16px;
}
.comment_container .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.comment-text { flex: 1; min-width: 0; }
.woocommerce-review__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.woocommerce-review__published-date {
  font-size: 0.78rem;
  color: var(--text-faint);
  display: block;
  margin-bottom: 8px;
  margin-top: 2px;
}
.comment-text .star-rating { margin-bottom: 8px; }
.woocommerce-review__content p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}
.woocommerce-noreviews {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ── Review Form ── */
#review_form_wrapper {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
#reply-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 24px;
}
.comment-form-rating { margin-bottom: 20px; }
.comment-form-rating label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.star-select-wrap select,
#rating {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.9rem;
  min-width: 220px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.star-select-wrap select:focus,
#rating:focus { outline: none; border-color: var(--orange); }
.comment-form-comment textarea,
.comment-form-author input[type="text"],
.comment-form-email input[type="email"] {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus { outline: none; border-color: var(--orange); }
.comment-form-comment textarea { min-height: 120px; resize: vertical; }
.comment-form-comment p,
.comment-form-author p,
.comment-form-email p { margin-bottom: 16px; }
.comment-form .form-submit { margin-top: 8px; }
.comment-form #submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}
.comment-form #submit:hover { background: #e05400; }

/* Login prompt */
.review-login-prompt,
.must-log-in,
.woocommerce-verification-required {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 24px;
}
.review-login-prompt p { margin: 0; }
.review-login-prompt a,
.must-log-in a,
.woocommerce-verification-required a { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   Related Products
   ══════════════════════════════════════════════════════════ */
.related.products {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.related.products > h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.related.products > h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 6px;
  margin-bottom: 24px;
}
.related.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Ensure product-card fills the list item — equal height tiles */
.related.products ul.products li {
  display: flex;
  flex-direction: column;
}
.related.products ul.products .product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related.products ul.products .product-card .product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related.products ul.products .product-card .btn-add-cart,
.related.products ul.products .product-card .btn-disabled {
  margin-top: auto;
}

/* ── Interactive Star Rating (review form) ── */
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
  padding: 6px 0 4px;
}
.star-rating-input input[type="radio"] { display: none; }
.star-rating-input label {
  font-size: 2.2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.1s;
  line-height: 1;
  padding: 0 1px;
  user-select: none;
}
/* Hover: amber preview */
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: var(--amber); }
/* Checked: orange fill */
.star-rating-input input[type="radio"]:checked ~ label { color: var(--orange); }
/* Hovering overrides checked state */
.star-rating-input:hover input[type="radio"]:checked ~ label { color: #333; }
.star-rating-input:hover label:hover,
.star-rating-input:hover label:hover ~ label { color: var(--amber) !important; }

/* ── Single Product Responsive ── */
@media (max-width: 960px) {
  .type-product {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .woocommerce-product-gallery,
  .summary.entry-summary {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }
  .related.products ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  ul.wc-tabs li a { padding: 12px 16px; font-size: 0.82rem; }
  .related.products ul.products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .type-product form.cart { flex-direction: column; align-items: stretch; }
  .single_add_to_cart_button { min-width: 100%; }
  .summary .price { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 22 — Floating Multi-Channel Chat Widget
   ═══════════════════════════════════════════════════════════ */

.vf-chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none; /* children handle their own clicks */
}

/* ── Toggle button ── */
.vf-chat-toggle {
  pointer-events: all;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 94, 0, 0.45);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.vf-chat-toggle:hover { background: #e05400; transform: scale(1.08); }

/* Pulse ring on toggle when channels are closed */
.vf-chat-widget:not(.is-open) .vf-chat-toggle::before {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 94, 0, 0.35);
  animation: vf-pulse 2.2s ease-out infinite;
}
@keyframes vf-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Icon swap */
.vf-icon-close { display: none; }
.vf-chat-widget.is-open .vf-icon-open  { display: none; }
.vf-chat-widget.is-open .vf-icon-close { display: block; }

/* ── Channels panel ── */
.vf-chat-channels {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  visibility: hidden;
}
.vf-chat-widget.is-open .vf-chat-channels {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* "Chat with us" label */
.vf-chat-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

/* ── Individual channel buttons ── */
.vf-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 40px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.vf-channel:hover {
  transform: translateX(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.vf-channel-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.vf-channel-name { color: var(--text); }

/* Brand colours */
.vf-channel--whatsapp  .vf-channel-icon { background: #25D366; }
.vf-channel--whatsapp:hover  { border-color: #25D366; }

.vf-channel--viber     .vf-channel-icon { background: #7360f2; }
.vf-channel--viber:hover     { border-color: #7360f2; }

.vf-channel--telegram  .vf-channel-icon { background: #0088cc; }
.vf-channel--telegram:hover  { border-color: #0088cc; }

.vf-channel--messenger .vf-channel-icon { background: linear-gradient(135deg, #0084ff, #a033ff); }
.vf-channel--messenger:hover { border-color: #0084ff; }

.vf-channel--email     .vf-channel-icon { background: var(--orange); }
.vf-channel--email:hover     { border-color: var(--orange); }

/* Staggered entrance animation */
.vf-chat-widget.is-open .vf-channel:nth-child(2) { transition-delay: 0.03s; }
.vf-chat-widget.is-open .vf-channel:nth-child(3) { transition-delay: 0.06s; }
.vf-chat-widget.is-open .vf-channel:nth-child(4) { transition-delay: 0.09s; }
.vf-chat-widget.is-open .vf-channel:nth-child(5) { transition-delay: 0.12s; }
.vf-chat-widget.is-open .vf-channel:nth-child(6) { transition-delay: 0.15s; }

/* Mobile: slightly smaller and tucked in */
@media (max-width: 480px) {
  .vf-chat-widget  { bottom: 18px; right: 16px; }
  .vf-chat-toggle  { width: 52px; height: 52px; }
  .vf-channel      { padding: 8px 14px; font-size: 0.82rem; }
  .vf-channel-icon { width: 28px; height: 28px; }
}

/* ============================================================
   Section 23a — Reconnect Banner (Homepage — top of page)
   ============================================================ */

.reconnect-banner {
  background: linear-gradient(90deg, rgba(255,184,0,0.12) 0%, rgba(255,94,0,0.10) 100%);
  border-bottom: 1px solid rgba(255,184,0,0.25);
  padding: 12px 0;
}
.reconnect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.reconnect-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.reconnect-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.reconnect-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 2px;
}
.reconnect-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.reconnect-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.reconnect-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(255,184,0,0.4);
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.reconnect-cta:hover {
  background: var(--amber);
  color: #000;
  text-decoration: none;
}
.reconnect-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px 6px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.reconnect-dismiss:hover { opacity: 1; }
.reconnect-banner.is-hidden { display: none; }

@media (max-width: 640px) {
  .reconnect-text span { display: none; }
  .reconnect-cta { font-size: 0.8rem; padding: 5px 12px; }
}

/* ============================================================
   Section 23b — Reconnect Section (Homepage — before newsletter)
   ============================================================ */

.reconnect-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.reconnect-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.reconnect-section-text .section-tag { margin-bottom: 10px; }
.reconnect-section-text .section-title { margin-bottom: 16px; }
.reconnect-section-text > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.reconnect-section-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.reconnect-channel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--ch-color) 40%, transparent);
  background: color-mix(in srgb, var(--ch-color) 10%, transparent);
  color: var(--ch-color);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.reconnect-channel:hover {
  background: color-mix(in srgb, var(--ch-color) 20%, transparent);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--ch-color);
}
/* Fallback for browsers that don't support color-mix */
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .reconnect-channel { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
}

/* Badge grid */
.reconnect-section-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reconnect-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.reconnect-badge:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.reconnect-badge-icon { font-size: 1.6rem; margin-bottom: 10px; line-height: 1; }
.reconnect-badge strong { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.reconnect-badge span   { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 900px) {
  .reconnect-section-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .reconnect-section { padding: 48px 0; }
  .reconnect-section-badges { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Section 23c — Find Us (Lazada / Shopee) Landing Page
   ============================================================ */

/* Hero */
.fu-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 64px;
  text-align: center;
}
.fu-hero-inner { max-width: 720px; margin: 0 auto; }
.fu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,94,0,0.12);
  border: 1px solid rgba(255,94,0,0.3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.fu-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.fu-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.fu-hero-sub strong { color: var(--text); }
.fu-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Confirmation strip */
.fu-confirm-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.fu-confirm-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fu-confirm-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.fu-confirm-item strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.fu-confirm-item span  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Why we moved */
.fu-why { margin-bottom: 64px; }
.fu-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.fu-section-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.fu-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.fu-why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.fu-why-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.fu-why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.fu-why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.fu-why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Contact / channel grid */
.fu-contact { margin-bottom: 64px; scroll-margin-top: 100px; }
.fu-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) {
  .fu-channel-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .fu-channel-grid { grid-template-columns: 1fr; }
}
.fu-channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.fu-channel-card:hover { transform: translateY(-2px); text-decoration: none; }
.fu-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.fu-channel-card--whatsapp .fu-channel-icon  { background: #25D366; }
.fu-channel-card--whatsapp:hover             { border-color: #25D366; }
.fu-channel-card--viber .fu-channel-icon     { background: #7360f2; }
.fu-channel-card--viber:hover                { border-color: #7360f2; }
.fu-channel-card--telegram .fu-channel-icon  { background: #0088cc; }
.fu-channel-card--telegram:hover             { border-color: #0088cc; }
.fu-channel-card--messenger .fu-channel-icon { background: linear-gradient(135deg, #0084ff, #a033ff); }
.fu-channel-card--messenger:hover            { border-color: #0084ff; }
.fu-channel-card--email .fu-channel-icon     { background: var(--orange); }
.fu-channel-card--email:hover                { border-color: var(--orange); }
.fu-channel-body { flex: 1; }
.fu-channel-body strong { display: block; font-size: 0.95rem; font-weight: 700; }
.fu-channel-body span   { font-size: 0.8rem; color: var(--text-muted); }

/* Shop CTA banner */
.fu-shop-cta {
  background: linear-gradient(135deg, rgba(255,94,0,0.12) 0%, rgba(255,184,0,0.08) 100%);
  border: 1px solid rgba(255,94,0,0.25);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 64px;
}
.fu-shop-cta-inner { max-width: 560px; margin: 0 auto; }
.fu-shop-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.fu-shop-cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* FAQ */
.fu-faq { margin-bottom: 72px; }
.fu-faq-list { display: flex; flex-direction: column; gap: 10px; }
.fu-faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.fu-faq-item[open] { border-color: var(--orange); }
.fu-faq-item summary {
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.fu-faq-item summary::-webkit-details-marker { display: none; }
.fu-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.fu-faq-item[open] summary::after { transform: rotate(45deg); }
.fu-faq-item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .fu-hero    { padding: 48px 0 40px; }
  .fu-shop-cta { padding: 36px 24px; }
  .fu-confirm-strip { padding: 22px 20px; }
}
