/* Zoagames storefront Ã¢â‚¬â€ Wix-aligned dark premium polish
   Palette: #080808 / #030202, purple #5A48F5 / #7B6DF7, orange #F9AD4D
*/

:root {
  --bg: #080808;
  --bg-deep: #030202;
  --bg-elevated: #121014;
  --bg-card: #141218;
  --text: #f4f2ff;
  --text-muted: #b7b3c9;
  --purple: #5A48F5;
  --purple-soft: #7B6DF7;
  --orange: #F9AD4D;
  --border: rgba(123, 109, 247, 0.22);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--purple-soft); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.55rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--text-muted); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 2, 2, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}
.brand img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 8px;
}
.brand:hover { color: var(--text); }
.brand .accent-2 { color: var(--orange); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.05rem;
}
.site-nav a:hover { color: var(--text); }
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-soft));
  color: #fff !important;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(90, 72, 245, 0.3);
}
.site-nav .nav-cta:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); color: #fff; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-soft));
  color: #fff;
  box-shadow: 0 12px 32px rgba(90, 72, 245, 0.38);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(249, 173, 77, 0.55);
  color: var(--orange);
}
.btn-ghost:hover { background: rgba(249, 173, 77, 0.1); color: var(--orange); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1.02rem; }

.eyebrow {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.grad-text {
  background: linear-gradient(90deg, var(--purple-soft), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 5rem 0; }
.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head h2 { color: var(--text); }
.section-head-center {
  text-align: center;
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: grid;
  align-items: center;
  padding: 3.25rem 0 4rem;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.32;
  filter: saturate(1.08) contrast(1.06);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(3,2,2,0.92) 0%, rgba(3,2,2,0.72) 48%, rgba(3,2,2,0.55) 100%),
    radial-gradient(ellipse at 18% 25%, rgba(90,72,245,0.32), transparent 52%);
  z-index: 1;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 640px; }
.hero h1 { color: var(--text); margin-bottom: 1.1rem; }
.hero-lead { font-size: 1.15rem; max-width: 36rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.85rem 0 2rem;
}
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.hero-badges li {
  background: rgba(20, 18, 24, 0.88);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.hero-badges strong { color: var(--text); margin-right: 0.25rem; }

.hero-product {
  margin: 0;
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(123, 109, 247, 0.35);
  box-shadow: var(--shadow), 0 0 0 1px rgba(249, 173, 77, 0.08);
  background: #0a0a0c;
  aspect-ratio: 1;
}
.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-product-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(3, 2, 2, 0.82);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

/* Video */
.video-section {
  background: var(--bg);
  padding-top: 3.5rem;
}
.video-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Spotlight carousel */
.spotlight {
  padding: 2.5rem 0 1.5rem;
  position: relative;
  z-index: 3;
  background: var(--bg-deep);
}
.spotlight-carousel {
  position: relative;
  padding: 0 2.75rem;
}
.spotlight-viewport {
  overflow: hidden;
}
.spotlight-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0 0.75rem;
}
.spotlight-track::-webkit-scrollbar { display: none; }
.spotlight-media {
  margin: 0;
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.spotlight-media:hover img { transform: scale(1.04); }
.spotlight-img-top { object-position: top center; }
.spotlight-nav {
  position: absolute;
  top: calc(50% - 1.25rem);
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(20, 18, 24, 0.92);
  color: var(--text);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0 0.15rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.spotlight-nav:hover {
  background: var(--purple);
  border-color: transparent;
  color: #fff;
}
.spotlight-prev { left: 0; }
.spotlight-next { right: 0; }
.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.spotlight-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(183, 179, 201, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.spotlight-dots button.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

/* About */

/* Product title under nav, above hero */
.page-product-banner {
  position: relative;
  z-index: 4;
  background: var(--bg-deep);
  text-align: center;
  padding: 0.7rem 1rem 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-product-title {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  line-height: 1.2;
}
.about { background: var(--bg); }
.about-section-title {
  text-align: center;
  margin: 0 0 2rem;
  width: 100%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.25rem;
  align-items: center;
}
.about-copy h2 { color: var(--text); }
.odds-card {
  margin-top: 1.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}
.odds-card h3 {
  color: var(--orange);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.odds-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.odds-card li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.odds-card li:last-child { border-bottom: 0; }
.odds-card span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--purple-soft);
  min-width: 3.2rem;
}
.about-visual { position: relative; }
.about-visual > img:first-child {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-visual-secondary {
  position: absolute;
  width: 48%;
  right: -6%;
  bottom: -8%;
  border-radius: 12px;
  border: 2px solid rgba(90, 72, 245, 0.5);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Shop */
.shop { background: var(--bg-deep); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 14px 42px rgba(0,0,0,0.32);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 109, 247, 0.5);
  box-shadow: 0 22px 50px rgba(90, 72, 245, 0.18);
}
.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: #0a0a0c;
  overflow: hidden;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-media.is-mock {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(90,72,245,0.18), transparent 50%),
    #0a0a0c;
}
.product-card-media.is-mock img {
  object-fit: contain;
  padding: 0.5rem;
  transform: none !important;
}
.ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-soft));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
}
.coming-soon-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(3, 2, 2, 0.82);
  border: 1px solid rgba(249, 173, 77, 0.45);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  z-index: 2;
}
.product-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.22rem;
}
.product-card-body h3 a { color: var(--text); }
.product-card-body h3 a:hover { color: var(--purple-soft); }
.product-short {
  font-size: 0.92rem;
  flex: 1;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--orange);
  margin: 0;
}
.price-lg { font-size: 2rem; margin: 0.4rem 0 1rem; }
.price-note {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0.35rem;
}
.shop-footnote {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #7d7890;
}

/* Testimonials */
.testimonials {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(90,72,245,0.18), transparent 45%),
    var(--bg);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-grid blockquote {
  margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.testimonial-grid p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-grid footer {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  padding: 3.75rem 0;
  background: linear-gradient(120deg, #1a1238 0%, #0c0a12 55%, #1f1520 100%);
  border-block: 1px solid var(--border);
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 { color: var(--text); margin-bottom: 0.4rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Product detail */
.product-detail { padding-top: 2.5rem; background: var(--bg); min-height: 70vh; padding-bottom: 6rem; }
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--purple-soft); }
.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: start;
}
.detail-main-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0c;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}
.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-main-image.is-mock img {
  object-fit: contain;
  padding: 1rem;
}
.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 0.65rem;
  margin-top: 0.95rem;
}
.thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: #0a0a0c;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color 0.15s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active,
.thumb:hover { border-color: var(--purple-soft); }
.detail-info h1 { margin-bottom: 0.25rem; }
.sku {
  font-size: 0.85rem;
  color: #7d7890;
  margin-bottom: 0.5rem;
}
.detail-desc { margin-bottom: 1.35rem; font-size: 1.02rem; }

.specs-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.35rem;
}
.specs-panel h2 {
  font-size: 0.95rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.specs-list { margin: 0; }
.specs-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.specs-row:last-child { border-bottom: 0; }
.specs-row dt {
  color: #8a8599;
  font-size: 0.88rem;
  font-weight: 600;
}
.specs-row dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.fact-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.5rem;
}
.fact-pills li {
  background: rgba(90, 72, 245, 0.15);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.includes h2 {
  font-size: 1.05rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.includes ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}
.includes li { margin-bottom: 0.45rem; }
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.shipping-note {
  font-size: 0.88rem;
  color: #7d7890;
}

/* Sticky mobile buy bar */
.mobile-buy-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(3, 2, 2, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
}
.mobile-buy-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}
.mobile-buy-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.mobile-buy-price {
  margin: 0.15rem 0 0;
  color: var(--orange);
  font-weight: 800;
  font-family: var(--font-display);
}

/* Footer */
.site-footer {
  background: #050406;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.75rem;
  margin-bottom: 2.75rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer-brand img {
  width: 148px;
  height: 148px;
  object-fit: contain;
  border-radius: 12px;
}
.footer-tagline {
  max-width: 22rem;
  margin: 0;
  line-height: 1.55;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.footer-col h3,
.site-footer h3 {
  color: var(--text);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-address {
  line-height: 1.55 !important;
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: #6e6a7c;
  line-height: 1.45;
}
.footer-note { color: #8a8599 !important; }
.footer-note a {
  color: #8a8599;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-note a:hover { color: var(--orange); }

/* Responsive */
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-product {
    max-width: 420px;
    margin-inline: auto;
  }
  .spotlight-media {
    flex-basis: calc((100% - 1rem) / 2);
  }
  .product-grid,
  .testimonial-grid,
  .about-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid { gap: 2rem; }
  .about-visual-secondary { position: static; width: 70%; margin-top: 1rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .spotlight-media {
    flex-basis: 85%;
  }
  .product-grid,
  .testimonial-grid,
  .about-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 4.5rem 0 3rem;
  }
  .section { padding: 3.5rem 0; }
  .video-section { padding-top: 2.5rem; }
  .specs-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .mobile-buy-bar { display: block; }
  .product-detail { padding-bottom: 7rem; }
}

@media (min-width: 721px) {
  .mobile-buy-bar { display: none !important; }
}

.shop .shop-heading,
.shop .section-head h2.shop-heading {
  white-space: nowrap;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
}
