/* ═══════════════════════════════════════════════════════════════
   EV ENGINE — Evolution Vapes Flagship Theme
   Built by Billo Engine · billo.tech
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:        #05080f;
  --surface:   #0d1219;
  --surface2:  #111827;
  --border:    #1a2638;
  --border2:   #243048;
  --cyan:      #00cfff;
  --cyan-dim:  rgba(0, 207, 255, 0.10);
  --cyan-glow: rgba(0, 207, 255, 0.25);
  --coral:     #ff2d55;
  --coral-dim: rgba(255, 45, 85, 0.12);
  --text:      #e8edf5;
  --text2:     #b0bfd0;
  --muted:     #7a8fa8;
  --muted2:    #4a5c72;
  --font-d:    Impact, 'Arial Narrow', 'Arial Black', sans-serif;
  --font-b:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius:    0px;
  --transition: 0.2s ease;
  --header-h:  58px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-b); line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Typography helpers ───────────────────────────────────────── */
.ev-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ev-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 28px; border: none; transition: all var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  white-space: nowrap;
}
.ev-btn-primary { background: var(--cyan); color: #000; }
.ev-btn-primary:hover { background: #33dbff; }
.ev-btn-ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border2);
  clip-path: none; padding: 11px 24px;
}
.ev-btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.ev-btn-outline {
  background: transparent; color: var(--cyan); border: 1px solid var(--cyan);
  clip-path: none;
}
.ev-btn-outline:hover { background: var(--cyan-dim); }
.ev-btn-full { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────────────────── */
.ev-header {
  position: sticky; top: 0; z-index: 500;
  height: var(--header-h);
  background: rgba(5, 8, 15, 0.92); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}
.ev-header.scrolled { border-color: var(--border2); }
.ev-header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 100%; padding: 0 24px;
}

/* Logo */
.ev-logo {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--font-d); font-size: 1.35rem; letter-spacing: 0.02em;
  text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}
.ev-logo-ev { color: var(--cyan); }
.ev-logo-olution { color: var(--text); }
.ev-logo-dot { width: 4px; height: 4px; background: var(--coral); border-radius: 50%; margin: 0 3px 2px; flex-shrink: 0; }
.ev-logo-vapes { color: var(--muted); font-size: 0.85em; letter-spacing: 0.06em; }

/* Nav */
.ev-nav { flex: 1; }
.ev-nav-list {
  display: flex; gap: 4px;
}
.ev-nav-list li a {
  display: block; padding: 6px 14px;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color var(--transition);
}
.ev-nav-list li a:hover { color: var(--cyan); }

/* Header right */
.ev-header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.ev-header-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; color: var(--muted); transition: color var(--transition);
}
.ev-header-link:hover { color: var(--cyan); }

/* Cart trigger */
.ev-cart-trigger {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; color: var(--text); background: none; border: none;
  cursor: pointer; transition: color var(--transition);
}
.ev-cart-trigger:hover { color: var(--cyan); }
.ev-cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--coral); color: #fff;
  font-size: 0.6rem; font-weight: 700; line-height: 1;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; transition: transform 0.25s cubic-bezier(.175,.885,.32,1.275);
  font-variant-numeric: tabular-nums;
}
.ev-cart-count.has-items { transform: scale(1); }
.ev-cart-count.pop { animation: ev-count-pop 0.35s cubic-bezier(.175,.885,.32,1.275); }
@keyframes ev-count-pop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.6); } }

/* Mobile toggle */
.ev-menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  background: none; border: none; width: 38px; height: 38px; justify-content: center;
}
.ev-menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.ev-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ev-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ev-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Cart Drawer ─────────────────────────────────────────────── */
.ev-cart-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ev-cart-overlay.open { opacity: 1; pointer-events: all; }
.ev-cart-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 100vw);
  background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
}
.ev-cart-overlay.open .ev-cart-drawer { transform: translateX(0); }
.ev-cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.ev-cart-drawer-title {
  font-family: var(--font-d); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.ev-cart-close {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: none; border: 1px solid var(--border); color: var(--muted);
  transition: all var(--transition);
}
.ev-cart-close:hover { border-color: var(--coral); color: var(--coral); }
.ev-cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.ev-cart-empty { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px 0; color: var(--muted); text-align: center; }
.ev-cart-shop-link { margin-top: 8px; }
.ev-cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ev-cart-item-img { width: 64px; height: 64px; background: var(--surface2); flex-shrink: 0; overflow: hidden; }
.ev-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.ev-cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.ev-cart-item-name { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }
.ev-cart-item-price { font-size: 0.8rem; color: var(--muted); }
.ev-cart-item-price .woocommerce-Price-amount { color: var(--coral); font-weight: 700; }
.ev-cart-drawer-foot { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.ev-cart-total { display: flex; justify-content: space-between; font-size: 0.9rem; }
.ev-cart-total span:last-child { font-weight: 700; font-variant-numeric: tabular-nums; }

/* ── Bubble animation element ────────────────────────────────── */
.ev-cart-bubble {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 14px var(--cyan-glow);
}

/* ── Hero ────────────────────────────────────────────────────── */
.ev-hero {
  position: relative; min-height: min(600px, 85vh);
  display: flex; align-items: center;
  overflow: hidden; padding: 80px 0;
}
#ev-vapor-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.ev-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,8,15,0.9) 40%, rgba(5,8,15,0.4) 100%);
  pointer-events: none;
}
.ev-hero-content {
  position: relative; z-index: 2; max-width: 1400px; width: 100%;
  margin: 0 auto; padding: 0 48px;
}
.ev-hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.ev-hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--cyan);
}
.ev-hero-title {
  display: flex; flex-direction: column; margin-bottom: 24px;
  line-height: 0.9; gap: 2px;
}
.ev-hero-title-line {
  font-family: var(--font-d); font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase; letter-spacing: -0.01em;
  background: linear-gradient(180deg, #e8edf5 60%, rgba(232,237,245,0.5));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ev-hero-title-accent {
  background: linear-gradient(90deg, var(--cyan), #00aadd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ev-hero-sub {
  color: var(--text2); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.ev-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats */
.ev-hero-stats {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  display: flex; align-items: center; gap: 0;
  background: rgba(13,18,25,0.8); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.ev-hero-stat { padding: 18px 28px; text-align: center; }
.ev-hero-stat-num {
  font-family: var(--font-d); font-size: 2rem; letter-spacing: -0.02em;
  color: var(--cyan); line-height: 1; font-variant-numeric: tabular-nums;
}
.ev-hero-stat-num span { font-size: 1.2rem; color: var(--muted); }
.ev-hero-stat-label {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px;
}
.ev-hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Scroll hint */
.ev-hero-scroll-hint {
  position: absolute; bottom: 40px; left: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ev-scroll-line {
  display: block; width: 1px; height: 40px; background: var(--border);
  position: relative; overflow: hidden;
}
.ev-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--cyan); animation: ev-scroll-drop 2s ease infinite;
}
@keyframes ev-scroll-drop { 0% { top: -100%; } 100% { top: 200%; } }
.ev-scroll-text {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted2);
  writing-mode: vertical-rl; text-orientation: mixed;
}

/* ── Category strip ──────────────────────────────────────────── */
.ev-categories-strip {
  border-bottom: 1px solid var(--border); overflow-x: auto;
  scrollbar-width: none;
}
.ev-categories-strip::-webkit-scrollbar { display: none; }
.ev-strip-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0;
}
.ev-cat-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  border-right: 1px solid var(--border); white-space: nowrap;
  transition: all var(--transition);
}
.ev-cat-pill:first-child { border-left: 1px solid var(--border); }
.ev-cat-pill:hover { background: var(--surface); color: var(--cyan); }
.ev-cat-pill-img { width: 20px; height: 20px; object-fit: cover; border-radius: 2px; opacity: 0.7; }
.ev-cat-pill:hover .ev-cat-pill-img { opacity: 1; }

/* ── Sections ────────────────────────────────────────────────── */
.ev-section {
  max-width: 1400px; margin: 0 auto; padding: 56px 24px;
}
.ev-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; gap: 16px;
}
.ev-section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 8px;
}
.ev-section-title {
  font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase; letter-spacing: 0.01em; line-height: 1;
}
.ev-section-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: color var(--transition); white-space: nowrap;
}
.ev-section-link:hover { color: var(--cyan); }

/* ── Product Grid ────────────────────────────────────────────── */
.ev-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px; background: var(--border);
}
.ev-product-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Product Card ────────────────────────────────────────────── */
.ev-product-card {
  background: var(--surface); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background var(--transition);
}
.ev-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease; z-index: 1;
}
.ev-product-card:hover { background: #101620; }
.ev-product-card:hover::before { transform: scaleX(1); }

/* Reveal animation */
.ev-product-card { opacity: 0; transform: translateY(20px); }
.ev-product-card.ev-visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }

.ev-product-img-wrap {
  aspect-ratio: 1; display: block; overflow: hidden;
  background: #0a0f18; position: relative;
}
.ev-product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ev-product-card:hover .ev-product-img { transform: scale(1.04); }
.ev-product-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: #0a0f18; color: var(--muted2);
}

.ev-stock-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  padding: 4px 8px;
}
.ev-stock-in  { background: var(--cyan-dim);  color: var(--cyan); }
.ev-stock-out { background: var(--coral-dim); color: var(--coral); }
.ev-stock-sale { background: var(--coral); color: #fff; }

.ev-product-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ev-product-brand {
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan);
}
.ev-product-name-link { flex: 1; }
.ev-product-name {
  font-size: 0.88rem; font-weight: 600; line-height: 1.35; color: var(--text);
  margin-top: 2px;
}
.ev-product-name:hover { color: var(--cyan); }
.ev-product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.ev-product-price { font-family: var(--font-d); font-size: 1.1rem; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.ev-product-price .woocommerce-Price-amount { color: var(--coral); }
.ev-product-price del .woocommerce-Price-amount { color: var(--muted); font-size: 0.85em; }
.ev-product-sku { font-size: 0.62rem; color: var(--muted2); letter-spacing: 0.06em; }

.ev-add-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 10px 12px; margin-top: 10px;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all var(--transition);
}
.ev-add-btn:hover { background: var(--cyan-dim); color: var(--cyan); border-color: var(--cyan); }
.ev-add-btn.loading { opacity: 0.6; pointer-events: none; }
.ev-add-btn.added { color: var(--cyan); border-color: var(--cyan); background: var(--cyan-dim); }
.ev-add-btn--disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.ev-add-btn-icon { transition: transform var(--transition); flex-shrink: 0; }
.ev-add-btn:hover .ev-add-btn-icon { transform: rotate(90deg); }

/* ── Banner ──────────────────────────────────────────────────── */
.ev-banner {
  position: relative; min-height: 320px; display: flex; align-items: center;
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ev-banner-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.ev-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,8,15,0.96) 50%, rgba(5,8,15,0.7));
}
.ev-banner-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 60px 48px;
  max-width: 600px;
}
.ev-banner-eyebrow { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.ev-banner-title { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; line-height: 0.95; margin-bottom: 16px; }
.ev-banner-sub { color: var(--text2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }

/* ── Shop page ───────────────────────────────────────────────── */
.ev-wc-wrap, .ev-shop-wrap {
  max-width: 1400px; margin: 0 auto; padding: 40px 24px;
}
.ev-breadcrumb {
  font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted);
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}
.ev-breadcrumb a { color: var(--muted); transition: color var(--transition); }
.ev-breadcrumb a:hover { color: var(--cyan); }
.ev-breadcrumb span { color: var(--border2); }
.ev-shop-head { margin-bottom: 32px; }
.ev-shop-title {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 8px;
}
.ev-shop-desc { color: var(--muted); font-size: 0.9rem; max-width: 600px; margin-top: 8px; }

.ev-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
}
.ev-shop-cats { display: flex; gap: 4px; flex-wrap: wrap; }
.ev-shop-cat-pill {
  padding: 6px 16px;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--muted); border: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.ev-shop-cat-pill:hover, .ev-shop-cat-pill.active {
  background: var(--cyan-dim); color: var(--cyan); border-color: var(--cyan);
}
/* WooCommerce ordering select */
.ev-shop-ordering select,
.woocommerce-ordering select {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); padding: 8px 12px;
  font-size: 0.7rem; font-family: var(--font-b); letter-spacing: 0.06em;
  cursor: pointer; outline: none;
}
.ev-shop-pagination { margin-top: 40px; display: flex; justify-content: center; gap: 4px; }
.woocommerce-pagination ul { display: flex; gap: 4px; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  font-size: 0.78rem; color: var(--muted); border: 1px solid var(--border);
  transition: all var(--transition);
}
.woocommerce-pagination ul li .current,
.woocommerce-pagination ul li a:hover {
  background: var(--cyan-dim); color: var(--cyan); border-color: var(--cyan);
}
.ev-no-products { text-align: center; padding: 80px 24px; color: var(--muted); }
.ev-no-products p { margin-bottom: 24px; }

/* ── Single product ──────────────────────────────────────────── */
.ev-product-single-wrap {
  max-width: 1400px; margin: 0 auto; padding: 40px 24px;
}
/* Override WooCommerce single product default styles for our theme */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.woocommerce div.product .woocommerce-product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.woocommerce div.product .woocommerce-product-gallery__image img { width: 100%; }
.woocommerce div.product p.price { font-family: var(--font-d); font-size: 2rem; color: var(--coral); margin: 16px 0; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.woocommerce div.product form.cart .button,
.woocommerce button.button.alt {
  background: var(--cyan); color: #000 !important;
  font-family: var(--font-b); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; border: none;
  padding: 14px 32px; transition: background var(--transition); border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.woocommerce div.product form.cart .button:hover,
.woocommerce button.button.alt:hover { background: #33dbff; }
.woocommerce div.product .product_title {
  font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 8px;
}
.woocommerce div.product .product_meta { margin-top: 24px; font-size: 0.78rem; color: var(--muted); }
.woocommerce div.product .product_meta span span { color: var(--text2); }

/* WooCommerce notices */
.woocommerce-message, .woocommerce-info {
  background: var(--surface2); border-left: 3px solid var(--cyan);
  color: var(--text); padding: 12px 20px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.woocommerce-error { border-left-color: var(--coral); }

/* ── Content pages ───────────────────────────────────────────── */
.ev-content-wrap {
  max-width: 900px; margin: 0 auto; padding: 56px 24px;
}
.ev-page-title { font-family: var(--font-d); font-size: clamp(2rem,4vw,3rem); text-transform: uppercase; margin-bottom: 32px; }
.ev-page-body { color: var(--text2); line-height: 1.8; }
.ev-page-body h2, .ev-page-body h3 { color: var(--text); font-family: var(--font-d); text-transform: uppercase; margin: 32px 0 12px; }
.ev-page-body p { margin-bottom: 16px; }
.ev-page-body a { color: var(--cyan); }

/* ── Footer ──────────────────────────────────────────────────── */
.ev-footer { border-top: 1px solid var(--border); background: var(--surface); }
.ev-footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 56px 24px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
}
.ev-footer-logo { margin-bottom: 16px; }
.ev-footer-tagline { color: var(--muted); font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.ev-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ev-footer-col { display: flex; flex-direction: column; gap: 10px; }
.ev-footer-col-title { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.ev-footer-col a { font-size: 0.83rem; color: var(--muted); transition: color var(--transition); }
.ev-footer-col a:hover { color: var(--text); }
.ev-footer-age { font-size: 0.72rem; color: var(--muted2); line-height: 1.5; margin-top: 4px; }
.ev-footer-bar {
  max-width: 1400px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; color: var(--muted2); gap: 12px; flex-wrap: wrap;
}
.ev-footer-powered a { color: var(--cyan); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ev-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .woocommerce div.product .woocommerce-product-gallery { position: static; }
  .ev-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ev-nav { display: none; }
  .ev-nav.open {
    display: flex; position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--bg); flex-direction: column; gap: 0; padding: 0;
    border-top: 1px solid var(--border); z-index: 499; overflow-y: auto;
  }
  .ev-nav.open .ev-nav-list { flex-direction: column; }
  .ev-nav.open .ev-nav-list li a { padding: 18px 24px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .ev-menu-toggle { display: flex; }
  .ev-hero { min-height: 70vh; }
  .ev-hero-content { padding: 0 24px; }
  .ev-hero-stats { position: static; margin: 32px 24px 0; }
  .ev-hero-scroll-hint { display: none; }
  .ev-footer-links { grid-template-columns: 1fr 1fr; }
  .ev-banner-content { padding: 40px 24px; }
  .ev-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ev-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-footer-links { grid-template-columns: 1fr; }
  .ev-hero-stats { flex-wrap: wrap; }
}

/* ── Promo Bar ───────────────────────────────────────────────── */
.ev-promo-bar {
  background: var(--cyan); color: #000;
  font-size: 0.68rem; letter-spacing: 0.1em; font-weight: 600;
  height: 36px; overflow: hidden; position: relative;
}
.ev-promo-bar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 100%;
}
.ev-promo-ticker {
  flex: 1; overflow: hidden; height: 100%;
  display: flex; align-items: center;
}
.ev-promo-item {
  display: none; white-space: nowrap; animation: ev-tick-in 0.4s ease;
}
.ev-promo-item.active { display: block; }
@keyframes ev-tick-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.ev-promo-close {
  background: none; border: none; font-size: 1.2rem; line-height: 1;
  color: rgba(0,0,0,0.5); cursor: pointer; padding: 4px 8px;
  flex-shrink: 0; transition: color var(--transition);
}
.ev-promo-close:hover { color: #000; }
.ev-promo-bar.hidden { display: none; }

/* ── WhatsApp float ──────────────────────────────────────────── */
.ev-wa-btn {
  position: fixed; bottom: 28px; right: 24px; z-index: 400;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 12px 20px 12px 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden; max-width: 52px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.ev-wa-btn:hover {
  max-width: 200px; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.ev-wa-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; white-space: nowrap;
  opacity: 0; max-width: 0; overflow: hidden;
  transition: opacity 0.3s, max-width 0.3s;
}
.ev-wa-btn:hover .ev-wa-label { opacity: 1; max-width: 140px; }
@media (max-width: 480px) { .ev-wa-btn { bottom: 80px; } }

/* ── Newsletter Popup ────────────────────────────────────────── */
.ev-nl-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
  padding: 24px;
}
.ev-nl-overlay.open { opacity: 1; pointer-events: all; }
.ev-nl-modal {
  background: var(--surface); border: 1px solid var(--border);
  padding: 48px 40px; max-width: 440px; width: 100%;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transform: translateY(24px) scale(0.97); transition: transform 0.4s;
}
.ev-nl-overlay.open .ev-nl-modal { transform: translateY(0) scale(1); }
.ev-nl-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.4rem; line-height: 1;
  color: var(--muted); cursor: pointer; transition: color var(--transition);
}
.ev-nl-close:hover { color: var(--coral); }
.ev-nl-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.ev-nl-title { font-family: var(--font-d); font-size: 2.4rem; text-transform: uppercase; line-height: 0.95; margin-bottom: 14px; }
.ev-nl-sub { color: var(--text2); font-size: 0.88rem; line-height: 1.6; margin-bottom: 24px; }
.ev-nl-form { display: flex; flex-direction: column; gap: 10px; }
.ev-nl-input {
  background: var(--surface2); border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; font-size: 0.88rem; font-family: var(--font-b); outline: none;
  transition: border-color var(--transition);
}
.ev-nl-input:focus { border-color: var(--cyan); }
.ev-nl-fine { font-size: 0.66rem; color: var(--muted2); margin-top: 8px; text-align: center; letter-spacing: 0.06em; }

/* ── Utility ─────────────────────────────────────────────────── */
.screen-reader-text { position: absolute; left: -9999px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
