/* ═══════════════════════════════════════════════════════════════
   LUV BUG Bug Remover Wipes — Global Stylesheet
   "Clean It. Love It."
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Root ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #DC2626;
  --red-bright: #EF4444;
  --red-dark:   #B91C1C;
  --gold:       #D4AF37;
  --gold-bright:#F0D060;
  --gold-dark:  #B8961D;
  --bg:         #0A0A0A;
  --bg-soft:    #111111;
  --surface:    #141414;
  --surface2:   #1A1A1A;
  --border:     rgba(220,38,38,.18);
  --border2:    rgba(212,175,55,.18);
  --glass:      rgba(255,255,255,.05);
  --glass2:     rgba(255,255,255,.08);
  --text:       #F5F5F5;
  --text-soft:  rgba(245,245,245,.65);
  --text-dim:   rgba(245,245,245,.38);
  --line:       rgba(255,255,255,.08);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif:      'Inter', system-ui, sans-serif;
  --transition: cubic-bezier(.25,.46,.45,.94);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.4);
  --shadow-md:  0 8px 40px rgba(0,0,0,.5);
  --shadow-lg:  0 24px 80px rgba(0,0,0,.6);
  --glow-red:   0 0 40px rgba(220,38,38,.25);
  --glow-gold:  0 0 40px rgba(212,175,55,.2);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--text-soft); }
a  { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

.eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.muted { color: var(--text-dim); }
.gold  { color: var(--gold); }
.red   { color: var(--red); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
}

/* ── Glass Card ────────────────────────────────────────────── */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  border-top-color: rgba(255,255,255,.18);
  border-left-color: rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .3s var(--transition), box-shadow .3s var(--transition), border-color .3s;
}
.glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
  border-color: rgba(220,38,38,.25);
}
.glass-red {
  border-color: rgba(220,38,38,.25);
  box-shadow: 0 8px 32px rgba(220,38,38,.15), inset 0 1px 0 rgba(255,255,255,.08);
}
.glass-gold {
  border-color: rgba(212,175,55,.25);
  box-shadow: 0 8px 32px rgba(212,175,55,.1), inset 0 1px 0 rgba(212,175,55,.08);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.1) 0%, transparent 100%);
  pointer-events: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px rgba(220,38,38,.35);
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 8px 32px rgba(220,38,38,.5);
  transform: translateY(-2px);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: #0A0A0A;
  box-shadow: 0 4px 24px rgba(212,175,55,.3);
}
.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 8px 32px rgba(212,175,55,.45);
  transform: translateY(-2px);
  color: #0A0A0A;
}

.btn-glass {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block { display: flex; width: 100%; }
.btn-sm    { padding: .55rem 1.2rem; font-size: .82rem; }
.btn-lg    { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
}
/* Single track containing content doubled → translates -50% for perfect seamless loop */
.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  padding: .5rem 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.announcement-track span {
  display: inline-flex;
  align-items: center;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-track span::before { content: '✦  '; color: rgba(255,255,255,.65); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Mobile announcement bar — compact text, tighter spacing */
@media (max-width: 768px) {
  .announcement-track {
    gap: 2rem;
    padding: .4rem 0;
  }
  .announcement-track span { font-size: .62rem; letter-spacing: .07em; }
}

/* ── Site Header / Nav ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-bar {
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
  transition: background .3s, box-shadow .3s;
}
.nav-bar.scrolled {
  background: rgba(10,10,10,.95);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
}
.nav-logo-text {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: .6rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
nav.main-nav a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .2s;
  text-decoration: none;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--text); }

/* Hide panel-only elements on desktop */
.nav-panel-head, .nav-panel-cta { display: none; }

.nav-icons {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-soft);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  position: relative;
}
.nav-icon:hover { color: var(--text); background: rgba(255,255,255,.08); }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--red);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.hidden { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: .5rem;
  font-size: 1.4rem;
}

/* ── Mobile nav backdrop overlay ──────────────────────────── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
}
.nav-backdrop.open { display: block; }

@media (max-width: 768px) {
  /* Mobile navbar: [☰ hamburger] [  LOGO (center)  ] [account+cart] */
  .menu-toggle { display: flex; flex-shrink: 0; }
  .nav-bar {
    height: 58px;
    padding: 0 .6rem;
    display: grid;
    grid-template-columns: 44px 1fr 88px;
    align-items: center;
    gap: 0;
  }
  /* Center the logo in the middle column */
  .nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: unset;
  }
  .nav-logo img { height: 48px; }
  /* Icons flush right */
  .nav-icons { justify-content: flex-end; gap: 0; }

  /* Slide-in left panel */
  nav.main-nav {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(290px, 85vw);
    background: #111111;
    border-right: 1px solid rgba(255,255,255,.1);
    box-shadow: 8px 0 32px rgba(0,0,0,.6);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 999;
    padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.25,.46,.45,.94);
  }
  nav.main-nav.open { transform: translateX(0); }

  /* Panel header and cta: show inside mobile panel */
  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .nav-panel-cta { display: block; }
  .nav-panel-logo {
    height: 42px;
    width: auto;
    background: transparent;
    display: block;
  }
  .nav-panel-close {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text-soft);
    width: 34px; height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    transition: all .2s;
    flex-shrink: 0;
  }
  .nav-panel-close:hover { background: rgba(220,38,38,.15); border-color: rgba(220,38,38,.4); color: var(--red); }

  /* Nav links inside panel */
  nav.main-nav a {
    font-size: .92rem;
    font-weight: 600;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: var(--text-soft);
    text-align: left;
    letter-spacing: .04em;
    transition: all .18s;
    display: block;
  }
  nav.main-nav a:hover, nav.main-nav a.active {
    color: var(--text);
    background: rgba(220,38,38,.07);
    border-left: 3px solid var(--red);
    padding-left: calc(1.25rem - 3px);
  }

  /* Bottom CTA inside panel */
  .nav-panel-cta {
    margin-top: auto;
    padding: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
  }
  .nav-panel-cta a {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: .8rem 1.5rem !important;
    border-bottom: none !important;
    border-left: none !important;
    background: var(--red) !important;
    color: #fff !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    font-size: .88rem !important;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  /* Phone hero sizing — compact */
  .hero {
    min-height: 48vh;
    align-items: flex-start;
  }
  .hero-content { padding: 2.5rem 1.25rem 2rem; }
  .hero h1 { font-size: clamp(1.8rem, 9vw, 3rem); }
  .hero-sub { font-size: .88rem; margin-bottom: 1.25rem; }
  .hero-cta .btn { padding: .65rem 1.25rem; font-size: .82rem; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Desktop hero — the wide landscape banner */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero-desktop.png?v=2');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #050505;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
/* Phone hero — square banner, portrait-optimised for all iPhones */
@media (max-width: 768px) {
  .hero-bg {
    background-image: url('assets/img/hero-mobile.png?v=4');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .hero { min-height: 50vh; }
  /* Lighter overlay so the car + sunset read through clearly */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,10,10,.75) 0%,
      rgba(10,10,10,.45) 45%,
      rgba(10,10,10,.15) 100%
    );
  }
}
/* iPhone 17 Pro Max / large phones (430px wide) */
@media (max-width: 430px) {
  .hero { min-height: 48vh; }
  .hero-bg { background-position: center center; }
  .hero-content { padding: 2.5rem 1.1rem 2rem; max-width: 100%; }
  .hero h1 { font-size: clamp(1.8rem, 8.5vw, 2.8rem); }
  .hero-sub { font-size: .9rem; max-width: 100%; margin-bottom: 1.5rem; }
  .hero-cta .btn { padding: .75rem 1.5rem; font-size: .85rem; }
}
/* iPhone SE / small phones (≤375px) */
@media (max-width: 375px) {
  .hero { min-height: 44vh; }
  .hero-bg { background-position: center center; }
  .hero-content { padding: 2.25rem 1rem 1.75rem; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,.85) 0%,
    rgba(10,10,10,.6) 50%,
    rgba(10,10,10,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 2rem 3rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(220,38,38,.18);
  border: 1px solid rgba(220,38,38,.5);
  color: #EF4444;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: heroTagPulse 2s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(239,68,68,.8), 0 0 16px rgba(239,68,68,.4);
  box-shadow: 0 0 12px rgba(220,38,38,.3), inset 0 0 8px rgba(220,38,38,.1);
}
@keyframes heroTagPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(239,68,68,.8), 0 0 16px rgba(239,68,68,.4);
    box-shadow: 0 0 12px rgba(220,38,38,.3), inset 0 0 8px rgba(220,38,38,.1);
    border-color: rgba(220,38,38,.5);
  }
  50% {
    text-shadow: 0 0 14px rgba(239,68,68,1), 0 0 28px rgba(239,68,68,.7), 0 0 40px rgba(239,68,68,.3);
    box-shadow: 0 0 24px rgba(220,38,38,.6), inset 0 0 14px rgba(220,38,38,.2);
    border-color: rgba(239,68,68,.9);
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: .35rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounceScroll 2s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.hero-cta { position: relative; z-index: 3; }
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Badges Row ────────────────────────────────────────────── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(220,38,38,.04) 0%, transparent 100%);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  transition: all .25s;
}
.badge-pill:hover { background: rgba(255,255,255,.08); color: var(--text); border-color: rgba(220,38,38,.3); }
.badge-pill .check { color: var(--gold); font-size: .85rem; }

/* ── Product Section ───────────────────────────────────────── */
.product-section { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 820px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.product-card-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.02);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.product-card-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain; /* show full image — no cropping */
  display: block;
  transition: transform .5s var(--transition);
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.02); }
.product-thumb-row {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.product-thumb {
  width: 56px; height: 56px;
  object-fit: contain; /* full box visible in thumbnail */
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  opacity: .65;
}
.product-thumb:hover, .product-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.product-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .25rem;
}
.product-card-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
}
.price-strike {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: .5rem;
}
.best-value-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.product-features li {
  font-size: .88rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.product-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--text);
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.qty-btn:hover { background: rgba(255,255,255,.1); }
.qty-input {
  width: 48px;
  height: 38px;
  background: none;
  border: none;
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font);
}
.qty-input:focus { outline: none; }

/* ── Highlights Circles ────────────────────────────────────── */
.highlights { background: var(--bg-soft); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
.highlight-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.highlight-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(220,38,38,.15) 0%, rgba(220,38,38,.05) 100%);
  border: 1.5px solid rgba(220,38,38,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(220,38,38,.1);
}
.highlight-circle:hover .highlight-icon {
  background: linear-gradient(135deg, rgba(220,38,38,.25) 0%, rgba(220,38,38,.1) 100%);
  box-shadow: 0 0 32px rgba(220,38,38,.25);
  transform: scale(1.1);
}
.highlight-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: .02em;
}

/* ── How To Use ────────────────────────────────────────────── */
.how-to { background: var(--bg); }
.how-to-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.how-to-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  z-index: 0;
  opacity: .4;
}
@media (max-width: 768px) {
  .how-to-grid { grid-template-columns: repeat(2, 1fr); }
  .how-to-grid::before { display: none; }
}
@media (max-width: 480px) { .how-to-grid { grid-template-columns: 1fr; } }
.how-step {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 24px rgba(220,38,38,.4);
}
.step-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.step-title { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.step-desc { font-size: .82rem; color: var(--text-dim); }

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-us { background: var(--bg-soft); }
.why-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}
.why-item:last-child { border-bottom: none; }
.why-item.reverse { direction: rtl; }
.why-item.reverse > * { direction: ltr; }
.why-item-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(220,38,38,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid rgba(220,38,38,.15);
}
.why-item-text .eyebrow { color: var(--gold); }
.why-item-text h3 { font-size: 1.8rem; margin-bottom: .75rem; }
.why-item-text p { font-size: 1rem; }
@media (max-width: 768px) {
  .why-item, .why-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .why-item-img { aspect-ratio: 16/7; }
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  padding: 2rem;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.review-text { font-size: .92rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: .82rem; font-weight: 700; color: var(--text); }
.review-date { font-size: .75rem; color: var(--text-dim); margin-top: .2rem; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: .04em;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--bg-soft); }
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-family: var(--font);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--red);
  flex-shrink: 0;
  transition: all .3s;
}
details[open] .faq-q .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
details[open] > summary { color: var(--text); }
.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  height: auto;
  width: 140px;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  display: block;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }
.social-icons {
  display: flex;
  gap: .75rem;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all .2s;
  text-decoration: none;
  font-size: .9rem;
}
.social-icon:hover { background: rgba(220,38,38,.15); border-color: rgba(220,38,38,.3); color: var(--red-bright); }

/* ── Sticky Buy Bar ────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .4s var(--transition);
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-img {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sticky-bar-info { flex: 1; min-width: 0; }
.sticky-bar-name { font-size: .85rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar-price { font-size: .78rem; color: var(--gold); font-weight: 600; }
@media (max-width: 480px) {
  .sticky-bar { padding: .65rem 1rem; gap: .75rem; }
  .sticky-bar-img { width: 36px; height: 36px; }
}

/* ── Form Fields ───────────────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .85rem;
}
.field span, .field label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(220,38,38,.5);
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
select option { background: var(--bg-soft); }

/* ── Cart Drawer ───────────────────────────────────────────── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-soft);
  border-left: 1px solid rgba(255,255,255,.1);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--transition);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 1rem; font-weight: 700; }
.drawer-close {
  background: none; border: none; cursor: pointer; color: var(--text-soft);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.2rem; transition: all .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.08); color: var(--text); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line); }
.line-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.line-item img {
  width: 72px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.line-item-name { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.line-item-meta { font-size: .78rem; color: var(--text-dim); }
.line-item-price { font-size: .95rem; font-weight: 700; color: var(--gold); text-align: right; white-space: nowrap; }
.qty {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .4rem;
}
.qty button {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--text);
  width: 26px; height: 26px;
  border-radius: 6px;
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.qty button:hover { background: rgba(255,255,255,.15); }
.qty input {
  width: 36px;
  height: 26px;
  text-align: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: .85rem;
  font-weight: 700;
  padding: 0;
}

/* ── Toast ─────────────────────────────────────────────────── */
.toast-wrap {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
}
.toast {
  background: rgba(20,20,20,.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .75rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  min-width: 200px;
  max-width: 300px;
  box-shadow: var(--shadow-md);
  animation: toastIn .3s var(--transition);
  border-left: 3px solid var(--red);
}
.toast.ok { border-left-color: #22c55e; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Scroll Animations ─────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}
[data-anim="left"]  { transform: translateX(-32px); }
[data-anim="right"] { transform: translateX(32px); }
[data-anim="scale"] { transform: scale(.95); }
[data-anim].in-view {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ── Flash / Alert ─────────────────────────────────────────── */
.flash {
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  margin-top: .75rem;
  font-weight: 500;
}
.flash.ok  { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #22c55e; }
.flash.err { background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3); color: var(--red-bright); }
.flash.hidden { display: none; }

/* ── Checkout & Cart Specifics ─────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.checkout-summary {
  align-self: start;
  position: sticky;
  top: 5rem;
}
@media (max-width: 820px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
.ship-opt {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1rem; margin: .4rem 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
}
.ship-opt:hover { border-color: rgba(220,38,38,.35); background: rgba(220,38,38,.04); }
.ship-opt.ship-active { border-color: var(--red) !important; background: rgba(220,38,38,.08) !important; }
.ship-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
}
.ship-active .ship-radio { border-color: var(--red); }
.ship-radio-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.ship-opt-text { flex: 1; }
.ship-opt-name { font-size: .9rem; font-weight: 600; }
.ship-opt-desc { font-size: .75rem; color: var(--text-dim); }
.ship-opt-price { font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ── Table ─────────────────────────────────────────────────── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.specs-table tr { border-bottom: 1px solid var(--line); }
.specs-table td {
  padding: .8rem 1rem;
  font-size: .9rem;
}
.specs-table td:first-child { color: var(--text-dim); font-weight: 600; width: 45%; }
.specs-table td:last-child { color: var(--text); }

/* ── Misc ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

/* ── Free Shipping Bar ─────────────────────────────────────── */
.fs-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin: .75rem 0 .35rem;
  overflow: hidden;
}
.fs-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  transition: width .5s var(--transition);
}
.fs-msg {
  font-size: .75rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: .6rem;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.3); }


/* ── Mobile Menu Hard Fix (2026-07-06) ───────────────────────
   Ensures the slide-out menu always renders above the blur backdrop. */
@media (max-width: 768px) {
  .nav-backdrop {
    z-index: 11000 !important;
  }
  nav.main-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 11001 !important;
    transform: translate3d(-105%,0,0) !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    width: min(292px, 84vw) !important;
    background: rgba(15,15,15,.98) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    border-right: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 12px 0 48px rgba(0,0,0,.72) !important;
    pointer-events: auto !important;
  }
  nav.main-nav.open {
    transform: translate3d(0,0,0) !important;
  }
  nav.main-nav .nav-panel-head {
    display: flex !important;
  }
  nav.main-nav .nav-panel-cta {
    display: block !important;
  }
}

/* ── Collapsible Footer Menu ───────────────────────────────── */
.footer-accordion-grid {
  align-items: start;
}
.footer-acc {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .75rem;
}
.footer-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .75rem;
  -webkit-tap-highlight-color: transparent;
}
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc summary::after {
  content: '+';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  line-height: 1;
  transition: transform .2s, background .2s;
}
.footer-acc[open] summary::after {
  content: '−';
  background: rgba(220,38,38,.12);
  border-color: rgba(220,38,38,.28);
  color: var(--red-bright);
}
.footer-acc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
}
.footer-acc ul a {
  font-size: .85rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .2s;
}
.footer-acc ul a:hover { color: var(--text); }
@media (min-width: 901px) {
  .footer-acc { border-bottom: 0; padding-bottom: 0; }
  .footer-acc summary { cursor: default; pointer-events: none; }
  .footer-acc summary::after { display: none; }
}
@media (max-width: 900px) {
  .footer-accordion-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-acc { padding: .95rem 0; }
  .footer-acc summary { margin-bottom: 0; }
  .footer-acc[open] summary { margin-bottom: .85rem; }
}
