﻿/* ============================================================
   IFONIA storefront design system
   Restrained cinematic direction. Real assets only.
   ============================================================ */

:root {
  --bg: #0b0c0f;
  --bg-2: #101217;
  --panel: #15181f;
  --panel-2: #1b1f28;
  --text: #f2f3f6;
  --muted: #9aa1af;
  --faint: #6b7280;
  --accent: #7c9cff;
  --accent-2: #a9bcff;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --ok: #4ade80;
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.p-preview {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.p-preview section { scroll-margin-top: calc(var(--header-h) + 16px); }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }

.p-container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ shared preview atoms ============ */
.p-kicker,
.p-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.p-h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  margin-top: 14px;
  text-wrap: balance;
}

.p-title-accent { color: var(--accent); }

.p-section-sub { color: var(--muted); margin-top: 16px; max-width: 560px; }

.p-section-head { margin-bottom: 44px; }

/* reveal (toggled by shared script.js IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ header ============ */
.p-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.p-header.scrolled {
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.p-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-icon { filter: grayscale(1) brightness(3); }
.logo-text { font-weight: 700; letter-spacing: 0.28em; font-size: 15px; }

.p-nav { display: flex; align-items: center; gap: 30px; }
.p-nav a { font-size: 14px; color: var(--muted); transition: color 0.2s ease; }
.p-nav a:hover { color: var(--text); }
.p-nav a.p-nav-buy {
  color: var(--accent);
  border: 1px solid rgba(124, 156, 255, 0.4);
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.p-nav a.p-nav-buy:hover { background: var(--accent); color: #0b0c0f; border-color: var(--accent); }

.p-header-actions { display: flex; align-items: center; gap: 18px; }
.p-account { font-size: 14px; color: var(--muted); transition: color 0.2s ease; }
.p-account:hover { color: var(--text); }

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  color: var(--text);
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0c0f;
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cart-count.visible { opacity: 1; transform: none; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 84vw);
  z-index: 950;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  padding: calc(var(--header-h) + 16px) 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-size: 18px; font-weight: 500; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }

/* ============ 1. hero ============ */
.p-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 32px) 24px 72px;
  overflow: hidden;
}
.p-hero-visual { position: absolute; inset: 0; z-index: 0; }
.p-hero-visual picture,
.p-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.p-hero-visual img {
  transform: scale(1.06);
  animation: heroZoom 2.4s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.06); }
}
.p-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 12, 15, 0.45) 0%, rgba(11, 12, 15, 0.15) 34%, rgba(11, 12, 15, 0.92) 86%, var(--bg) 100%);
}
.p-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.p-title {
  font-size: clamp(44px, 8.6vw, 104px);
  letter-spacing: -0.045em;
  margin: 18px 0 20px;
  max-width: 12ch;
}
.p-sub {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 46ch;
}
.p-hero-buy {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-2);
}
.p-price { display: flex; flex-direction: column; gap: 4px; }
.p-price-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.p-price-row { display: flex; align-items: baseline; gap: 14px; }
.p-price-amount { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.p-price-note { font-size: 14px; color: var(--muted); }

.p-qty-chips { display: flex; gap: 8px; }
.m-qty-chip {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.m-qty-chip.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0c0f;
}

.p-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.p-cta {
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.p-cta:active { transform: scale(0.98); }
.p-cta-primary { background: var(--accent); color: #0b0c0f; box-shadow: 0 8px 30px rgba(124, 156, 255, 0.35); }
.p-cta-primary:hover { background: var(--accent-2); }
.p-cta-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.p-cta-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.p-hero-stat {
  margin-top: 26px;
  color: var(--faint);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}

/* hero staged reveal (loaded class set by scroll.js) */
body.p-preview.p-loaded .p-hero .p-kicker { animation: riseIn .8s var(--ease) .05s both; }
body.p-preview.p-loaded .p-hero .p-title { animation: riseIn .9s var(--ease) .15s both; }
body.p-preview.p-loaded .p-hero .p-sub { animation: riseIn .9s var(--ease) .28s both; }
body.p-preview.p-loaded .p-hero .p-hero-buy { animation: riseIn .9s var(--ease) .42s both; }
body.p-preview.p-loaded .p-hero .p-hero-stat { animation: riseIn .9s var(--ease) .55s both; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* ============ 2. comparison slider ============ */
.p-compare { padding: 110px 0; }
.p-slider {
  position: relative;
  height: min(66vh, 620px);
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
}
.p-slider-img { position: absolute; inset: 0; }
.p-slider-img img { width: 100%; height: 100%; object-fit: cover; }
.p-slider-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.p-slider-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--text);
}
.p-slider-after .p-slider-tag { left: auto; right: 18px; background: rgba(124, 156, 255, 0.15); border-color: rgba(124, 156, 255, 0.45); color: var(--accent-2); }
.p-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 50%);
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-slider-handle::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 56px;
  margin-left: -28px;
  background: radial-gradient(closest-side, rgba(124, 156, 255, 0.25), transparent);
}
.p-slider-handle svg {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px;
  box-sizing: content-box;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.p-slider-hint { text-align: center; margin-top: 16px; color: var(--faint); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

/* ============ 3. product showcase (â‰¤160vh) ============ */
.p-showcase { position: relative; height: 160vh; }
.p-showcase-track {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.p-showcase-stage { position: absolute; inset: 0; }
.p-show-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: grayscale(0.9) brightness(0.7);
  transform: scale(1.12);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.9s var(--ease);
}
.p-show-img.is-active { opacity: 1; filter: none; transform: scale(1.02); }
.p-show-img img { width: 100%; height: 100%; object-fit: cover; }
.p-show-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 15, 0.86) 0%, rgba(11, 12, 15, 0.25) 55%, rgba(11, 12, 15, 0.3) 100%);
}
.p-show-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--line);
  z-index: 5;
}
.p-show-progress span {
  display: block;
  height: 100%;
  width: var(--pg, 0%);
  background: var(--accent);
  transition: width 0.1s linear;
}
.p-show-steps {
  position: absolute;
  z-index: 6;
  left: clamp(24px, 6vw, 84px);
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-show-step { opacity: 0.28; transition: opacity 0.4s ease; }
.p-show-step.is-active { opacity: 1; }
.p-show-step-num { display: block; font-size: 13px; letter-spacing: 0.24em; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.p-show-step h3 { font-size: clamp(22px, 3vw, 34px); }
.p-show-step p { color: var(--muted); margin-top: 6px; font-size: 15px; }

/* ============ 4. features (â‰¤180vh) ============ */
.p-features { background: var(--bg); }
.p-features-inner { position: relative; height: 180vh; }
.p-features-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: calc(var(--header-h) + 64px) 24px 0;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  pointer-events: none;
}
.p-features-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
}
.p-features-viewport {
  width: min(1080px, 100%);
  max-width: 1080px;
  position: relative;
}
.p-feasure-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}
.p-feasure {
  text-align: center;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
  pointer-events: none;
}
.p-feasure.is-active { opacity: 1; transform: none; }
.p-feasure-num { font-size: 13px; letter-spacing: 0.3em; color: var(--accent); font-weight: 700; }
.p-feasure h3 { font-size: clamp(30px, 4vw, 48px); margin-top: 12px; }
.p-feasure > p { color: var(--muted); margin-top: 10px; font-size: 17px; }
.p-feasure img {
  margin-top: 30px;
  width: min(560px, 84%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.p-feasure-dots {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: var(--line-2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.p-dot.is-active { background: var(--accent); transform: scale(1.25); }

/* ============ 5. lifestyle gallery (â‰¤150vh) ============ */
.p-gallery-inner { position: relative; height: 150vh; }
.p-gallery-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: calc(var(--header-h) + 64px) 24px 0;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.p-gallery-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.p-gal {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.14);
  transition: opacity 0.7s ease, transform 1.1s var(--ease);
}
.p-gal img { width: 100%; height: 100%; object-fit: cover; }
.p-gal.is-active { opacity: 1; transform: scale(1.02); }
.p-gal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 12, 15, 0.5), transparent 55%);
}

/* ============ 6. specs & box ============ */
.p-specs { padding: 110px 0; }
.p-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.p-specs-col { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 34px 40px; background: var(--bg-2); }
.p-specs-col .p-eyebrow { color: var(--accent); }
.p-specs-col .p-h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 26px; }
.p-table { width: 100%; border-collapse: collapse; }
.p-table td { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.p-table tr:last-child td { border-bottom: none; }
.p-table td:first-child { color: var(--faint); width: 44%; }
.p-table td:last-child { color: var(--text); font-weight: 500; }
.p-box { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.p-box li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.p-box-num { color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; }
.p-specs-note { color: var(--faint); font-size: 14px; margin-top: 22px; }

/* ============ shared store classes (dark theme) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  padding: 14px 24px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--accent); color: #0b0c0f; }
.btn-primary:hover { background: var(--accent-2); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn-text { background: none; color: var(--muted); border: none; padding: 10px; }
.btn-text:hover { color: var(--text); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-full { width: 100%; }

/* ============ 7. pricing bundles ============ */
.p-pricing { padding: 110px 0; }
.p-bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bundle-option { position: relative; cursor: pointer; }
.bundle-radio { position: absolute; opacity: 0; pointer-events: none; }
.bundle-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.bundle-option:hover .bundle-card { transform: translateY(-4px); }
.bundle-option.selected .bundle-card {
  border-color: rgba(124, 156, 255, 0.7);
  box-shadow: 0 14px 50px rgba(124, 156, 255, 0.16);
}
.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0b0c0f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}
.bundle-title { font-size: 16px; font-weight: 700; color: var(--text); }
.bundle-price { display: flex; align-items: baseline; gap: 8px; }
.bundle-amount { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.bundle-per { color: var(--muted); font-size: 13px; }
.bundle-total { color: var(--faint); font-size: 13px; }
.bundle-save { color: var(--ok); font-size: 13px; font-weight: 700; }
.bundle-list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.bundle-list li { color: var(--muted); font-size: 14px; padding-left: 22px; position: relative; }
.bundle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.7;
}

/* ============ 7b. checkout ============ */
.p-checkout { padding: 110px 0; }
.checkout-notice {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fca5a5;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.checkout-cart {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 28px;
}
.checkout-cart h4 { margin-bottom: 16px; font-size: 18px; }
.checkout-cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.checkout-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; }
.checkout-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.checkout-item-name { font-weight: 600; font-size: 15px; }
.checkout-item-qty { color: var(--muted); font-size: 13px; margin-top: 3px; }
.checkout-item-price { font-weight: 700; font-variant-numeric: tabular-nums; }
.checkout-cart-totals { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; }
.cart-total-row { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.cart-total-final { color: var(--text); font-weight: 700; font-size: 16px; }

.order-form.p-order-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
.form-group input,
.form-group select {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder { color: var(--faint); }
.form-group input:focus,
.form-group select:focus { border-color: rgba(124, 156, 255, 0.6); box-shadow: 0 0 0 3px rgba(124, 156, 255, 0.18); }
.form-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 600;
}
.form-total-price { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.newsletter-optin {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}
.newsletter-optin input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; }
.form-trust { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.form-trust span { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; }
.form-trust svg { color: var(--accent); }
.form-disclaimer { color: var(--faint); font-size: 12.5px; margin-top: 16px; }
.form-disclaimer a { color: var(--accent-2); text-decoration: underline; }

/* ============ 7c. faq ============ */
.p-faq { padding: 110px 0; }
.p-faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
}
.faq-q svg { color: var(--faint); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { color: var(--muted); padding: 0 4px 22px; font-size: 15px; max-width: 62ch; }

/* ============ footer ============ */
.p-footer { border-top: 1px solid var(--line); padding: 70px 0 34px; background: var(--bg-2); }
.p-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.p-footer-col h4 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.p-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.p-footer-col a { color: var(--muted); font-size: 14px; transition: color 0.2s ease; }
.p-footer-col a:hover { color: var(--text); }
.p-footer-tagline { color: var(--faint); margin-top: 16px; font-size: 14px; }
.p-footer-bottom { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 26px; color: var(--faint); font-size: 13px; }

/* ============ cart panel ============ */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.68);
  z-index: 960;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.active { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 94vw);
  z-index: 970;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart-panel.active { transform: none; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-header h3 { font-size: 19px; }
.cart-close { background: none; border: none; color: var(--muted); padding: 6px; }
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--faint); text-align: center; padding: 60px 0; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cart-item-name { font-size: 15px; font-weight: 600; }
.cart-item-meta { color: var(--muted); font-size: 13px; }
.cart-item-price { font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
  line-height: 1;
}
.cart-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.cart-qty-value { min-width: 18px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-item-remove { background: none; border: none; color: var(--faint); font-size: 13px; text-decoration: underline; margin-left: auto; }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 18px 24px 24px; border-top: 1px solid var(--line); }
.cart-totals { margin-bottom: 16px; }
.cart-footer-note { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--faint); font-size: 12px; margin-top: 14px; }
.cart-footer-note svg { color: var(--accent); }

/* ============ success modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 980;
  background: rgba(5, 6, 8, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.modal-icon { color: var(--ok); margin-bottom: 14px; }
.modal h3 { font-size: 24px; margin-bottom: 12px; }
.modal p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }

/* ============ sticky buy bar ============ */
.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  background: rgba(10, 11, 14, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(0);
  transition: transform 0.35s var(--ease);
}
.sticky-buy.hidden { transform: translateY(120%); }
.sticky-buy-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sticky-info { display: flex; flex-direction: column; }
.sticky-name { font-size: 15px; font-weight: 700; }
.sticky-price { color: var(--accent-2); font-size: 14px; font-weight: 600; }
.sticky-actions { display: flex; gap: 10px; }
.sticky-checkout-btn { visibility: hidden; }
.sticky-checkout-btn.visible { visibility: visible; }

/* ============ responsive ============ */
@media (max-width: 900px) {
  .p-nav { display: none; }
  .p-account { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .p-bundle-grid { grid-template-columns: 1fr; }
  .p-specs-grid { grid-template-columns: 1fr; }
  .p-footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: auto; }
}

@media (max-width: 760px) {
  .p-hero { padding: calc(var(--header-h) + 20px) 20px 56px; align-items: flex-end; }
  .p-hero-buy { flex-direction: column; align-items: flex-start; }
  .p-hero-stat { font-size: 12px; letter-spacing: 0.16em; }
  .p-slider { height: 52vh; }
  .sticky-buy { display: block; }

  /* scroll-linked sections collapse to static stacked layouts */
  .p-showcase { height: auto; }
  .p-showcase-track { position: static; height: auto; }
  .p-showcase-stage { position: static; display: grid; gap: 12px; padding: 20px; }
  .p-show-img {
    position: static;
    height: 46vh;
    opacity: 1;
    filter: none;
    transform: none;
  }
  .p-show-img::after { background: linear-gradient(0deg, rgba(11, 12, 15, 0.72), transparent 60%); }
  .p-show-progress { display: none; }
  .p-show-steps { position: static; transform: none; max-width: none; gap: 22px; padding: 0 20px 36px; }

  .p-features-inner { height: auto; }
  .p-features-head { position: static; padding: 96px 20px 0; }
  .p-features-stage { position: static; height: auto; padding: 12px 0 0; overflow: visible; }
  .p-feasure-steps { display: grid; gap: 26px; grid-template-columns: 1fr; min-height: 0; padding: 20px; }
  .p-feasure { position: static; opacity: 1; transform: none; pointer-events: auto; padding: 28px 0; border-bottom: 1px solid var(--line); }
  .p-feasure img { width: 100%; }
  .p-feasure-dots { display: none; }

  .p-gallery-inner { height: auto; }
  .p-gallery-head { position: static; padding: 96px 20px 0; }
  .p-gallery-stage { position: static; height: auto; display: grid; gap: 12px; padding: 20px; }
  .p-gal { position: static; height: 52vh; border-radius: var(--radius-sm); overflow: hidden; opacity: 1; transform: none; }

  .p-compare { padding: 64px 0 72px; }
  .p-specs { padding: 72px 0 80px; }
  .p-pricing { padding: 56px 0 64px; }
  .p-checkout { padding: 56px 0 72px; }
  .p-faq { padding: 64px 0 64px; }
  .order-form.p-order-form { padding: 24px 20px; }
  .p-container { padding: 0 20px; }

  .site-footer-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .p-show-img, .p-gal, .p-feasure { transition: none; }
  .p-hero-visual img { animation: none; transform: none; }
  body.p-preview.p-loaded .p-hero * { animation: none; }
}

/* ============================================================
   IFONIA — APPLE / ULTRA-ORANGE THEME (production)
   Layered on top of the cinematic base below: converts the blue
   theme to Apple deep-black + Ultra Orange (#FF5500). Keeps all
   section IDs intact.
   ============================================================ */

:root {
  --bg-primary: #000000;
  --card-bg: #1c1c1e;
  --card-bg-2: #242426;
  --text-main: #ffffff;
  --text-muted: #86868b;
  --accent-orange: #ff5500;
  --accent-orange-strong: #ff6a1a;
  --accent-orange-glow: rgba(255, 85, 0, 0.35);
  --accent-orange-glow-hi: rgba(255, 85, 0, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.18);
  --radius-aa: 22px;
  --radius-aa-sm: 16px;
  --aa-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- global token remap ---------- */
body.p-preview {
  background: var(--bg-primary);
  color: var(--text-main);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* all preview accent references -> orange */
.p-kicker,
.p-eyebrow,
.p-title-accent,
.p-show-step-num,
.p-feasure-num,
.p-box-num,
.form-trust svg,
.cart-footer-note svg,
.modal-icon,
.sticky-price,
.faq-item.open .faq-q svg {
  color: var(--accent-orange) !important;
}

p, .p-sub, .p-section-sub, .p-show-step p, .p-feasure > p,
.form-group label, .form-disclaimer, .p-specs-note {
  color: var(--text-muted);
}
h1, h2, h3, h4, .p-title, .p-h2, .bundle-title, .sticky-name,
.p-show-step h3, .p-feasure h3 {
  color: var(--text-main);
}

/* ---------- glassmorphism floating header ---------- */
.p-header {
  background: rgba(0, 0, 0, 0.55) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line) !important;
}
.p-header.scrolled {
  background: rgba(0, 0, 0, 0.72) !important;
}
.p-nav a {
  color: var(--text-muted);
}
.p-nav a:hover {
  color: var(--text-main);
}
.p-nav a.p-nav-buy {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  border-radius: 980px;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}
.p-nav a.p-nav-buy:hover {
  background: var(--accent-orange-strong);
  color: #ffffff;
}
.p-account {
  color: var(--text-muted);
}
.p-account:hover {
  color: var(--text-main);
}

/* ---------- pill CTA buttons (Apple) ---------- */
.p-cta,
.btn,
.btn-primary,
.btn-outline,
.m-qty-chip {
  border-radius: 980px !important;
  font-weight: 600;
  transition: transform 0.3s var(--aa-ease),
    box-shadow 0.3s var(--aa-ease), background-color 0.3s ease;
}
.p-cta-primary,
.btn-primary {
  background: var(--accent-orange);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}
.p-cta-primary:hover,
.btn-primary:hover {
  background: var(--accent-orange-strong);
  transform: scale(1.04);
  box-shadow: 0 6px 25px var(--accent-orange-glow-hi);
  color: #ffffff;
}
.p-cta-ghost,
.btn-outline {
  background: rgba(28, 28, 30, 0.6);
  color: var(--text-main);
  border: 1px solid var(--line-2);
}
.p-cta-ghost:hover,
.btn-outline:hover {
  background: rgba(36, 36, 38, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}
.m-qty-chip {
  background: rgba(28, 28, 30, 0.7);
  color: var(--text-main);
  border: 1px solid var(--line);
}
.m-qty-chip.selected {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-orange-glow);
}

/* ---------- hero ---------- */
.p-hero-visual img {
  filter: brightness(0.82) contrast(1.04);
}
.p-hero-shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%
  ) !important;
}
.p-price-amount,
.form-total-price {
  color: var(--text-main);
}
.p-price-note {
  color: var(--text-muted);
}
.p-price-label,
.p-color-label {
  color: var(--text-muted);
}

/* ---------- color swatches ---------- */
.p-color-row,
.p-swatch-spec {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 4px;
}
.p-color-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}
.p-swatches {
  display: flex;
  gap: 10px;
}
.color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(28, 28, 30, 0.7);
  border: 1px solid var(--line);
  border-radius: 980px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--aa-ease),
    border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.color-swatch:hover {
  transform: translateY(-1px);
  border-color: var(--line-2);
}
.color-swatch.active {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-glow);
  background: rgba(36, 36, 38, 0.95);
}
.swatch-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
}
.swatch-dot-darkblue {
  background: radial-gradient(circle at 32% 32%, #5f83b8, #23395d 70%);
}
.swatch-dot-black {
  background: radial-gradient(circle at 32% 32%, #3c3c3e, #0a0a0a 70%);
}
/* tint applied to the hero product shot for the selected finish */
#heroSlot {
  transition: filter 0.4s ease;
}
#heroSlot.finish-black {
  filter: brightness(0.9) saturate(0.9) contrast(1.06);
}
#heroSlot.finish-dark-blue {
  filter: brightness(0.86) saturate(1.05) contrast(1.02)
    sepia(0.15) hue-rotate(-12deg);
}
.p-swatch-spec {
  margin-top: 20px;
}

/* ---------- bento features grid (features section) ---------- */
.p-features-inner .p-section-head {
  max-width: 720px;
}
.p-feature-bento {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.bento-card {
  background: var(--card-bg);
  border-radius: var(--radius-aa);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--aa-ease), box-shadow 0.4s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--line-2);
}
.bento-card .bento-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 700;
}
.bento-card .bento-stat {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 12px 0 6px;
  background: linear-gradient(180deg, #ffffff 0%, #86868b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bento-card .bento-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}
.bento-card .bento-copy {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 8px;
  line-height: 1.5;
}
.bento-card.highlight {
  border: 1px solid rgba(255, 85, 0, 0.35);
  box-shadow: 0 10px 30px var(--accent-orange-glow);
}
.bento-card.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 80% 0%,
    var(--accent-orange-glow),
    transparent 60%
  );
  pointer-events: none;
}

/* ---------- comparison slider accent ---------- */
.p-slider-after .p-slider-tag {
  background: rgba(255, 85, 0, 0.18);
  border-color: rgba(255, 85, 0, 0.5);
  color: #ffb48a;
}
.p-slider-handle {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px var(--accent-orange-glow);
}
.p-slider-handle::before {
  background: rgba(255, 255, 255, 0.85);
}

/* ---------- product showcase (contract kept) ---------- */
.p-show-img img {
  background: var(--bg-primary);
}
.p-show-step.is-active h3 {
  color: var(--text-main);
}
.p-show-progress span {
  background: var(--accent-orange);
  box-shadow: 0 0 12px var(--accent-orange-glow);
}

/* ---------- specs cards ---------- */
.p-specs-col {
  background: var(--card-bg);
  border-color: var(--line);
  border-radius: var(--radius-aa);
}
.p-table td {
  border-bottom-color: var(--line);
}
.p-table td:first-child {
  color: var(--text-muted);
}
.p-box li {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- pricing bundles ---------- */
.bundle-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-aa);
}
.bundle-option.selected .bundle-card {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-glow);
}
.bundle-badge {
  background: var(--accent-orange);
  color: #ffffff;
}
.bundle-save {
  color: var(--accent-orange);
}
.bundle-list li {
  color: var(--text-muted);
}
.bundle-list li::before {
  color: var(--accent-orange);
}

/* ---------- checkout / forms ---------- */
.p-checkout,
.order-form.p-order-form {
  background: transparent;
}
.order-form.p-order-form {
  background: rgba(28, 28, 30, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-aa);
}
.form-group input,
.form-group select {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--line-2);
  color: var(--text-main);
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-glow);
}
.checkout-cart {
  background: var(--card-bg);
  border-color: var(--line);
  border-radius: var(--radius-aa);
}
.newsletter-optin input {
  accent-color: var(--accent-orange);
}
.form-disclaimer a {
  color: var(--accent-orange-strong);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom-color: var(--line);
}
.faq-q {
  color: var(--text-main);
}

/* ---------- footer ---------- */
.p-footer {
  background: #0a0a0b;
  border-top-color: var(--line);
}
.p-footer-col a {
  color: var(--text-muted);
}
.p-footer-col a:hover {
  color: var(--text-main);
}

/* ---------- cart panel + modal ---------- */
.cart-panel,
.modal {
  background: rgba(28, 28, 30, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
}
.cart-panel {
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}
.cart-footer {
  border-top-color: var(--line);
}
.cart-item {
  border-bottom-color: var(--line);
}
.modal-icon {
  color: var(--accent-orange);
}

/* ---------- sticky mobile buy bar ---------- */
.sticky-buy {
  border-top: 1px solid var(--line);
}

/* ---------- reveal (kept) ---------- */
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- specs: "Power in numbers." stats ---------- */
.p-num-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 12px 0 8px;
}
.p-num-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.p-num-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-num-big {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-main);
  background: linear-gradient(180deg, #ffffff 0%, #86868b 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  min-width: 110px;
  font-variant-numeric: tabular-nums;
}
.p-num-label {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

/* ---------- remaining base blues -> orange ---------- */
.cart-count,
.p-dot.is-active {
  background: var(--accent-orange);
}
