/*
Theme Name: Vaposhop
Theme URI: https://vapeshop.local
Description: Mobile-first WooCommerce theme for vape and edible product drops.
Version: 1.1.0
Requires at least: 5.9
Requires PHP: 7.4
Author: Vaposhop
Author URI: https://vapeshop.local
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vaposhop
Domain Path: /languages
*/

:root {
  --bg: #0a0e27;
  --surface: #0f1429;
  --surface-2: #151d3f;
  --surface-3: #1a2456;
  --border: #2a3558;
  --border-strong: #3d4f7f;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #2dd4bf;
  --blue: #0ea5e9;
  --gold: #fbbf24;
  --gold-soft: #fcd34d;
  --gold-dim: rgba(251, 191, 36, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); color: var(--text); scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; background: none; color: inherit; cursor: pointer; }
input { min-width: 0; }
input, textarea, select { font-size: 16px; }

.site-content { min-height: 50vh; }
.hero,
.plug,
.shop-surface,
.newsletter,
.faq,
.footer,
.page-shell,
.vapo-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .52s ease var(--reveal-delay, 0ms),
    transform .52s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}
.hero.in-view,
.plug.in-view,
.shop-surface.in-view,
.newsletter.in-view,
.faq.in-view,
.footer.in-view,
.page-shell.in-view,
.vapo-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.container {
  width: min(100% - 24px, 1160px);
  margin-inline: auto;
}
.site-main { padding: 36px 0 58px; }

.marquee-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  min-width: max-content;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.nav {
  position: sticky;
  top: 32px;
  z-index: 75;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  padding: 8px 12px;
  background: rgba(0,0,0,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 42px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 0 24px var(--gold-dim);
}
.brand span::after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  margin: 5px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.brand img, .brand .custom-logo { max-height: 44px; width: auto; object-fit: contain; }
.icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.icon-btn:hover { background: rgba(255,255,255,.08); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 4px; }
.nav-faq {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  color: #e6e6e6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform .18s cubic-bezier(.2,.9,.3,1.4);
}
.cart-count.show { transform: scale(1); }

.deal {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 120px at 20% 0%, rgba(255,255,255,.06), transparent 60%), linear-gradient(180deg, #0b0b0b, #050505);
  border-bottom: 1px solid var(--gold-dim);
}
.deal::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 30%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.08), transparent);
  animation: dealSheen 7s ease-in-out infinite;
}
.deal-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .7;
}
.deal-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.deal-tag {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4b8, var(--gold));
  color: #000;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.deal-main { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.deal-text { color: #fff; font-size: 12px; line-height: 1.35; }
.deal-timer { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.deal-box {
  min-width: 32px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: 900;
}
.deal-box em { font-style: normal; font-size: 8px; text-transform: lowercase; }
.deal-close { width: 30px; height: 30px; color: #aaa; }

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 14px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Hero video container ── */
.hero-mark {
  width: min(320px, 88vw);
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-video-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.36);
  box-shadow:
    0 0 0 1px rgba(212,175,55,.1),
    0 0 40px rgba(212,175,55,.15),
    0 24px 60px rgba(0,0,0,.65);
  animation: heroFloat 5.8s ease-in-out infinite;
  background: #0a0a0a;
  position: relative;
}
.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}
.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

/* ── View Shop button directly under video ── */
.hero-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 28px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.5);
  background: linear-gradient(180deg, rgba(212,175,55,.18) 0%, rgba(212,175,55,.06) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .18s ease, box-shadow .2s ease;
  box-shadow: 0 4px 20px rgba(212,175,55,.12);
}
.hero-shop-btn:hover {
  background: linear-gradient(180deg, rgba(212,175,55,.32) 0%, rgba(212,175,55,.14) 100%);
  border-color: rgba(212,175,55,.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,.22);
  color: #fff;
  text-decoration: none;
}
.hero-shop-btn svg {
  transition: transform .18s ease;
}
.hero-shop-btn:hover svg {
  transform: translateX(3px);
}

/* ── Fallback: keep old rotating-product if video missing ── */
.rotating-product {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  animation: heroFloat 5.8s ease-in-out infinite;
}
.rotating-product img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 30px rgba(212,175,55,.25));
}
.plug, .shop-surface, .newsletter, .faq, .footer, .page-shell {
  width: min(100% - 24px, 1160px);
  margin-inline: auto;
}
.plug { margin-top: 8px; }
.plug-banner {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(212,175,55,.14), rgba(11,11,11,.98));
  text-align: left;
}
.plug-banner-text { display: grid; gap: 2px; }
.plug-banner-kicker { font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.plug-banner-kicker { color: var(--gold-soft); }
.plug-banner-sub { color: var(--muted); font-size: 11px; font-weight: 700; }
.plug-banner-cta {
  padding: 7px 10px;
  border: 1px solid #303030;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.plug-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease; }
.plug-body.open { grid-template-rows: 1fr; }
.plug-body-inner { overflow: hidden; color: var(--soft); font-size: 12px; }
.plug-body-inner p { padding: 14px; border: 1px solid var(--border); border-top: 0; border-radius: 0 0 8px 8px; background: #080808; }

.shop-surface { padding: 18px 0 46px; }
.shop-title { text-align: center; margin: 18px 0 8px; }
.shop-title span, .page-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.shop-title h1 { margin-top: 4px; font-size: clamp(28px, 8vw, 54px); line-height: .95; }
.search-wrap { max-width: 520px; margin: 0 auto; padding: 14px 0 4px; }
.search {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--muted);
}
.search:focus-within { border-color: var(--border-strong); color: #fff; }
.search:focus-within { box-shadow: 0 0 0 1px var(--gold-dim); }
.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
}
.search input::placeholder { color: var(--muted); }

.chips-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 18px;
}
.chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip, .sort-btn, .sort-option {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #050505;
  color: #fff;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 800;
}
.chip.active, .sort-option.active { background: #fff; color: #000; border-color: #fff; }
.chip-tag { font-size: 9px; }
.chip-tag-thc { color: var(--accent); }
.chip-tag-nic { color: #8ab4ff; }
.chip-tag-gold { color: var(--gold-soft); }
.chip.active .chip-tag { color: #000; }
.filter-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: -4px 0 18px;
}
.filter-row label {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.filter-row span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.filter-row select {
  width: 100%;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #0d0d0d;
  color: #fff;
  padding: 0 12px;
  outline: 0;
}
.filter-row select:focus {
  border-color: rgba(212,175,55,.58);
  box-shadow: 0 0 0 1px var(--gold-dim);
}
.sort-wrap { position: relative; flex: 0 0 auto; }
.sort-btn { text-transform: uppercase; letter-spacing: .1em; }
.sort-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 7px);
  min-width: 154px;
  z-index: 20;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #090909;
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}
.sort-option { width: 100%; justify-content: flex-start; margin: 2px 0; border-radius: 6px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.vapo-card {
  min-width: 0;
  border: 1px solid #141414;
  border-radius: 7px;
  background: linear-gradient(180deg, #0e0e0e, #070707);
  overflow: hidden;
  transition:
    opacity .52s ease var(--reveal-delay, 0ms),
    transform .52s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
    border-color .18s ease,
    box-shadow .18s ease;
}
.vapo-card[hidden] { display: none; }
.vapo-card-media {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 22%, rgba(255,255,255,.07), transparent 45%), #0b0b0b;
  overflow: hidden;
}
.vapo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform .22s ease, filter .22s ease;
}
.vapo-card:hover .vapo-card-media img { transform: scale(1.035); filter: brightness(1.06); }
.vapo-card:hover { border-color: rgba(212,175,55,.34); box-shadow: 0 0 0 1px rgba(212,175,55,.08); }
.vapo-card-body { padding: 8px; }
.vapo-card-meta { color: var(--gold-soft); font-size: 10px; line-height: 1.2; min-height: 12px; }
.vapo-card h3 {
  margin: 2px 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.vapo-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}
.vapo-rating { min-width: 0; color: #fff; font-size: 10px; }
.vapo-rating .star-rating { transform: scale(.72); transform-origin: left center; margin: 0; }
.vapo-price { color: #fff; font-size: 11px; white-space: nowrap; }
.vapo-price .woocommerce-Price-amount { color: #fff; }
.vapo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 8px;
}
.btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}
.btn.primary { background: #fff; color: #000; }
.btn.primary:hover { background: linear-gradient(180deg, #fff7c8, var(--gold)); border-color: var(--gold); }
.btn.ghost { background: transparent; color: #fff; }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn.full { width: 100%; }
.empty {
  grid-column: 1 / -1;
  padding: 36px 12px;
  color: var(--muted);
  text-align: center;
}

.newsletter {
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}
.newsletter h2 { font-size: clamp(22px, 6vw, 30px); line-height: 1.1; }
.newsletter p { margin-top: 6px; color: var(--muted); font-size: 12px; }
.nl-form {
  width: min(100%, 420px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}
.nl-form input {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface-2);
  color: #fff;
  padding: 0 12px;
  outline: 0;
}

.faq { padding: 42px 0 54px; }
.faq-head { text-align: center; margin-bottom: 18px; }
.faq-kicker {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.faq-title { margin-top: 4px; font-size: clamp(30px, 8vw, 44px); line-height: .95; }
.faq-list { width: min(100%, 760px); margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #e9e9e9;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item.priority summary::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px var(--accent);
}
.faq-chev {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
}
.faq-chev::before, .faq-chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.faq-chev::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .18s ease; }
.faq-item[open] .faq-chev::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p { padding: 0 0 16px; color: var(--muted); font-size: 13px; }

.footer {
  padding: 34px 0 26px;
  text-align: center;
  border-top: 1px solid var(--gold-dim);
}
.foot-brand {
  display: inline-flex;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 8px;
}
.foot-links a { color: var(--muted); font-size: 12px; }
.foot-links a:hover { color: #fff; }
.footer p { color: #666; font-size: 11px; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: opacity .18s ease, backdrop-filter .2s ease;
}
.overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 110;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  background: #050505;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(0,0,0,.65);
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
}
.drawer-left { left: 0; transform: translateX(-100%); border-left: 0; }
.drawer-right { right: 0; transform: translateX(100%); border-right: 0; }
.drawer.show { transform: translateX(0); }
.drawer[hidden] { display: flex; }
.drawer-head, .modal-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid var(--gold-dim);
}
.drawer-title, .modal-title {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.drawer-nav { display: grid; padding: 10px; }
.drawer-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: #fff;
  font-weight: 800;
}
.cart-body {
  flex: 1;
  overflow: auto;
  padding: 12px;
}
.cart-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 8px;
}
.cart-item {
  display: grid !important;
  grid-template-columns: 56px 1fr auto !important;
  gap: 12px !important;
  align-items: stretch !important;
  padding: 12px !important;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
  border-radius: 6px;
  margin-bottom: 4px;
  flex-wrap: nowrap !important;
}
.cart-item:hover {
  background: rgba(45, 212, 191, 0.05);
}
.ci-image {
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 6px;
  background: var(--surface-2);
  flex-shrink: 0 !important;
  min-width: 56px !important;
}
.ci-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ci-info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 4px !important;
  min-width: 0 !important;
  flex: 1 !important;
}
.ci-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}
.ci-flavor {
  color: var(--muted);
  font-size: 11px;
  word-break: break-word;
}
.ci-sku {
  color: var(--muted);
  font-size: 10px;
  opacity: 0.8;
}
.ci-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface-2);
  padding: 2px;
  margin-top: 2px;
}
.qty-dec,
.qty-inc {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.qty-dec:hover,
.qty-inc:hover {
  background: rgba(45, 212, 191, 0.15);
  transform: scale(1.1);
}
.qty-val {
  min-width: 18px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.ci-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  min-width: 80px !important;
}
.ci-price {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}
.ci-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}
.ci-remove:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  transform: scale(1.05);
}
.cart-foot {
  padding: 12px;
  border-top: 1px solid var(--border);
  background: #030303;
}
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 7px;
}
.cart-line span:last-child { color: #fff; font-weight: 800; }
.cart-line .free { color: var(--accent); }
.ship-location {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  transition: all 0.2s ease;
}
.ship-location:focus-within {
  border-color: var(--accent);
  background: var(--surface-3);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}
.ship-location input {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: color 0.2s ease;
}
.ship-location input::placeholder {
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 12px;
  pointer-events: none;
}
.modal[hidden] { display: none; }
.modal.show { pointer-events: auto; }
.modal-inner {
  /* Wider modal to accommodate horizontal layout */
  width: min(920px, 96%) !important;
  max-height: min(760px, 88vh);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px 12px 8px 8px;
  background: #070707;
  box-shadow: 0 26px 70px rgba(0,0,0,.78);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: transform .2s ease, opacity .2s ease;
}
.modal.show .modal-inner { opacity: 1; transform: translateY(0) scale(1); }
.pd-body {
  display: grid !important;
  gap: 14px;
  padding: 14px;
  /* Force two-column horizontal layout so details remain side-by-side on ALL screens */
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) !important;
  align-items: start !important;
}
.pd-image {
  min-height: 220px;
  min-width: 240px !important;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.08), transparent 42%), #0c0c0c;
  flex-shrink: 0 !important;
}
.pd-image img { max-height: 380px; max-width: 100%; height: auto; object-fit: contain; }
.pd-copy { display: grid; gap: 14px; color: var(--soft); min-width: 260px !important; overflow-y: auto; max-height: 500px; }
.pd-price { color: #fff; font-size: 18px; font-weight: 900; }
.pd-price { color: var(--gold-soft); }
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.flavor-chip {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface-2);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  word-break: break-word;
}
.flavor-chip:hover {
  border-color: var(--accent);
  background: var(--surface-3);
}

/* Mobile: full-width flavor chips for touch */
@media (max-width: 560px) {
  .flavor-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .flavor-chip {
    min-height: 50px;
    padding: 14px 12px;
    font-size: 14px;
  }
}
.flavor-chip.selected {
  border-color: var(--accent);
  background: rgba(45, 212, 191, 0.1);
}
.flavor-chip.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}
.flavor-chip.active .fc-name {
  color: var(--bg);
}
.fc-name { color: #fff; font-size: 12px; font-weight: 800; }

/* Details modal: fully responsive layout */
#detailsModal .modal-inner {
  width: min(95vw, 920px) !important;
  max-height: min(95vh, 800px) !important;
  border-radius: 12px;
}
#detailsModal .pd-body {
  display: grid !important;
  /* Mobile: vertical, Desktop: horizontal */
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  padding: 16px !important;
  align-items: start !important;
}
#detailsModal .pd-image {
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 200px !important;
  flex-shrink: 0 !important;
}
#detailsModal .pd-image img {
  max-height: 300px !important;
  width: 100% !important;
  height: auto !important;
}
#detailsModal .pd-copy {
  min-width: auto !important;
  flex-grow: 1 !important;
  overflow-y: auto !important;
  max-height: 400px !important;
  display: grid;
  gap: 12px;
}

/* Desktop: horizontal layout for details modal */
@media (min-width: 560px) {
  #detailsModal .modal-inner {
    width: min(90vw, 920px) !important;
    max-height: min(90vh, 800px) !important;
  }
  #detailsModal .pd-body {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
    gap: 20px !important;
  }
  #detailsModal .pd-image {
    min-width: 280px !important;
    max-width: 320px !important;
    min-height: auto !important;
  }
  #detailsModal .pd-image img {
    max-height: 380px !important;
  }
  #detailsModal .pd-copy {
    min-width: 280px !important;
    max-height: 500px !important;
  }
}

/* Flavor modal: fully responsive with scrolling */
#flavorModal .modal-inner {
  width: min(95vw, 600px) !important;
  max-height: min(95vh, 700px) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}
#flavorModal .modal-head {
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
}
.flavor-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 12px;
}
.flavor-actions {
  flex-shrink: 0;
  padding: 14px 12px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.3);
}

/* Desktop: larger flavor modal */
@media (min-width: 560px) {
  #flavorModal .modal-inner {
    width: min(90vw, 700px) !important;
    max-height: min(90vh, 800px) !important;
  }
  .flavor-body {
    padding: 20px 16px;
  }
  .flavor-actions {
    padding: 16px 16px;
  }
}

/* Mobile: responsive buttons in modals for touch */
@media (max-width: 560px) {
  #detailsModal .btn,
  #flavorModal .btn,
  .flavor-actions .btn {
    min-height: 48px !important;
    padding: 12px 16px !important;
    font-size: 12px !important;
  }
  #detailsModal .pd-body .btn {
    margin-top: 12px !important;
  }
  .flavor-actions .btn {
    width: 100% !important;
  }
}

.page-main { padding: 42px 0 70px; }
.page-shell {
  padding: 22px 0;
}
.page-header {
  width: min(100% - 24px, 1160px);
  margin: 0 auto 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.page-header h1, .page-title {
  color: #fff;
  font-size: clamp(34px, 10vw, 64px);
  line-height: .95;
}
.page-content {
  width: min(100% - 24px, 1160px);
  margin-inline: auto;
}
.contact-info {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.contact-info h3 { margin-bottom: 8px; color: #fff; }
.search-form {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 18px 0;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.search-field {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  color: #fff;
  padding: 0 12px;
}
.search-submit {
  min-height: 40px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #fff;
  color: #000;
  padding: 0 14px;
  font-weight: 900;
}
.page-shell h1 {
  margin: 6px 0 22px;
  font-size: clamp(36px, 12vw, 76px);
  line-height: .92;
}
.page-body {
  width: min(100%, 760px);
  color: var(--soft);
}
.page-body h2 { margin: 26px 0 8px; color: #fff; font-size: 18px; }
.page-body p, .page-body li { margin-bottom: 12px; color: var(--soft); }
.page-body a { text-decoration: underline; text-underline-offset: 3px; }
.pagination-wrap { margin-top: 28px; text-align: center; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: inline-flex; gap: 6px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #080808;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: #fff; color: #000; }

/* Z-INDEX POSITIONING HIERARCHY */
.marquee-bar { z-index: 9990; }
.nav { z-index: 9995; }
.deal { z-index: 9989; }
.drawer-left { z-index: 9998; }
.drawer-right { z-index: 9999; }
.overlay { z-index: 9997; }
.modal { z-index: 9996; }
.checkout-overlay { z-index: 9997; }
#checkoutModal { z-index: 10000; }

/* CLOSE BUTTON VISIBILITY */
.drawer-head .close, 
.checkout-modal-close {
  position: relative;
  z-index: 10001;
}

/* CHECKOUT MODAL STYLES */
#checkoutModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#checkoutModal.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.checkout-modal-content {
  position: relative;
  width: min(100% - 24px, 600px);
  max-height: 90vh;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.checkout-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.checkout-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* CHECKOUT STEPS */
.checkout-steps {
  padding: 28px 20px;
}

.checkout-step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 12px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.current .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.step.completed .step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}

.step.current .step-label {
  color: var(--accent);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}

.checkout-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.checkout-step.active {
  display: block;
}

.checkout-step h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* CHECKOUT FORM */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  color: #fff;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

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

/* CHECKOUT REVIEW */
.checkout-review {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-section {
  padding: 16px;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.review-section h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item .label {
  color: var(--muted);
}

.review-item .value {
  color: #fff;
  font-weight: 500;
}

.review-total {
  background: rgba(45, 212, 191, 0.1);
  border-color: var(--accent);
}

.review-total .review-item.total-line {
  border-bottom: none;
  padding-top: 12px;
  border-top: 1px solid var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.review-total .review-item.total-line .label {
  color: #fff;
}

.review-total .review-item.total-line .value {
  color: var(--accent);
}

/* PAYMENT METHODS */
.payment-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-option {
  position: relative;
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  transition: all 0.2s ease;
}

.payment-option input:checked + .payment-option-content {
  border-color: var(--accent);
  background: rgba(45, 212, 191, 0.08);
}

.payment-logo {
  width: 40px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.payment-name {
  color: #fff;
  font-weight: 500;
}

/* PAYMENT METHODS DISPLAY - Cart Drawer */
.payment-methods-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.payment-methods-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: all 0.15s ease;
}

.pay-icon:hover {
  transform: scale(1.05);
}

.pay-icon svg {
  width: 100%;
  height: auto;
}

.pay-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 0 8px;
  text-align: center;
  word-break: break-word;
}

.payment-methods-sublabel {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* CHECKOUT ACTIONS */
.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

/* ============ CHECKOUT MODAL ============ */
.checkout-modal-inner {
  max-width: 500px;
  width: 90vw;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.checkout-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-header h2 {
  font-size: 18px;
  margin: 0;
  color: #fff;
}

.checkout-header .close {
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
}

.checkout-step {
  padding: 24px;
  animation: slideUp 0.3s ease;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 14px;
}

.step-header h3 {
  margin: 0;
  font-size: 16px;
}

.checkout-form-group {
  margin-bottom: 16px;
}

.checkout-form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.checkout-form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-3);
}

.checkout-order-review {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item-name {
  color: #fff;
  font-weight: 500;
}

.review-item-qty {
  color: var(--muted);
  font-size: 12px;
}

.review-item-price {
  color: var(--accent);
  font-weight: 600;
}

.checkout-totals {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--muted);
}

.total-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.total-row.total span:last-child {
  color: var(--accent);
}

.payment-methods {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-option {
  position: relative;
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option input:checked + .payment-option-content {
  border-color: var(--accent);
  background: rgba(45, 212, 191, 0.08);
}

.payment-option-content:hover {
  border-color: var(--accent);
}

.payment-label {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.payment-icons {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.checkout-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.checkout-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.checkout-confirmation {
  text-align: center;
  padding: 40px 20px;
}

.checkout-confirmation h2 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}

.checkout-confirmation p {
  color: var(--soft);
  margin-bottom: 20px;
}

/* ============ ANIMATIONS ============ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotateProduct {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

.animate-in-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 0.1s;
}

.benefit-card {
  animation: slideInLeft 0.5s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* ============ BENEFITS GRID ============ */
.benefit-card {
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent);
  background: var(--surface-3);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.15);
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

.benefit-card h2 {
  font-size: 16px;
  margin: 12px 0;
  color: #fff;
}

.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ PAGINATION ============ */
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.pagination-wrapper button {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface-2);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination-wrapper button:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--surface-3);
}

.pagination-wrapper button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#pageIndicator {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

/* ============ MODAL Z-INDEX FIX ============ */
.modal {
  position: fixed !important;
  z-index: 10000 !important;
}

.overlay {
  z-index: 9997 !important;
}

.drawer {
  z-index: 9998 !important;
}

.drawer-right {
  z-index: 9999 !important;
}

/* ============ HOVER ANIMATIONS ============ */
.vapo-card {
  transition: all 0.3s ease;
}

.vapo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 212, 191, 0.15);
}

.btn {
  transition: all 0.2s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn.primary:hover {
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.3);
}

.checkout-message.show {
  opacity: 1;
  pointer-events: auto;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #fff;
}

.success-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #22c55e;
}

.success-message strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.success-message p {
  font-size: 12px;
  color: var(--soft);
  margin: 0;
}

/* ANIMATION CLASSES */
.benefit-card,
.stat-item,
.process-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --stagger-delay: 0ms;
  transition-delay: var(--stagger-delay);
}

.benefit-card.animate-in,
.stat-item.animate-in,
.process-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.vapo-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vapo-card.hover-lift {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* HERO FLOATING ANIMATION */
.hero-mark {
  animation: heroFloat 3.8s ease-in-out infinite;
}

/* TRUST GRID */
.trust-grid {
  margin: 48px 0;
  display: grid;
  gap: 20px;
}

.trust-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(21, 29, 63, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.trust-grid article:hover {
  border-color: var(--accent);
  background: rgba(21, 29, 63, 0.8);
  transform: translateY(-4px);
}

.trust-grid article span {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
}

.trust-grid article h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.trust-grid article p {
  margin: 0;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.6;
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* STATS SECTION */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 20px 16px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.05), rgba(14, 165, 233, 0.05));
  border-radius: 12px;
  border: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* PROCESS VISUALIZATION */
.process-steps {
  display: grid;
  gap: 16px;
  margin: 36px 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  font-weight: 900;
  font-size: 24px;
  color: #000;
}

.process-step-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.process-step-content p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 800px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step-icon {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 12px;
  }
}

/* RIPPLE EFFECT */
.ripple {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* PAGINATION CONTROLS */
.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 32px 20px;
  flex-wrap: wrap;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background: var(--surface-3);
  border-color: var(--accent);
  color: var(--accent);
}

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

.pagination-info {
  color: var(--muted);
  font-size: 12px;
  min-width: 100px;
  text-align: center;
}

/* FADE-IN ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-on-load {
  opacity: 0;
}

.fade-in-on-load.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes dealSheen { 0% { transform: translateX(0); } 60%,100% { transform: translateX(450%); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-8px); } }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .hero,
  .plug,
  .shop-surface,
  .newsletter,
  .faq,
  .footer,
  .page-shell,
  .vapo-card {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 560px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .filter-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deal-main { flex-direction: row; align-items: center; justify-content: space-between; }
  .modal { place-items: center; }
  .modal-inner { border-radius: 10px; width: min(920px, 96%) !important; }
  .pd-body { grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) !important; }
}

@media (min-width: 900px) {
  body { font-size: 15px; }
  .nav { min-height: 70px; padding-inline: 18px; }
  .brand img, .brand .custom-logo { max-height: 58px; }
  .hero { padding-top: 34px; }
  .hero-mark { width: 148px; }
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .vapo-card-body { padding: 10px; }
  .vapo-card h3 { font-size: 13px; }
}

@media (max-width: 380px) {
  .nav-faq {
    width: 32px;
    padding: 0;
    justify-content: center;
  }
  .cart-item {
    grid-template-columns: 48px 1fr auto !important;
    gap: 8px !important;
    padding: 10px !important;
  }
  .ci-image {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }
  .ci-name {
    font-size: 12px;
  }
  .ci-flavor {
    font-size: 10px;
  }
  .ci-price {
    font-size: 12px;
  }
  .ci-right {
    gap: 6px;
  }
  .ci-remove {
    width: 24px;
    height: 24px;
  }
  .ci-remove svg {
    width: 14px;
    height: 14px;
  }
  .qty-dec,
  .qty-inc {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .qty-val {
    min-width: 16px;
    font-size: 11px;
  }
  .cart-line {
    font-size: 11px;
    gap: 8px;
  }
  .pay-grid {
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
    gap: 6px;
  }
  .payment-methods-label {
    font-size: 10px;
  }
  .payment-methods-sublabel {
    font-size: 9px;
  }
}

/* Small phones (320px - 380px) */
@media (max-width: 320px) {
  .cart-item {
    grid-template-columns: 44px 1fr auto !important;
    gap: 6px !important;
    padding: 8px !important;
  }
  .ci-image {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
  .ci-name {
    font-size: 11px;
  }
  .ci-remove {
    width: 22px;
    height: 22px;
  }
  .pay-grid {
    grid-template-columns: repeat(auto-fit, minmax(38px, 1fr));
    gap: 4px;
  }
  .cart-body {
    padding: 8px;
  }
  .cart-foot {
    padding: 10px;
  }
}

/* Tablets and larger (560px - 900px) */
@media (min-width: 560px) and (max-width: 899px) {
  .cart-item {
    grid-template-columns: 64px 1fr auto !important;
    gap: 14px !important;
    padding: 14px !important;
  }
  .ci-image {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
  }
  .ci-name {
    font-size: 14px;
  }
  .ci-flavor {
    font-size: 12px;
  }
  .ci-price {
    font-size: 14px;
  }
  .pay-grid {
    grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
    gap: 10px;
  }
  .cart-line {
    font-size: 13px;
  }
}

/* Large screens (900px+) */
@media (min-width: 900px) {
  .drawer-right {
    width: 420px;
  }
  .cart-item {
    grid-template-columns: 72px 1fr auto !important;
    gap: 16px !important;
    padding: 16px !important;
  }
  .ci-image {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
  }
  .ci-name {
    font-size: 15px;
  }
  .ci-flavor {
    font-size: 13px;
  }
  .ci-price {
    font-size: 15px;
  }
  .pay-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 12px;
  }
  .cart-line {
    font-size: 14px;
  }
}
