/* v54 */
:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-soft: #f2f4ee;
  --surface-raised: #ffffff;
  --ink: #202124;
  --muted: #5f6368;
  --muted-soft: #7f8780;
  --line: #e3e0d7;
  --blue: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --wash-blue: #edf4ff;
  --wash-green: #edf6ef;
  --wash-yellow: #fff7db;
  --shadow: 0 24px 70px rgba(32, 33, 36, 0.1);
  --shadow-soft: 0 12px 36px rgba(32, 33, 36, 0.07);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --sticky-offset: 88px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

html[data-theme="dark"] {
  --bg: #0b0d10;
  --surface: #151a20;
  --surface-soft: #1b222a;
  --surface-raised: #202832;
  --ink: #f4efe4;
  --muted: #aeb8c2;
  --muted-soft: #7f8b96;
  --line: rgba(212, 222, 232, 0.14);
  --wash-blue: #1b2c44;
  --wash-green: #1a3028;
  --wash-yellow: #342d1b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-offset);
}

body {
  position: relative;
  margin: 0;
  padding-top: 88px;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 7%, rgba(66, 133, 244, 0.1), transparent 28%),
    radial-gradient(circle at 92% 3%, rgba(251, 188, 4, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), transparent 420px),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(32, 33, 36, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 33, 36, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 62%);
}

a {
  color: inherit;
  text-decoration: none;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 700;
  min-width: 0;
  white-space: nowrap;
}



.section-shell {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  max-width: 100%;
}

/* ─── Hero image slider ──────────────────────────────────────────────────────── */
.hero.hero-image-mode {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  contain: layout;
}

.hero.hero-image-mode::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.28) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.hero.hero-image-mode::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 6%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero.hero-image-mode::after {
    animation: hero-glow-pulse-photo 15s ease-in-out infinite;
  }
}

@keyframes hero-glow-pulse-photo {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
  }
}

.hero.hero-image-mode .hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 480px;
  margin-right: auto;
}

.hero.hero-image-mode .hero-copy h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.hero.hero-image-mode .hero-copy .hero-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero.hero-image-mode .hero-copy .eyebrow {
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.hero.hero-image-mode .hero-stage {
  display: none !important;
}

.hero.hero-image-mode.section-shell {
  grid-template-columns: 1fr !important;
  max-width: 100%;
}

.hero.hero-image-mode .hero-proof {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero.hero-image-mode .hero-proof span {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  font-size: 11px;
  min-height: 28px;
  padding: 0 10px;
}

.hero.hero-image-mode .hero-actions {
  display: inline-flex;
  gap: 10px;
  grid-template-columns: unset;
}

.hero.hero-image-mode .hero-actions .button-primary {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: #111;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero.hero-image-mode .hero-actions .button-secondary {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

.hero-slide-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,0.45);
  transition: background 0.25s, transform 0.2s;
}

.hero-dot.hero-dot-active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 719px) {
  .hero.hero-image-mode {
    background-position: center center;
    border-radius: 14px;
    min-height: 400px;
    padding: 32px 20px;
  }

  .hero.hero-image-mode::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 65%, transparent 100%);
  }

  .hero.hero-image-mode .hero-copy {
    max-width: 100%;
  }

  .hero.hero-image-mode .hero-copy h1 {
    font-size: 26px;
  }

  .hero.hero-image-mode .hero-proof {
    display: flex;
    flex-wrap: wrap;
  }

  .hero.hero-image-mode .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero.hero-image-mode .hero-actions .button-primary,
  .hero.hero-image-mode .hero-actions .button-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* ─── End hero image slider ──────────────────────────────────────────────────── */

.hero {
  display: grid;
  gap: 24px;
  min-height: auto;
  padding: 34px 0 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy > * {
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(36px, 10.6vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(31px, 8.6vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 15.5px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: -5px 0 18px;
  padding: 5px;
  border: 1px solid rgba(227, 224, 215, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 8px;
  color: #59615c;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.035);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  padding: 0 18px;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(32, 33, 36, 0.18);
}

.button-secondary {
  color: #145f39;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(52, 168, 83, 0.2);
  box-shadow: 0 12px 28px rgba(32, 33, 36, 0.06);
}

.hero-stage {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(66, 133, 244, 0.22), transparent 27%),
    radial-gradient(circle at 83% 18%, rgba(251, 188, 4, 0.2), transparent 25%),
    radial-gradient(circle at 64% 82%, rgba(52, 168, 83, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #eef2ea);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow);
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-stage::before {
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
}

.hero-stage::after {
  right: -56px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(2px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stage::after {
    animation: hero-glow-pulse 14s ease-in-out infinite;
  }
}

@keyframes hero-glow-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) translate(-6px, -6px);
  }
}

.device-card {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 20px 60px rgba(32, 33, 36, 0.12);
  backdrop-filter: blur(12px);
}

.device-card-main {
  inset: 28px 24px 62px;
  border-radius: 30px;
}

.device-card-small {
  right: 18px;
  bottom: 18px;
  width: 112px;
  height: 86px;
  border-radius: 22px;
}

.phone-mock {
  position: relative;
  width: min(48vw, 210px);
  aspect-ratio: 0.5;
  border-radius: 32px;
  background:
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(145deg, #fefefe 0%, #eef2ea 48%, #dce5dc 100%),
    var(--surface);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.8),
    0 24px 70px rgba(32, 33, 36, 0.18);
  transform: rotate(-8deg);
}

.phone-mock::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  content: "";
}

.camera-bar {
  position: absolute;
  top: 34px;
  left: 15px;
  right: 15px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d3dbd2, #c5cec5);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 8px 20px rgba(32, 33, 36, 0.06);
}

.camera-dot {
  position: absolute;
  top: 43px;
  left: 34px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #202124;
  box-shadow: 48px 0 0 #7f8780;
}

.phone-shine {
  position: absolute;
  inset: 98px 24px auto;
  height: 132px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
}

.buds-mock {
  display: flex;
  gap: 12px;
  align-items: center;
}

.buds-mock span,
.accessory-pair span {
  position: relative;
  z-index: 1;
  display: block;
  width: 25px;
  height: 34px;
  border-radius: 18px 18px 24px 24px;
  background: #f9faf8;
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 12px 26px rgba(32, 33, 36, 0.1);
}

.color-chip {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(32, 33, 36, 0.14);
}

.chip-blue {
  left: 30px;
  bottom: 30px;
  background: var(--blue);
}

.chip-green {
  left: 56px;
  bottom: 30px;
  background: var(--green);
}

.chip-red {
  left: 82px;
  bottom: 30px;
  background: var(--red);
}

.featured,
.new-arrivals,
.guidance,
.accessories,
.detail-pattern,
.field-blueprint,
.phones-hero,
.phone-browse,
.phone-guidance,
.phone-accessory-callout,
.final-cta {
  padding: 48px 0;
}

.featured,
.trust-strip,
.guidance,
.accessories,
.detail-pattern,
.field-blueprint,
.phones-hero,
.phone-browse,
.phone-guidance,
.phone-accessory-callout,
.final-cta,
.site-footer,
.product-card,
.shelf-item {
  scroll-margin-top: var(--sticky-offset);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-copy {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 16px;
}

/* ─── Scroll reveal (homepage sections) ─────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-grid,
.guidance-grid,
.shelf {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

/* ─── New arrivals horizontal showcase ──────────────────────────────────────── */
.new-arrivals[hidden] {
  display: none;
}

.new-arrivals-track-wrap {
  position: relative;
}

.new-arrivals-track {
  display: flex;
  gap: 14px;
  margin: 0 -8px;
  padding: 8px 8px 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.new-arrivals-fade {
  position: absolute;
  top: 8px;
  right: -8px;
  bottom: 14px;
  width: 56px;
  background: linear-gradient(90deg, transparent, var(--bg));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.new-arrivals-track::-webkit-scrollbar {
  display: none;
}

.new-arrivals-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.new-arrivals-track.nudging {
  scroll-snap-type: none;
}

.new-arrival-card {
  display: flex;
  flex: 0 0 240px;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    var(--shadow-soft);
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .new-arrival-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      var(--shadow);
  }
}

.new-arrival-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 160px;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
  overflow: hidden;
}

.new-arrival-visual img {
  max-height: 130px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(32, 33, 36, 0.18));
}

.new-arrival-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.new-arrival-body h3 {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.25;
}

.new-arrival-price {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 760;
}

@media (max-width: 719px) {
  .new-arrival-card {
    flex: 0 0 72%;
    scroll-snap-align: center;
  }
}

.catalogue-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.catalogue-heading h2 {
  max-width: 760px;
}

.catalogue-board {
  display: grid;
  gap: 14px;
  padding: 8px;
  border: 1px solid rgba(227, 224, 215, 0.68);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 133, 244, 0.08), transparent 26%),
    radial-gradient(circle at 92% 40%, rgba(52, 168, 83, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 44px rgba(32, 33, 36, 0.05);
}

.catalogue-group {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.catalogue-group-heading h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 25px;
}

.catalogue-grid {
  display: grid;
  gap: 10px;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    var(--surface);
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.05);
}

.catalogue-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 132px;
  margin-bottom: 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
  overflow: hidden;
}

.catalogue-visual::before {
  position: relative;
  z-index: 1;
  content: "";
  display: block;
  background: linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 18px 34px rgba(32, 33, 36, 0.08);
}

.catalogue-visual::after {
  position: absolute;
  inset: auto 24px 18px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: rgba(32, 33, 36, 0.08);
  filter: blur(14px);
}

.phone-silhouette::before {
  width: 58px;
  aspect-ratio: 0.5;
  border-radius: 15px;
}

.watch-silhouette {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
}

.watch-silhouette::before {
  width: 66px;
  height: 70px;
  border-radius: 22px;
}

.buds-silhouette {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-yellow), #fffaf0);
}

.buds-silhouette::before {
  width: 30px;
  height: 42px;
  border-radius: 22px 22px 28px 28px;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    42px 0 0 #fff,
    42px 0 0 1px rgba(32, 33, 36, 0.08),
    0 18px 34px rgba(32, 33, 36, 0.08);
}

.catalogue-card h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: 0;
}

.catalogue-card p:not(.card-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.catalogue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}

.catalogue-tags span,
.catalogue-guidance span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 11px;
  font-weight: 730;
}

.accessory-catalogue {
  display: grid;
  gap: 8px;
}

.accessory-catalogue article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.accessory-catalogue strong {
  color: var(--ink);
  font-size: 15px;
}

.accessory-catalogue span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.catalogue-guidance {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 6px;
}

.detail-pattern {
  display: grid;
  gap: 14px;
}

.detail-shell {
  display: grid;
  gap: 14px;
  padding: 8px;
  border: 1px solid rgba(227, 224, 215, 0.68);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 12%, rgba(66, 133, 244, 0.1), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(52, 168, 83, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 44px rgba(32, 33, 36, 0.05);
}

.detail-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 26px;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
  overflow: hidden;
}

.detail-device {
  position: relative;
  width: min(46vw, 176px);
  aspect-ratio: 0.5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.84), transparent 28%),
    linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.84),
    0 24px 54px rgba(32, 33, 36, 0.15);
  transform: rotate(-5deg);
}

.detail-camera {
  position: absolute;
  top: 32px;
  left: 13px;
  right: 13px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d3dbd2, #c5cec5);
}

.detail-camera::before,
.detail-camera::after {
  position: absolute;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
}

.detail-camera::before {
  left: 13px;
  background: #202124;
}

.detail-camera::after {
  left: 50px;
  background: #7f8780;
}

.detail-shine {
  position: absolute;
  inset: 100px 24px auto;
  height: 124px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
}

.detail-compat-strip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.detail-compat-strip span,
.detail-trust span,
.compat-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 11px;
  font-weight: 730;
}

.detail-copy {
  display: grid;
  align-content: center;
  padding: 16px;
}

.detail-copy h2 {
  margin-bottom: 12px;
}

.detail-copy > p {
  max-width: 600px;
}

.detail-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.detail-actions {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.detail-info-grid {
  display: grid;
  gap: 10px;
}

.detail-panel,
.detail-support-note {
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.045);
}

.detail-panel h3 {
  font-size: 21px;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.spec-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.spec-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.spec-list strong {
  color: var(--ink);
  font-size: 14px;
}

.compat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.detail-support-note {
  display: grid;
  gap: 6px;
}

.detail-support-note strong {
  color: var(--ink);
  font-size: 15px;
}

.detail-support-note span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.field-blueprint {
  display: grid;
  gap: 14px;
}

.blueprint-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.blueprint-heading h2 {
  max-width: 760px;
}

.blueprint-board {
  display: grid;
  grid-auto-columns: minmax(282px, 86%);
  grid-auto-flow: column;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(227, 224, 215, 0.68);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 133, 244, 0.08), transparent 26%),
    radial-gradient(circle at 92% 40%, rgba(251, 188, 4, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 44px rgba(32, 33, 36, 0.05);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.blueprint-board::-webkit-scrollbar {
  display: none;
}

.blueprint-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 28px rgba(32, 33, 36, 0.045);
  scroll-snap-align: start;
}

.blueprint-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.blueprint-card h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.blueprint-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.92), transparent 30%),
    var(--wash-blue);
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.06);
}

.blueprint-icon::before {
  display: block;
  content: "";
  width: 16px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(145deg, #ffffff, #e8eee8);
  box-shadow: inset 0 0 0 1px rgba(32, 33, 36, 0.08);
}

.blueprint-watch .blueprint-icon {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.92), transparent 30%),
    var(--wash-green);
}

.blueprint-watch .blueprint-icon::before {
  width: 24px;
  height: 24px;
  border-radius: 9px;
}

.blueprint-buds .blueprint-icon,
.blueprint-handsfree .blueprint-icon,
.blueprint-charger .blueprint-icon,
.blueprint-case .blueprint-icon {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.92), transparent 30%),
    var(--wash-yellow);
}

.blueprint-buds .blueprint-icon::before,
.blueprint-handsfree .blueprint-icon::before {
  width: 12px;
  height: 20px;
  border-radius: 10px 10px 14px 14px;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    18px 0 0 #fff,
    18px 0 0 1px rgba(32, 33, 36, 0.08);
}

.blueprint-charger .blueprint-icon::before {
  width: 22px;
  height: 28px;
  border-radius: 7px;
}

.blueprint-case .blueprint-icon::before {
  width: 18px;
  height: 28px;
  border: 2px solid rgba(32, 33, 36, 0.16);
  background: transparent;
}

.field-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.field-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 11px;
  font-weight: 730;
}

.blueprint-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 28px rgba(32, 33, 36, 0.04);
}

.blueprint-note strong {
  color: var(--ink);
  font-size: 15px;
}

.blueprint-note span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.phones-hero {
  display: grid;
  gap: 24px;
  align-items: center;
  padding-top: 34px;
}

.phones-hero-copy {
  min-width: 0;
}

.phones-hero-copy h1 {
  max-width: 780px;
}

.phones-hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 18%, rgba(66, 133, 244, 0.2), transparent 27%),
    radial-gradient(circle at 84% 22%, rgba(52, 168, 83, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #eef2ea);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    var(--shadow);
  overflow: hidden;
}

.phones-hero-stage::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

.phones-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-stack {
  position: absolute;
  width: min(43vw, 178px);
  aspect-ratio: 0.5;
  border-radius: 30px;
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.84), transparent 28%),
    linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.82),
    0 24px 58px rgba(32, 33, 36, 0.16);
}

.phone-stack-back {
  transform: rotate(8deg) translate(34px, 4px);
  opacity: 0.72;
}

.phone-stack-front {
  transform: rotate(-7deg) translate(-16px, -8px);
}

.phone-stack-camera {
  position: absolute;
  top: 32px;
  left: 13px;
  right: 13px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d3dbd2, #c5cec5);
  box-shadow: inset 0 0 0 1px rgba(32, 33, 36, 0.08);
}

.phone-stack-camera::before,
.phone-stack-camera::after {
  position: absolute;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
}

.phone-stack-camera::before {
  left: 13px;
  background: #202124;
}

.phone-stack-camera::after {
  left: 50px;
  background: #7f8780;
}

.phone-stack-shine {
  position: absolute;
  inset: 100px 24px auto;
  height: 124px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
}

.phone-status-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 30px rgba(32, 33, 36, 0.08);
  backdrop-filter: blur(14px);
}

.phone-status-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-status-card strong {
  color: var(--ink);
  font-size: 15px;
}

.phone-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(227, 224, 215, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 32px rgba(32, 33, 36, 0.04);
}

.phone-trust-strip span {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(227, 224, 215, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 730;
  text-align: center;
}

.phone-browse {
  display: grid;
  gap: 18px;
}

.filter-board {
  display: grid;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(227, 224, 215, 0.68);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 133, 244, 0.08), transparent 26%),
    radial-gradient(circle at 92% 40%, rgba(52, 168, 83, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 44px rgba(32, 33, 36, 0.05);
}

.filter-group {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
}

.filter-group strong {
  color: var(--ink);
  font-size: 15px;
}

.filter-status {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px 2px;
}

.filter-status p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.filter-status button {
  flex: 0 0 auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 730;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.filter-status button:disabled {
  color: var(--muted);
  text-decoration: none;
  cursor: default;
  opacity: 0.65;
}

.filter-chips,
.phone-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-chips span,
.filter-chips button,
.phone-card-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  font: inherit;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 11px;
  font-weight: 730;
}

.filter-chips button {
  cursor: pointer;
}

.filter-chips button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.filter-chips button:disabled {
  cursor: default;
}

.phone-filter-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.phone-listing-card[hidden],
.phone-filter-empty[hidden] {
  display: none;
}

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

.phone-listing-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  grid-template-rows: auto;
  gap: 0;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    var(--shadow-soft);
  overflow: hidden;
}

.phone-card-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 320px;
  max-height: 280px;
  border-radius: 0;
  border-right: 1px solid rgba(227, 224, 215, 0.5);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
  overflow: hidden;
  grid-row: 1 / -1;
  padding: 0 0 12px;
}

.phone-card-green {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
}

.phone-card-yellow {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-yellow), #fffaf0);
}

.phone-card-red {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, rgba(234, 67, 53, 0.12), #fff7f4);
}

.phone-card-visual::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 58px;
  aspect-ratio: 0.5;
  border-radius: 15px;
  content: "";
  background: linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 18px 34px rgba(32, 33, 36, 0.08);
}

.phone-card-visual::after {
  position: absolute;
  inset: auto 24px 18px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: rgba(32, 33, 36, 0.08);
  filter: blur(14px);
}

.phone-card-visual.has-product-image::before,
.phone-card-visual.has-product-image::after {
  display: none;
}

.phone-card-image {
  display: block;
  width: 90%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: bottom center;
  cursor: zoom-in;
  filter: drop-shadow(0 8px 16px rgba(32,33,36,0.18));
  position: relative;
  z-index: 1;
}

.phone-card-visual.has-product-image::after {
  display: block;
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: rgba(32, 33, 36, 0.10);
  filter: blur(8px);
  z-index: 0;
}

.phone-card-color-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 10px 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.phone-card-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.phone-card-color-dot.active {
  border-color: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.22);
}

.phone-card-color-dot:hover {
  transform: scale(1.15);
}

.phone-card-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  align-content: start;
}

.phone-listing-card .card-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.phone-listing-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.phone-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0;
}

.phone-specs div {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 10px;
  border: 1px solid rgba(227, 224, 215, 0.5);
}

.phone-specs dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.phone-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.3;
}

.phone-card-actions {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.phone-card-actions .button {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 13px;
}

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

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

.phone-guidance-grid article,
.phone-accessory-grid article {
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.045);
}

.phone-guidance-grid h3 {
  font-size: 22px;
}

.phone-guidance-grid p,
.phone-accessory-grid span {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.phone-accessory-callout {
  display: grid;
  gap: 18px;
}

.phone-accessory-grid article {
  display: grid;
  gap: 6px;
}

.phone-accessory-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.watch-hero-stage {
  background:
    radial-gradient(circle at 26% 18%, rgba(52, 168, 83, 0.2), transparent 28%),
    radial-gradient(circle at 84% 26%, rgba(66, 133, 244, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #eef4ed);
}

.watch-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-strap {
  position: absolute;
  left: 50%;
  width: min(24vw, 94px);
  height: 132px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(180deg, #d8e4d6, #bacabb);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 16px 34px rgba(32, 33, 36, 0.08);
  transform: translateX(-50%);
}

.watch-strap-top {
  top: 32px;
}

.watch-strap-bottom {
  bottom: 72px;
}

.watch-face-large {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(52vw, 214px);
  aspect-ratio: 1;
  border: 10px solid #202124;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #1f2a24, #0c1114);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    0 28px 62px rgba(32, 33, 36, 0.18);
}

.watch-face-glow {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.16);
  filter: blur(24px);
}

.watch-face-time {
  position: relative;
  z-index: 1;
  color: #f7f5ef;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 820;
  line-height: 1;
}

.watch-face-pill {
  position: absolute;
  z-index: 1;
  bottom: 44px;
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.42);
}

.watch-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
  overflow: hidden;
}

.watch-card-blue {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
}

.watch-card-yellow {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-yellow), #fffaf0);
}

.watch-card-red {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, rgba(234, 67, 53, 0.12), #fff7f4);
}

.watch-card-visual::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 66px;
  aspect-ratio: 1;
  border: 6px solid #202124;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #1f2a24, #0c1114);
  box-shadow:
    0 -48px 0 -23px #cddccd,
    0 48px 0 -23px #c0d0c1,
    0 18px 34px rgba(32, 33, 36, 0.1);
}

.watch-card-visual::after {
  position: absolute;
  inset: auto 24px 18px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: rgba(32, 33, 36, 0.08);
  filter: blur(14px);
}

.buds-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(251, 188, 4, 0.18), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(66, 133, 244, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #f6f0df);
}

.buds-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buds-case-large {
  position: absolute;
  z-index: 1;
  width: min(58vw, 232px);
  aspect-ratio: 1.18;
  border-radius: 34px 34px 48px 48px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, #fff, #ece7dc);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 26px 58px rgba(32, 33, 36, 0.14);
  transform: translateY(28px);
}

.buds-case-lid {
  position: absolute;
  top: 22%;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(32, 33, 36, 0.1);
}

.buds-case-dot {
  position: absolute;
  bottom: 24%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.65);
  transform: translateX(-50%);
}

.buds-pair-large {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  transform: translateY(-42px);
}

.buds-pair-large span {
  display: block;
  width: min(15vw, 54px);
  height: min(20vw, 74px);
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, #fff, #e9ece8);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 18px 32px rgba(32, 33, 36, 0.12);
}

.buds-pair-large span:last-child {
  transform: rotate(9deg);
}

.buds-pair-large span:first-child {
  transform: rotate(-9deg);
}

.buds-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-yellow), #fffaf0);
  overflow: hidden;
}

.buds-card-blue {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
}

.buds-card-green {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
}

.buds-card-red {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, rgba(234, 67, 53, 0.12), #fff7f4);
}

.buds-card-visual::before {
  position: absolute;
  z-index: 1;
  width: 78px;
  height: 58px;
  border-radius: 19px 19px 26px 26px;
  content: "";
  background:
    linear-gradient(180deg, transparent 29%, rgba(32, 33, 36, 0.09) 30%, transparent 31%),
    linear-gradient(145deg, #fff, #ece7dc);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 16px 30px rgba(32, 33, 36, 0.1);
  transform: translateY(16px);
}

.buds-card-visual::after {
  position: relative;
  z-index: 2;
  display: block;
  width: 28px;
  height: 38px;
  border-radius: 50% 50% 46% 46%;
  content: "";
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, #fff, #e9ece8);
  box-shadow:
    40px 8px 0 -1px #f4f5f1,
    0 12px 24px rgba(32, 33, 36, 0.1);
  transform: rotate(-8deg) translate(-17px, -20px);
}

.accessories-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(66, 133, 244, 0.16), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(52, 168, 83, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #eff4ec);
}

.accessories-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accessory-hero-cluster {
  position: relative;
  display: grid;
  place-items: center;
  width: min(68vw, 270px);
  height: min(66vw, 260px);
}

.accessory-hero-cluster span {
  position: absolute;
  display: block;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.09),
    0 20px 44px rgba(32, 33, 36, 0.12);
}

.hero-charger {
  left: 4%;
  bottom: 16%;
  width: 92px;
  height: 76px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 22px, rgba(32, 33, 36, 0.1) 22px 25px, transparent 25px 67px, rgba(32, 33, 36, 0.1) 67px 70px, transparent 70px),
    linear-gradient(145deg, #fff, #eef2ea);
  transform: rotate(-8deg);
}

.hero-case {
  width: 118px;
  aspect-ratio: 0.55;
  border-radius: 30px;
  background:
    radial-gradient(circle at 68% 13%, transparent 0 15px, rgba(32, 33, 36, 0.08) 15px 16px, transparent 17px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), #edf2ee);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.84),
    inset 0 0 0 11px rgba(232, 238, 231, 0.72),
    0 24px 52px rgba(52, 168, 83, 0.12);
}

.hero-protector {
  right: 2%;
  top: 14%;
  width: 92px;
  aspect-ratio: 0.52;
  border: 2px solid rgba(66, 133, 244, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(237, 244, 255, 0.4));
  transform: rotate(10deg);
  backdrop-filter: blur(8px);
}

.accessory-branches {
  display: grid;
  gap: 18px;
  padding-top: 42px;
  padding-bottom: 42px;
}

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

.branch-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.045);
}

.branch-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(227, 224, 215, 0.72),
    0 12px 26px rgba(32, 33, 36, 0.06);
}

.branch-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.branch-mark::before {
  content: "";
  display: block;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(32, 33, 36, 0.1);
}

.branch-grid h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.branch-grid p:not(.card-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.accessory-listing-card .shelf-visual {
  min-height: 150px;
  height: auto;
  margin-bottom: 0;
}

.protector-visual {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, #edf4ff, #fbfdff);
}

.protector-visual::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 68px;
  aspect-ratio: 0.52;
  border: 2px solid rgba(66, 133, 244, 0.24);
  border-radius: 17px;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(237, 244, 255, 0.48));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.76),
    0 18px 34px rgba(66, 133, 244, 0.08);
}

.charger-visual-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(145deg, #edf6ef, #fbfdf9);
}

.case-visual-blue {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, #edf4ff, #fbfdff);
}

.protector-visual-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(145deg, #edf6ef, #fbfdf9);
}

.support-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(52, 168, 83, 0.15), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(66, 133, 244, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #edf4ff);
}

.support-chat-stack {
  display: grid;
  gap: 12px;
  width: min(72vw, 330px);
}

.support-chat-stack span {
  display: block;
  padding: 16px 18px;
  color: var(--ink);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 32px rgba(32, 33, 36, 0.08);
  font-size: 16px;
  font-weight: 790;
}

.support-chat-stack span:nth-child(2) {
  justify-self: end;
  width: 82%;
}

.support-section {
  display: grid;
  gap: 18px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.support-topic-grid,
.verification-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}

.support-topic-grid article,
.verification-grid article,
.faq-grid article {
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.045);
}

.support-topic-grid article {
  display: grid;
  gap: 6px;
}

.support-topic-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.support-topic-grid span,
.verification-grid li,
.faq-grid p,
.support-inline-action span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.verification-grid h3,
.faq-grid h3 {
  font-size: 21px;
}

.verification-grid ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 18px;
}

.faq-grid p {
  margin-bottom: 0;
}

.support-inline-action {
  display: grid;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(32, 33, 36, 0.04);
}

.payment-support {
  display: grid;
  gap: 18px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.payment-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-support-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 12px;
  font-weight: 730;
}

.cart-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(66, 133, 244, 0.15), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(251, 188, 4, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #f7f1df);
}

.cart-basket-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(64vw, 250px);
  height: min(58vw, 220px);
}

.cart-basket-visual::before {
  position: absolute;
  bottom: 32px;
  width: 210px;
  height: 126px;
  border: 2px solid rgba(32, 33, 36, 0.12);
  border-radius: 26px 26px 36px 36px;
  content: "";
  background:
    linear-gradient(90deg, transparent 22%, rgba(32, 33, 36, 0.08) 22% 23%, transparent 23% 48%, rgba(32, 33, 36, 0.08) 48% 49%, transparent 49% 74%, rgba(32, 33, 36, 0.08) 74% 75%, transparent 75%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), #edf2ee);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 52px rgba(32, 33, 36, 0.13);
}

.cart-basket-visual::after {
  position: absolute;
  top: 42px;
  width: 126px;
  height: 70px;
  border: 10px solid rgba(32, 33, 36, 0.16);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
}

.cart-basket-visual span {
  position: absolute;
  z-index: 2;
  display: block;
  width: 52px;
  height: 70px;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 14px 28px rgba(32, 33, 36, 0.1);
}

.cart-basket-visual span:first-child {
  left: 48px;
  bottom: 96px;
  transform: rotate(-8deg);
}

.cart-basket-visual span:last-child {
  right: 46px;
  bottom: 92px;
  transform: rotate(10deg);
}

.cart-layout {
  display: grid;
  gap: 16px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.cart-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.empty-cart-panel,
.cart-pattern-section,
.cart-summary-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.empty-cart-panel h2,
.cart-summary-panel h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.empty-cart-panel p:not(.eyebrow),
.summary-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.empty-cart-links,
.cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.empty-cart-links a,
.cart-item-controls span,
.summary-list div {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 12px;
  font-weight: 730;
}

.cart-pattern-section {
  gap: 16px;
}

.cart-item-pattern {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.cart-item-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
  overflow: hidden;
}

.cart-item-accessory {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
}

.cart-item-visual::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 52px;
  aspect-ratio: 0.5;
  border-radius: 14px;
  content: "";
  background: linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 18px 34px rgba(32, 33, 36, 0.08);
}

.cart-item-accessory::before {
  width: 70px;
  height: 54px;
  aspect-ratio: auto;
  border-radius: 16px;
}

.cart-item-copy h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.cart-item-fields,
.summary-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.cart-item-fields div {
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.cart-item-fields dt,
.summary-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item-fields dd,
.summary-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.summary-list div {
  justify-content: space-between;
  border-radius: 16px;
}

.cart-disabled-button {
  justify-content: center;
  opacity: 0.72;
  cursor: not-allowed;
}

.checkout-sheet-visual {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(72vw, 288px);
  padding: 22px;
  border: 1px solid rgba(227, 224, 215, 0.76);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 52px rgba(32, 33, 36, 0.12);
}

.checkout-sheet-visual span {
  display: block;
  height: 38px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(66, 133, 244, 0.13), transparent 42%),
    #fff;
}

.checkout-sheet-visual span:nth-child(2) {
  width: 78%;
}

.checkout-sheet-visual span:nth-child(3) {
  width: 62%;
}

.checkout-layout {
  display: grid;
  gap: 16px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.checkout-panel,
.checkout-summary-panel {
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.checkout-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.checkout-panel,
.checkout-summary-panel {
  display: grid;
  gap: 16px;
}

.checkout-panel[hidden] {
  display: none;
}

.product-thumbs[hidden] {
  display: none;
}

.option-group[hidden] {
  display: none;
}

.compact-heading {
  gap: 7px;
}

.compact-heading h2,
.checkout-summary-panel h2 {
  font-size: 28px;
}

.checkout-field-grid {
  display: grid;
  gap: 12px;
}

.checkout-field-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-field-grid input,
.checkout-field-grid textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.checkout-field-grid input {
  min-height: 44px;
  padding: 0 12px;
}

.checkout-field-grid textarea {
  min-height: 86px;
  padding: 12px;
  resize: none;
}

.checkout-field-grid input:disabled,
.checkout-field-grid textarea:disabled {
  opacity: 0.76;
  cursor: not-allowed;
}

.payment-proof-visual {
  display: grid;
  gap: 12px;
  width: min(72vw, 292px);
  padding: 22px;
  border: 1px solid rgba(227, 224, 215, 0.76);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 52px rgba(32, 33, 36, 0.12);
}

.payment-proof-visual span {
  display: block;
  height: 42px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(52, 168, 83, 0.13), transparent 44%),
    #fff;
}

.payment-proof-visual span:nth-child(2) {
  width: 74%;
}

.payment-proof-visual strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--ink);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.payment-method-guidance,
.proof-guidance,
.payment-timeline,
.keep-ready-section {
  display: grid;
  gap: 16px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.proof-panel,
.proof-action-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.proof-topic-grid,
.timeline-grid {
  display: grid;
  gap: 12px;
}

.proof-topic-grid article,
.timeline-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.proof-topic-grid strong,
.timeline-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.proof-topic-grid span,
.timeline-grid span,
.proof-action-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.proof-action-panel h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.order-tracker-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(251, 188, 4, 0.14), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(66, 133, 244, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #f7f1df);
}

.tracker-visual {
  display: grid;
  gap: 12px;
  width: min(72vw, 288px);
  padding: 22px;
  border: 1px solid rgba(227, 224, 215, 0.76);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 52px rgba(32, 33, 36, 0.12);
}

.tracker-visual span {
  position: relative;
  display: block;
  min-height: 36px;
  padding-left: 48px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(251, 188, 4, 0.16), transparent 44%),
    #fff;
}

.tracker-visual span::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.22);
  content: "";
  transform: translateY(-50%);
}

.tracker-lookup-section,
.status-meaning-section {
  display: grid;
  gap: 16px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.lookup-panel,
.tracker-note-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.tracker-disabled-button {
  width: 100%;
}

.tracker-timeline-grid,
.status-card-grid {
  display: grid;
  gap: 12px;
}

.tracker-timeline-grid article,
.status-card-grid article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.tracker-timeline-grid span,
.status-card-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.tracker-timeline-grid strong,
.status-card-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.policy-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(66, 133, 244, 0.13), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(52, 168, 83, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), #edf4ff);
}

.policy-document-visual {
  display: grid;
  gap: 12px;
  width: min(72vw, 286px);
  padding: 22px;
  border: 1px solid rgba(227, 224, 215, 0.76);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 52px rgba(32, 33, 36, 0.12);
}

.policy-document-visual span {
  display: block;
  height: 34px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(66, 133, 244, 0.12), transparent 45%),
    #fff;
}

.policy-document-visual span:nth-child(2) {
  width: 78%;
}

.policy-document-visual span:nth-child(3) {
  width: 56%;
}

.policy-section,
.policy-related-section {
  display: grid;
  gap: 16px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.policy-card-grid,
.policy-related-grid {
  display: grid;
  gap: 12px;
}

.policy-card-grid article,
.policy-related-grid article,
.policy-note-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.policy-card-grid strong,
.policy-related-grid strong,
.policy-note-panel strong {
  color: var(--ink);
  font-size: 16px;
}

.policy-card-grid span,
.policy-related-grid span,
.policy-note-panel span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  scroll-margin-top: var(--sticky-offset);
}

.breadcrumb a {
  color: var(--ink);
}

.product-detail-hero,
.product-spec-section,
.condition-report,
.compatible-detail,
.payment-preview {
  padding: 42px 0;
  scroll-margin-top: var(--sticky-offset);
}

.product-long-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  white-space: pre-wrap;
  max-width: 72ch;
}

.product-detail-hero {
  display: grid;
  gap: 14px;
  align-items: start;
}

.product-gallery,
.product-buy-panel,
.detail-trust-panel,
.payment-preview,
.product-gallery-stage {
  border: 1px solid rgba(227, 224, 215, 0.68);
  background:
    radial-gradient(circle at 12% 8%, rgba(66, 133, 244, 0.08), transparent 26%),
    radial-gradient(circle at 92% 40%, rgba(52, 168, 83, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 44px rgba(32, 33, 36, 0.05);
}

.product-gallery,
.product-buy-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 8px;
  border-radius: var(--radius-xl);
}

.product-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 26px;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
  overflow: hidden;
}

.product-phone-mock {
  position: relative;
  width: min(45vw, 184px);
  aspect-ratio: 0.5;
  border-radius: 30px;
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.84), transparent 28%),
    linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.84),
    0 24px 54px rgba(32, 33, 36, 0.15);
  transform: rotate(-5deg);
}

.product-thumbs,
.commerce-actions,
.payment-preview-grid,
.detail-trust-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-thumbs span,
.commerce-actions span,
.payment-preview-grid span,
.detail-trust-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(227, 224, 215, 0.82);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 11px;
  font-weight: 730;
}

.product-buy-panel {
  align-content: start;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.48);
}

.product-buy-panel h1 {
  margin-bottom: 4px;
  font-size: clamp(34px, 8vw, 64px);
}

.product-buy-panel > p {
  max-width: 650px;
}

.option-board {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.option-group {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.option-group strong {
  color: var(--ink);
  font-size: 15px;
}

.color-choice-row {
  display: flex;
  gap: 8px;
}

.color-choice {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(227, 224, 215, 0.92);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 8px 18px rgba(32, 33, 36, 0.05);
}

.color-choice-blue {
  background: var(--wash-blue);
}

.color-choice-green {
  background: var(--wash-green);
}

.color-choice-charcoal {
  background: #3d4346;
}

.product-status-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.product-status-list div,
.spec-matrix article,
.condition-grid article {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.product-status-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-status-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.commerce-actions {
  margin-top: 4px;
}

.commerce-actions span {
  min-height: 44px;
}

.commerce-actions .button {
  min-height: 44px;
}

.detail-trust-panel {
  padding: 8px;
  border-radius: 999px;
}

.detail-trust-panel span {
  flex: 1 1 auto;
  justify-content: center;
  min-height: 34px;
  text-align: center;
}

.spec-matrix,
.condition-grid {
  display: grid;
  gap: 12px;
}

.spec-matrix strong,
.condition-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.spec-matrix span,
.condition-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.compatible-detail {
  display: grid;
  gap: 18px;
}

.payment-preview {
  display: grid;
  gap: 16px;
  border-radius: var(--radius-xl);
}

.product-card,
.guidance-card,
.shelf-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    var(--shadow-soft);
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card::after,
.guidance-card::after,
.shelf-item::after {
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(32, 33, 36, 0.12), transparent);
}

.product-card {
  min-height: 350px;
  padding: 20px;
  border-radius: var(--radius-lg);
  transition: box-shadow 0.18s, transform 0.18s;
}

.product-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 32px rgba(32, 33, 36, 0.1);
  transform: translateY(-2px);
}

.product-card img,
.shelf-item img,
.feature-grid img,
.guidance-grid img,
.catalogue-board img,
.card-primary img,
.card-blue img,
.card-green img,
.card-yellow img,
.shelf img,
.accessory-catalogue img {
  width: 100%;
  max-width: 100%;
  max-height: 200px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto 12px;
}

.shelf-item img {
  max-height: 160px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.shelf-visual {
  display: none;
}

.product-card h3 {
  max-width: 260px;
}

.card-primary {
  background:
    radial-gradient(circle at 18% 18%, rgba(66, 133, 244, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    var(--surface);
}

.product-card p:last-child,
.guidance-card p,
.shelf-item p,
.final-cta p {
  margin-bottom: 0;
}

.card-kicker {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 2px;
}

.card-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #44504a;
  background: #fff;
  border: 1px solid rgba(212, 217, 208, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(32, 33, 36, 0.055);
  font-size: 11px;
  font-weight: 730;
}

.mini-device,
.accessory-pair,
.deal-token,
.watch-mock,
.buds-display {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 188px;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64);
  overflow: hidden;
}

.mini-device::after,
.accessory-pair::after,
.deal-token::after,
.watch-mock::after,
.buds-display::after {
  position: absolute;
  inset: auto 22px 16px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: rgba(32, 33, 36, 0.08);
  filter: blur(14px);
}

.card-blue .mini-device {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, var(--wash-blue), #f8fbff);
}

.card-green .accessory-pair {
  display: flex;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
}

.card-yellow .deal-token {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(145deg, var(--wash-yellow), #fffaf0);
}

.watch-mock {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, var(--wash-green), #fbfdf9);
}

.watch-mock::before {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 118px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, #dfe7dc, #c9d5ca);
  box-shadow: inset 0 0 0 1px rgba(32, 33, 36, 0.08);
}

.watch-mock span {
  position: absolute;
  z-index: 2;
  width: 86px;
  height: 92px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(145deg, #fff, #edf3eb);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 20px 38px rgba(52, 168, 83, 0.12);
}

.buds-display {
  display: flex;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, var(--wash-yellow), #fffaf0);
}

.buds-display span {
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: 48px;
  border-radius: 22px 22px 28px 28px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.09),
    0 18px 32px rgba(122, 83, 0, 0.1);
}

.product-card img ~ .mini-device,
.product-card picture ~ .mini-device,
.product-card img ~ .watch-mock,
.product-card picture ~ .watch-mock,
.product-card img ~ .buds-display,
.product-card picture ~ .buds-display {
  display: none;
}

.mini-device::before {
  position: relative;
  z-index: 1;
  content: "";
  display: block;
  width: 88px;
  aspect-ratio: 0.5;
  border-radius: 19px;
  background: linear-gradient(145deg, #fff, #edf2ee);
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.08),
    0 20px 38px rgba(66, 133, 244, 0.1);
}

.mini-camera {
  position: absolute;
}

.deal-token span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: #7a5300;
  background:
    linear-gradient(180deg, #fff, #fffaf0);
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(122, 83, 0, 0.12);
}

.supporting-accessories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding: 8px;
  border: 1px solid rgba(227, 224, 215, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.supporting-accessories span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #56605a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 740;
}

.trust-strip {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 8%, rgba(66, 133, 244, 0.22), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(52, 168, 83, 0.18), transparent 30%),
    #202124;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    var(--shadow);
}

.trust-intro {
  padding: 6px 4px 8px;
}

.trust-strip .trust-intro .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.trust-strip .trust-intro h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(30px, 8vw, 54px);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.2s;
}

.trust-item::before {
  content: '';
  flex: 0 0 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(66, 133, 244, 0.9);
  margin-top: 7px;
}

.trust-strip strong,
.trust-strip span {
  display: inline;
}

.trust-strip strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-right: 6px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.4;
}

.guidance-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.condition-dot {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 24px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(32, 33, 36, 0.035);
}

.guidance-card h3 {
  font-size: 24px;
}

.guidance-card p {
  font-size: 15px;
}

.guidance-points {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.guidance-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4f5752;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.guidance-points li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  content: "";
  background: var(--line);
  box-shadow: 0 0 0 5px rgba(32, 33, 36, 0.025);
}

.guidance-card:nth-child(1) {
  background:
    radial-gradient(circle at 88% 12%, rgba(66, 133, 244, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    var(--surface);
}

.guidance-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 168, 83, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    var(--surface);
}

.guidance-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 12%, rgba(234, 67, 53, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    var(--surface);
}

.guidance-card:nth-child(1) .guidance-points li::before {
  background: var(--blue);
}

.guidance-card:nth-child(2) .guidance-points li::before {
  background: var(--green);
}

.guidance-card:nth-child(3) .guidance-points li::before {
  background: var(--red);
}

.dot-blue {
  background: var(--blue);
}

.dot-green {
  background: var(--green);
}

.dot-yellow {
  background: var(--yellow);
}

.dot-red {
  background: var(--red);
}

.accessories {
  padding-inline: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 7%, rgba(251, 188, 4, 0.12), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(66, 133, 244, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.16));
}

.shelf {
  align-items: stretch;
  padding: 6px;
  border: 1px solid rgba(227, 224, 215, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 44px rgba(32, 33, 36, 0.045);
}

.shelf-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 15px;
  border-radius: 24px;
}

.shelf-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 148px;
  margin-bottom: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, #f7faf6, var(--surface-soft));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 -22px 46px rgba(32, 33, 36, 0.025);
  overflow: hidden;
}

.shelf-visual::after {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: rgba(32, 33, 36, 0.08);
  filter: blur(14px);
}

.case-visual::before,
.charger-visual::before {
  position: relative;
  z-index: 1;
  content: "";
  display: block;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.1),
    0 16px 34px rgba(32, 33, 36, 0.08);
}

.handsfree-visual {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(145deg, #fff7db, #fffdf5);
}

.audio-bud {
  position: absolute;
  z-index: 2;
  top: 38px;
  width: 28px;
  height: 36px;
  border-radius: 18px 18px 22px 22px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(32, 33, 36, 0.09),
    0 14px 30px rgba(122, 83, 0, 0.09);
}

.audio-bud-left {
  left: calc(50% - 42px);
  transform: rotate(-8deg);
}

.audio-bud-right {
  right: calc(50% - 42px);
  transform: rotate(8deg);
}

.audio-cable {
  position: absolute;
  z-index: 1;
  top: 66px;
  width: 108px;
  height: 48px;
  border: 3px solid rgba(122, 83, 0, 0.15);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.case-visual::before {
  width: 70px;
  aspect-ratio: 0.55;
  border-radius: 18px;
  background:
    radial-gradient(circle at 68% 13%, transparent 0 10px, rgba(32, 33, 36, 0.08) 10px 11px, transparent 12px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), #edf2ee);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.84),
    inset 0 0 0 8px rgba(232, 238, 231, 0.72),
    0 18px 34px rgba(52, 168, 83, 0.09);
}

.charger-visual::before {
  width: 78px;
  height: 62px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 18px, rgba(32, 33, 36, 0.1) 18px 21px, transparent 21px 57px, rgba(32, 33, 36, 0.1) 57px 60px, transparent 60px),
    linear-gradient(145deg, #fff, #eef2ea);
}

.charger-visual::after {
  right: 28px;
  left: 28px;
}

.charger-visual {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, #edf4ff, #fbfdff);
}

.case-visual {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(145deg, #edf6ef, #fbfdf9);
}

.shelf-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.shelf-item p:not(.card-kicker) {
  font-size: 14.5px;
  line-height: 1.56;
}

.shelf-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}

.shelf-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(227, 224, 215, 0.86);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.04);
  font-size: 11px;
  font-weight: 720;
}

.shelf-dots, .feature-grid-dots { display: none; }

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 133, 244, 0.28), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(52, 168, 83, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), transparent 34%),
    #202124;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 76px rgba(32, 33, 36, 0.16);
}

.final-cta::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 92px;
  height: 92px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(66, 133, 244, 0.42) 0 25%, transparent 25% 33%, rgba(234, 67, 53, 0.36) 33% 58%, transparent 58% 66%, rgba(251, 188, 4, 0.38) 66% 82%, transparent 82% 88%, rgba(52, 168, 83, 0.34) 88%);
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.42;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta h2 {
  max-width: 740px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
}

.final-cta .button-primary {
  min-height: 52px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.final-cta-copy > p {
  max-width: 620px;
}

.final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.final-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 730;
}

.final-action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.final-action span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 26px 0 calc(38px + env(safe-area-inset-bottom));
  color: #4f5752;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-trust-info {
  display: grid;
  gap: 3px;
  max-width: 360px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-trust-info p {
  margin-bottom: 0;
}

.footer-trust-info a {
  color: inherit;
  text-decoration: none;
}

.footer-trust-info a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a,
.footer-support a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: #4f5752;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(32, 33, 36, 0.035);
  font-size: 13px;
  font-weight: 700;
}

.footer-support {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 32px rgba(32, 33, 36, 0.04);
}

.footer-support strong {
  color: var(--ink);
  font-size: 15px;
}

.footer-support span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-support a {
  justify-content: center;
  min-height: 40px;
  color: #0b0d10;
  background: #25d366;
  border-color: #25d366;
  font-weight: 700;
}
.footer-support a:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

@media (max-width: 719px) {

  h1 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: 35px;
    line-height: 1.03;
  }

  h2 {
    font-size: 31px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .hero {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero-text {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-proof {
    gap: 3px;
    margin: -3px 0 16px;
    padding: 4px;
  }

  .hero-proof span {
    min-height: 28px;
    padding-inline: 5px;
    font-size: 9.5px;
  }

  .hero-actions {
    gap: 9px;
  }

  .button {
    min-height: 50px;
  }

  .button-secondary {
    background: rgba(255, 255, 255, 0.84);
  }

  .hero-stage {
    min-height: 318px;
    border-radius: 26px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 18px 46px rgba(32, 33, 36, 0.095);
  }

  .hero-stage::before {
    inset: 11px;
    border-radius: 21px;
  }

  .device-card-main {
    inset: 24px 20px 54px;
    border-radius: 28px;
  }

  .device-card-small {
    right: 16px;
    bottom: 16px;
    width: 104px;
    height: 78px;
    border-radius: 21px;
  }

  .phone-mock {
    width: min(45vw, 178px);
    border-radius: 29px;
    transform: rotate(-7deg) translateY(4px);
  }

  .phone-mock::before {
    inset: 9px;
    border-radius: 23px;
  }

  .camera-bar {
    top: 30px;
    left: 13px;
    right: 13px;
    height: 35px;
  }

  .camera-dot {
    top: 38px;
    left: 30px;
    width: 19px;
    height: 19px;
    box-shadow: 41px 0 0 #7f8780;
  }

  .phone-shine {
    inset: 88px 22px auto;
    height: 112px;
  }

  .buds-mock {
    gap: 10px;
  }

  .buds-mock span {
    width: 22px;
    height: 30px;
  }

  .color-chip {
    width: 14px;
    height: 14px;
  }

  .chip-blue {
    left: 27px;
    bottom: 27px;
  }

  .chip-green {
    left: 51px;
    bottom: 27px;
  }

  .chip-red {
    left: 75px;
    bottom: 27px;
  }

  .featured {
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .phones-hero {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .phones-hero-copy h1 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: 35px;
    line-height: 1.03;
  }

  .phones-hero-stage {
    min-height: 318px;
    border-radius: 26px;
  }

  .phone-stack {
    width: min(45vw, 166px);
    border-radius: 28px;
  }

  .phone-status-card {
    padding: 12px;
    border-radius: 18px;
  }

  .phone-trust-strip {
    gap: 5px;
    padding: 5px;
    border-radius: 27px;
  }

  .phone-trust-strip span {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 10.5px;
  }

  .catalogue-heading {
    gap: 9px;
  }

  .phone-browse {
    gap: 14px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .filter-board {
    gap: 8px;
    padding: 5px;
    border-radius: 27px;
  }

  .filter-group {
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
  }

  .filter-status {
    align-items: flex-start;
    padding: 6px 8px 4px;
  }

  .filter-chips {
    flex-wrap: nowrap;
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 12px;
    scrollbar-width: none;
  }

  .filter-chips::-webkit-scrollbar {
    display: none;
  }

  .filter-chips span,
  .filter-chips button {
    flex: 0 0 auto;
  }

  .phone-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .phone-listing-card {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 20px;
  }

  .phone-card-visual {
    grid-row: auto;
    min-height: 240px;
    border-right: none;
    border-bottom: 1px solid rgba(227, 224, 215, 0.5);
    border-radius: 0;
    padding: 0 0 10px;
    justify-content: flex-end;
  }

  .phone-card-image {
    width: 70%;
    max-height: 200px;
  }

  .watch-card-visual {
    grid-row: span 4;
    min-height: 124px;
    border-radius: 18px;
  }

  .buds-card-visual {
    grid-row: span 4;
    min-height: 124px;
    border-radius: 18px;
  }

  .phone-card-visual::before {
    width: 46px;
    border-radius: 13px;
  }

  .watch-card-visual::before {
    width: 54px;
    border-width: 5px;
    box-shadow:
      0 -38px 0 -19px #cddccd,
      0 38px 0 -19px #c0d0c1,
      0 16px 28px rgba(32, 33, 36, 0.1);
  }

  .watch-strap {
    width: min(26vw, 82px);
    height: 114px;
  }

  .watch-strap-top {
    top: 28px;
  }

  .watch-strap-bottom {
    bottom: 66px;
  }

  .watch-face-large {
    width: min(52vw, 178px);
    border-width: 8px;
  }

  .watch-face-pill {
    bottom: 34px;
  }

  .buds-case-large {
    width: min(58vw, 190px);
    border-radius: 28px 28px 38px 38px;
  }

  .buds-pair-large {
    gap: 26px;
    transform: translateY(-38px);
  }

  .buds-pair-large span {
    width: min(15vw, 44px);
    height: min(20vw, 62px);
  }

  .buds-card-visual::before {
    width: 64px;
    height: 48px;
  }

  .buds-card-visual::after {
    width: 23px;
    height: 32px;
    box-shadow:
      33px 7px 0 -1px #f4f5f1,
      0 12px 22px rgba(32, 33, 36, 0.1);
    transform: rotate(-8deg) translate(-14px, -18px);
  }

  .accessory-branches {
    gap: 14px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .branch-grid article {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .branch-mark {
    grid-row: span 3;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .branch-grid h3 {
    font-size: 20px;
  }

  .accessory-listing-card .shelf-visual {
    grid-row: span 4;
    min-height: 124px;
    border-radius: 18px;
  }

  .accessory-listing-card .shelf-visual::before {
    transform: scale(0.82);
  }

  .accessory-hero-cluster {
    width: min(68vw, 226px);
    height: min(66vw, 222px);
  }

  .hero-charger {
    width: 76px;
    height: 62px;
  }

  .hero-case {
    width: 96px;
  }

  .hero-protector {
    width: 74px;
  }

  .support-section,
  .payment-support {
    gap: 14px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .support-topic-grid,
  .verification-grid,
  .faq-grid {
    gap: 10px;
  }

  .support-topic-grid article,
  .verification-grid article,
  .faq-grid article {
    padding: 16px;
    border-radius: 22px;
  }

  .support-chat-stack {
    width: min(76vw, 294px);
  }

  .support-chat-stack span {
    padding: 14px 16px;
    border-radius: 20px;
    font-size: 14px;
  }

  .support-inline-action {
    padding: 14px;
    border-radius: 22px;
  }

  .cart-layout {
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .empty-cart-panel,
  .cart-pattern-section,
  .cart-summary-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .empty-cart-links,
  .cart-item-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .empty-cart-links a,
  .cart-item-controls span,
  .summary-list div {
    justify-content: center;
  }

  .cart-basket-visual {
    width: min(64vw, 216px);
    height: min(58vw, 198px);
  }

  .cart-basket-visual::before {
    bottom: 28px;
    width: 176px;
    height: 106px;
  }

  .cart-basket-visual::after {
    top: 38px;
    width: 104px;
    height: 58px;
    border-width: 8px;
  }

  .cart-basket-visual span {
    width: 44px;
    height: 58px;
  }

  .checkout-layout {
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .checkout-field-grid {
    gap: 10px;
  }

  .checkout-panel,
  .checkout-summary-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .checkout-sheet-visual {
    width: min(76vw, 250px);
    padding: 18px;
    border-radius: 24px;
  }

  .checkout-sheet-visual span {
    height: 34px;
  }

  .payment-method-guidance,
  .proof-guidance,
  .payment-timeline,
  .keep-ready-section {
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .proof-panel,
  .proof-action-panel,
  .proof-topic-grid article,
  .timeline-grid article {
    padding: 16px;
    border-radius: 22px;
  }

  .proof-topic-grid,
  .timeline-grid {
    gap: 10px;
  }

  .payment-proof-visual {
    width: min(76vw, 250px);
    padding: 18px;
    border-radius: 24px;
  }

  .payment-proof-visual span {
    height: 36px;
  }

  .tracker-lookup-section,
  .status-meaning-section {
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .lookup-panel,
  .tracker-note-panel,
  .tracker-timeline-grid article,
  .status-card-grid article {
    padding: 16px;
    border-radius: 22px;
  }

  .tracker-timeline-grid,
  .status-card-grid {
    gap: 10px;
  }

  .tracker-visual {
    width: min(76vw, 250px);
    padding: 18px;
    border-radius: 24px;
  }

  .tracker-visual span {
    min-height: 34px;
  }

  .policy-section,
  .policy-related-section {
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .policy-card-grid,
  .policy-related-grid {
    gap: 10px;
  }

  .policy-card-grid article,
  .policy-related-grid article,
  .policy-note-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .policy-document-visual {
    width: min(76vw, 248px);
    padding: 18px;
    border-radius: 24px;
  }

  .policy-document-visual span {
    height: 30px;
  }

  .cart-basket-visual span:first-child {
    left: 40px;
    bottom: 84px;
  }

  .cart-basket-visual span:last-child {
    right: 38px;
    bottom: 80px;
  }

  .phone-card-body {
    padding: 14px;
  }

  .phone-listing-card .card-kicker {
    margin: 0;
  }

  .phone-listing-card h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .phone-specs {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .phone-specs div {
    padding: 8px 10px;
  }

  .phone-specs dd {
    font-size: 12px;
  }

  .phone-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phone-card-actions .button {
    min-height: 44px;
  }

  .watch-listing-card .phone-card-actions .button {
    grid-column: 1 / -1;
  }

  .buds-listing-card .phone-card-actions .button {
    grid-column: 1 / -1;
  }

  .accessory-listing-card .phone-card-actions .button {
    grid-column: 1 / -1;
  }

  .phone-card-actions span {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 30px;
  }

  .phone-guidance,
  .phone-accessory-callout {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .phone-guidance-grid,
  .phone-accessory-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .phone-guidance-grid article,
  .phone-accessory-grid article {
    padding: 16px;
    border-radius: 22px;
  }

  .breadcrumb {
    gap: 6px;
    padding-top: 18px;
    font-size: 12px;
  }

  .product-detail-hero,
  .product-spec-section,
  .condition-report,
  .compatible-detail,
  .payment-preview {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .product-gallery-stage {
    min-height: 324px;
    border-radius: 24px;
  }

  .product-phone-mock {
    width: min(44vw, 166px);
  }

  .product-buy-panel {
    padding: 16px;
  }

  .product-buy-panel h1 {
    font-size: 34px;
    line-height: 1.03;
  }

  .product-thumbs,
  .commerce-actions,
  .payment-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-thumbs span,
  .commerce-actions span,
  .payment-preview-grid span {
    justify-content: center;
  }

  .commerce-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .commerce-actions span {
    min-height: 46px;
  }

  .detail-trust-panel {
    gap: 5px;
    padding: 5px;
    border-radius: 27px;
  }

  .detail-trust-panel span {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 10.5px;
  }

  .spec-matrix,
  .condition-grid {
    gap: 10px;
  }

  .spec-matrix {
    grid-template-columns: 1fr;
  }

  .catalogue-board {
    gap: 8px;
    padding: 5px;
    border-radius: 27px;
  }

  .catalogue-group {
    gap: 10px;
    padding: 12px;
    border-radius: 23px;
  }

  .catalogue-group-heading h3 {
    font-size: 21px;
    line-height: 1.12;
  }

  .catalogue-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    padding: 12px;
    border-radius: 20px;
  }

  .catalogue-visual {
    grid-row: span 4;
    height: 96px;
    margin-bottom: 0;
    border-radius: 16px;
  }

  .catalogue-card h4 {
    margin-bottom: 3px;
    font-size: 18px;
  }

  .catalogue-card p:not(.card-kicker) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalogue-card .card-kicker {
    margin-bottom: 2px;
    font-size: 9.5px;
  }

  .phone-silhouette::before {
    width: 42px;
    border-radius: 12px;
  }

  .watch-silhouette::before {
    width: 46px;
    height: 50px;
    border-radius: 17px;
  }

  .buds-silhouette::before {
    width: 21px;
    height: 30px;
    border-radius: 15px 15px 18px 18px;
    box-shadow:
      inset 0 0 0 1px rgba(32, 33, 36, 0.08),
      28px 0 0 #fff,
      28px 0 0 1px rgba(32, 33, 36, 0.08),
      0 14px 24px rgba(32, 33, 36, 0.08);
  }

  .catalogue-tags {
    gap: 5px;
    padding-top: 7px;
  }

  .catalogue-tags span,
  .catalogue-guidance span {
    min-height: 26px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .accessory-catalogue {
    gap: 7px;
  }

  .accessory-catalogue article {
    padding: 11px 12px;
    border-radius: 16px;
  }

  .accessory-catalogue strong {
    font-size: 14px;
  }

  .accessory-catalogue span {
    font-size: 12.5px;
  }

  .catalogue-guidance {
    gap: 5px;
    padding: 4px;
  }

  .detail-pattern {
    gap: 10px;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .detail-shell {
    gap: 8px;
    padding: 5px;
    border-radius: 27px;
  }

  .detail-visual {
    min-height: 278px;
    padding: 18px;
    border-radius: 23px;
  }

  .detail-device {
    width: min(42vw, 150px);
    border-radius: 25px;
  }

  .detail-camera {
    top: 28px;
    height: 32px;
  }

  .detail-camera::before,
  .detail-camera::after {
    top: 7px;
    width: 18px;
    height: 18px;
  }

  .detail-camera::after {
    left: 44px;
  }

  .detail-shine {
    inset: 88px 22px auto;
    height: 106px;
  }

  .detail-copy {
    padding: 15px;
  }

  .detail-copy h2 {
    font-size: 31px;
    line-height: 1.05;
  }

  .detail-copy > p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .detail-trust {
    margin-top: 16px;
  }

  .detail-actions .button {
    width: 100%;
  }

  .detail-panel,
  .detail-support-note {
    padding: 14px;
    border-radius: 20px;
  }

  .detail-panel h3 {
    font-size: 20px;
  }

  .spec-list {
    margin-top: 14px;
  }

  .featured .section-heading {
    margin-bottom: 20px;
  }

  .section-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .feature-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .feature-grid::-webkit-scrollbar { display: none; }
  .feature-grid .product-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: center;
  }

  .product-card {
    min-height: auto;
    padding: 18px;
    border-radius: 26px;
  }

  .card-primary {
    padding: 20px;
    border-radius: 30px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 18px 48px rgba(66, 133, 244, 0.08),
      0 12px 30px rgba(32, 33, 36, 0.06);
  }

  .product-card h3 {
    margin-bottom: 8px;
    font-size: 24px;
  }

  .card-primary h3 {
    font-size: 28px;
  }

  .product-card p:not(.card-kicker) {
    font-size: 15px;
    line-height: 1.58;
  }

  .mini-device,
  .accessory-pair,
  .deal-token,
  .watch-mock,
  .buds-display {
    height: 156px;
    margin-bottom: 20px;
    border-radius: 22px;
  }

  .card-primary .mini-device {
    height: 182px;
    border-radius: 24px;
  }

  .mini-device::before {
    width: 70px;
    border-radius: 16px;
  }

  .card-primary .mini-device::before {
    width: 82px;
    border-radius: 18px;
  }

  .accessory-pair {
    gap: 16px;
  }

  .accessory-pair span {
    width: 23px;
    height: 31px;
  }

  .deal-token span {
    width: 78px;
    height: 78px;
  }

  .watch-mock::before {
    width: 40px;
    height: 104px;
  }

  .watch-mock span {
    width: 78px;
    height: 82px;
    border-radius: 25px;
  }

  .buds-display {
    gap: 16px;
  }

  .buds-display span {
    width: 30px;
    height: 42px;
  }

  .card-notes {
    margin-top: 16px;
    gap: 7px;
  }

  .card-notes span {
    min-height: 32px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .supporting-accessories {
    gap: 5px;
    margin-top: 14px;
    padding: 5px;
  }

  .supporting-accessories span {
    min-height: 32px;
    font-size: 11px;
  }

  .trust-strip {
    gap: 10px;
    padding: 16px;
    border-radius: 26px;
  }

  .trust-intro {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
  }

  .trust-strip .trust-intro h2 {
    color: #fff;
    font-size: 30px;
    line-height: 1.05;
  }

  .trust-item {
    padding: 14px;
  }

  .trust-strip strong {
    font-size: 15px;
  }

  .trust-strip span {
    font-size: 14px;
  }

  .guidance {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .guidance .section-heading {
    margin-bottom: 20px;
  }

  .guidance-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .guidance-card {
    padding: 20px;
    border-radius: 26px;
  }

  .guidance-card h3 {
    margin-bottom: 8px;
    font-size: 25px;
  }

  .guidance-card p {
    font-size: 15px;
    line-height: 1.56;
  }

  .condition-dot {
    width: 15px;
    height: 15px;
    margin-bottom: 22px;
  }

  .guidance-points {
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(227, 224, 215, 0.68);
  }

  .guidance-points li {
    font-size: 13px;
  }

  .product-card,
  .guidance-card,
  .shelf-item {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 10px 28px rgba(32, 33, 36, 0.065);
  }

  .accessories {
    padding-top: 42px;
  }

  .accessories .section-heading {
    margin-bottom: 20px;
  }

  .shelf {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    padding: 6px;
    border-radius: 27px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .shelf::-webkit-scrollbar { display: none; }
  .shelf-item {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
  }
  .shelf-item img {
    width: 100%;
    max-width: 100%;
    height: 150px;
    object-fit: contain;
  }
  .shelf-dots,
  .feature-grid-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .shelf-dots button,
  .feature-grid-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(32,33,36,0.22);
    transition: all 0.25s ease;
    cursor: pointer;
  }
  .shelf-dots button.is-active,
  .feature-grid-dots button.is-active {
    width: 20px;
    background: rgba(32,33,36,0.7);
  }

  .shelf-item {
    padding: 14px;
    border-radius: 24px;
  }

  .shelf-visual {
    height: 132px;
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .shelf-item h3 {
    font-size: 22px;
  }

  .shelf-notes {
    gap: 6px;
    padding-top: 14px;
  }

  .shelf-notes span {
    min-height: 30px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .final-cta {
    gap: 24px;
    margin-top: 10px;
    padding: 24px 18px 18px;
    border-radius: 28px;
  }

  .final-cta h2 {
    font-size: 29px;
    line-height: 1.07;
  }

  .final-cta-copy > p {
    font-size: 15px;
    line-height: 1.58;
  }

  .final-trust {
    gap: 7px;
    margin-top: 17px;
  }

  .final-trust span {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .final-action .button {
    width: 100%;
    min-height: 54px;
  }

  .site-footer {
    gap: 20px;
    padding-top: 24px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }

  .footer-links {
    justify-content: center;
    gap: 7px;
  }

  .footer-links a {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .footer-support {
    padding: 14px;
    border-radius: 20px;
  }

  .footer-support a {
    width: 100%;
    min-height: 44px;
  }
}

@media (min-width: 720px) {
  :root {
    --sticky-offset: 88px;
  }




  .mobile-drawer {
    display: none !important;
  }

  .section-shell {
    width: min(100% - 56px, 1180px);
  }

  .hero {
    gap: 34px;
    padding: 54px 0 52px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    padding: 0 22px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-stage {
    min-height: 450px;
  }

  .device-card-main {
    inset: 42px 38px 76px;
  }

  .device-card-small {
    right: 22px;
    bottom: 22px;
    width: 142px;
    height: 112px;
    border-radius: 26px;
  }

  .phone-mock {
    width: min(55vw, 230px);
    border-radius: 38px;
  }

  .camera-bar {
    top: 42px;
    left: 18px;
    right: 18px;
    height: 46px;
  }

  .camera-dot {
    top: 53px;
    left: 42px;
    width: 24px;
    height: 24px;
    box-shadow: 52px 0 0 #7f8780;
  }

  .phone-shine {
    inset: 120px 28px auto;
    height: 150px;
  }

  .guidance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-primary {
    grid-column: span 2;
  }

  .supporting-accessories {
    max-width: 520px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-intro {
    grid-column: 1 / -1;
  }

  .catalogue-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
    align-items: end;
  }

  .phones-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
    gap: 42px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .phones-hero.phones-hero-no-stage {
    grid-template-columns: 1fr;
  }

  .phones-hero.phones-hero-no-stage .phones-hero-copy {
    max-width: 640px;
  }

  .phones-hero-stage {
    min-height: 460px;
  }

  .filter-board {
    grid-template-columns: repeat(4, 1fr);
  }

  .phone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-listing-card {
    padding: 16px;
  }

  .phone-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-specs div:last-child {
    grid-column: 1 / -1;
  }

  .phone-card-actions {
    align-items: center;
  }

  .phone-guidance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .phone-accessory-callout {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    align-items: start;
  }

  .phone-accessory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .branch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-topic-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .verification-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-inline-action {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .payment-support {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    align-items: center;
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    align-items: start;
  }

  .cart-summary-panel {
    position: sticky;
    top: var(--sticky-offset);
  }

  .cart-item-pattern {
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: start;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    align-items: start;
  }

  .checkout-summary-panel {
    position: sticky;
    top: var(--sticky-offset);
  }

  .checkout-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-field-wide {
    grid-column: 1 / -1;
  }

  .proof-guidance {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    align-items: start;
  }

  .proof-action-panel {
    position: sticky;
    top: var(--sticky-offset);
  }

  .proof-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .tracker-lookup-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    align-items: start;
  }

  .tracker-note-panel {
    position: sticky;
    top: var(--sticky-offset);
  }

  .tracker-timeline-grid,
  .status-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .policy-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .policy-related-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .accessory-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail-hero {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  }

  .product-gallery {
    position: sticky;
    top: var(--sticky-offset);
  }

  .product-gallery-stage {
    min-height: 520px;
  }

  .option-board,
  .product-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-actions {
    align-items: center;
  }

  .spec-matrix {
    grid-template-columns: repeat(3, 1fr);
  }

  .spec-matrix article:last-child {
    grid-column: span 3;
  }

  .condition-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .condition-wide {
    grid-column: 1 / -1;
  }

  .compatible-detail {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    align-items: start;
  }

  .payment-preview {
    grid-template-columns: minmax(0, 0.54fr) minmax(0, 1fr);
    align-items: center;
  }

  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .accessory-catalogue {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-shell {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .detail-copy {
    padding: 34px;
  }

  .detail-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .detail-info-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .detail-support-note {
    grid-column: 1 / -1;
  }

  .blueprint-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
    align-items: end;
  }

  .blueprint-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: initial;
    grid-auto-flow: row;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .blueprint-card {
    min-height: 248px;
  }

  .shelf {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-intro {
    grid-column: 1 / -1;
    padding: 4px 8px 12px;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    padding: 44px;
  }

  .final-action {
    min-width: 244px;
  }

  .site-footer {
    grid-template-columns: minmax(260px, 1fr) minmax(0, auto) minmax(240px, 0.36fr);
    align-items: start;
    gap: 28px;
    padding-top: 26px;
    padding-bottom: 44px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-support {
    justify-self: start;
    max-width: 300px;
  }
}

@media (min-width: 980px) {
  h1 {
    max-width: 700px;
    font-size: clamp(58px, 6.3vw, 76px);
    line-height: 1.02;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
    gap: 52px;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .device-card-main {
    inset: 56px 60px 92px;
  }

  .device-card-small {
    right: 42px;
    bottom: 44px;
  }
}

/* Phase 1I design constitution:
   Theme-aware, premium, calm, Pakistan-aware, and support-led.
   Keep light mode as the default, with an optional graphite dark mode,
   restrained Pixel accents, and purposeful product lighting. No neon noise,
   template ecommerce urgency, excessive glass, fake data, or new wiring. */
html[data-theme="dark"] body {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(66, 133, 244, 0.16), transparent 30%),
    radial-gradient(circle at 88% 7%, rgba(52, 168, 83, 0.1), transparent 26%),
    radial-gradient(circle at 54% 96%, rgba(251, 188, 4, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(19, 24, 30, 0.84), transparent 520px),
    var(--bg);
}

html[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(244, 239, 228, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.025) 1px, transparent 1px);
  opacity: 0.72;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 64%);
}






html[data-theme="dark"] p,
html[data-theme="dark"] .section-copy {
  color: var(--muted);
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .card-kicker {
  color: #9fb0c1;
}

html[data-theme="dark"] .button-primary {
  color: #101418;
  background: #f4efe4;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .button-secondary,


html[data-theme="dark"] .hero-proof,
html[data-theme="dark"] .supporting-accessories,
html[data-theme="dark"] .phone-trust-strip,
html[data-theme="dark"] .shelf {
  border-color: rgba(212, 222, 232, 0.12);
  background: rgba(21, 26, 32, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 16px 42px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .hero-proof span,
html[data-theme="dark"] .supporting-accessories span,
html[data-theme="dark"] .phone-trust-strip span,
html[data-theme="dark"] .card-notes span,
html[data-theme="dark"] .shelf-notes span,
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .footer-support a {
  color: #d8e1e8;
  background: rgba(244, 239, 228, 0.07);
  border-color: rgba(212, 222, 232, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .shelf-dots button,
html[data-theme="dark"] .feature-grid-dots button { background: rgba(255,255,255,0.25); }
html[data-theme="dark"] .shelf-dots button.is-active,
html[data-theme="dark"] .feature-grid-dots button.is-active { background: rgba(255,255,255,0.8); }

html[data-theme="dark"] .hero-stage {
  background:
    radial-gradient(circle at 20% 18%, rgba(66, 133, 244, 0.28), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(251, 188, 4, 0.12), transparent 24%),
    radial-gradient(circle at 58% 86%, rgba(52, 168, 83, 0.12), transparent 32%),
    linear-gradient(145deg, #1c252f, #101419 68%, #0d1014);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.11),
    var(--shadow);
}

html[data-theme="dark"] .phones-hero-stage {
  background:
    radial-gradient(circle at 20% 18%, rgba(66, 133, 244, 0.26), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(52, 168, 83, 0.12), transparent 28%),
    linear-gradient(145deg, #1c252f, #101419 68%, #0d1014);
  border-color: rgba(244, 239, 228, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.11),
    var(--shadow);
}

html[data-theme="dark"] .phones-hero-stage::before {
  border-color: rgba(244, 239, 228, 0.11);
}

html[data-theme="dark"] .hero-stage::before {
  border-color: rgba(244, 239, 228, 0.11);
}

html[data-theme="dark"] .hero-stage::after,
html[data-theme="dark"] .device-card {
  background: rgba(244, 239, 228, 0.07);
}

html[data-theme="dark"] .device-card {
  border-color: rgba(244, 239, 228, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.11),
    0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .phone-mock,
html[data-theme="dark"] .phone-stack,
html[data-theme="dark"] .product-phone-mock,
html[data-theme="dark"] .detail-device,
html[data-theme="dark"] .mini-device::before,
html[data-theme="dark"] .watch-mock span,
html[data-theme="dark"] .buds-display span,
html[data-theme="dark"] .buds-mock span,
html[data-theme="dark"] .accessory-pair span,
html[data-theme="dark"] .case-visual::before,
html[data-theme="dark"] .charger-visual::before,
html[data-theme="dark"] .catalogue-visual::before,
html[data-theme="dark"] .blueprint-icon::before,
html[data-theme="dark"] .phone-card-visual::before,
html[data-theme="dark"] .audio-bud {
  background:
    radial-gradient(circle at 64% 22%, rgba(255, 255, 255, 0.52), transparent 24%),
    linear-gradient(145deg, #f2eadc 0%, #cfd6d9 52%, #8f9ca8 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 24px 54px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .camera-bar {
  background: linear-gradient(90deg, #9aa8b4, #5f6f7e);
}

html[data-theme="dark"] .phone-stack-camera {
  background: linear-gradient(90deg, #9aa8b4, #5f6f7e);
}

html[data-theme="dark"] .detail-camera {
  background: linear-gradient(90deg, #9aa8b4, #5f6f7e);
}

html[data-theme="dark"] .camera-dot {
  background: #0d1117;
  box-shadow: 48px 0 0 #6f7b86;
}

html[data-theme="dark"] .phone-stack-camera::before {
  background: #0d1117;
}

html[data-theme="dark"] .phone-stack-camera::after {
  background: #6f7b86;
}

html[data-theme="dark"] .detail-camera::before {
  background: #0d1117;
}

html[data-theme="dark"] .detail-camera::after {
  background: #6f7b86;
}

html[data-theme="dark"] .product-card,
html[data-theme="dark"] .guidance-card,
html[data-theme="dark"] .catalogue-card,
html[data-theme="dark"] .blueprint-card,
html[data-theme="dark"] .phone-listing-card,
html[data-theme="dark"] .shelf-item {
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.055), rgba(244, 239, 228, 0.02)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    var(--shadow-soft);
}

html[data-theme="dark"] .product-card::after,
html[data-theme="dark"] .guidance-card::after,
html[data-theme="dark"] .shelf-item::after {
  background: linear-gradient(90deg, transparent, rgba(244, 239, 228, 0.12), transparent);
}

html[data-theme="dark"] .catalogue-board,
html[data-theme="dark"] .catalogue-group,
html[data-theme="dark"] .filter-board,
html[data-theme="dark"] .filter-group,
html[data-theme="dark"] .product-gallery,
html[data-theme="dark"] .product-buy-panel,
html[data-theme="dark"] .product-gallery-stage,
html[data-theme="dark"] .option-group,
html[data-theme="dark"] .detail-trust-panel,
html[data-theme="dark"] .payment-preview,
html[data-theme="dark"] .detail-shell,
html[data-theme="dark"] .detail-panel,
html[data-theme="dark"] .detail-support-note,
html[data-theme="dark"] .blueprint-board,
html[data-theme="dark"] .blueprint-note,
html[data-theme="dark"] .spec-list div,
html[data-theme="dark"] .phone-specs div,
html[data-theme="dark"] .product-status-list div,
html[data-theme="dark"] .spec-matrix article,
html[data-theme="dark"] .condition-grid article,
html[data-theme="dark"] .phone-guidance-grid article,
html[data-theme="dark"] .phone-accessory-grid article,
html[data-theme="dark"] .phone-status-card,
html[data-theme="dark"] .branch-grid article,
html[data-theme="dark"] .support-topic-grid article,
html[data-theme="dark"] .verification-grid article,
html[data-theme="dark"] .faq-grid article,
html[data-theme="dark"] .support-inline-action,
html[data-theme="dark"] .empty-cart-panel,
html[data-theme="dark"] .cart-pattern-section,
html[data-theme="dark"] .cart-summary-panel,
html[data-theme="dark"] .cart-item-pattern,
html[data-theme="dark"] .cart-item-fields div,
html[data-theme="dark"] .checkout-panel,
html[data-theme="dark"] .checkout-summary-panel,
html[data-theme="dark"] .proof-panel,
html[data-theme="dark"] .proof-action-panel,
html[data-theme="dark"] .proof-topic-grid article,
html[data-theme="dark"] .timeline-grid article,
html[data-theme="dark"] .lookup-panel,
html[data-theme="dark"] .tracker-note-panel,
html[data-theme="dark"] .tracker-timeline-grid article,
html[data-theme="dark"] .tracker-order-header,
html[data-theme="dark"] .tracker-proof-section,
html[data-theme="dark"] .tracker-items-section,
html[data-theme="dark"] .tracker-totals,
html[data-theme="dark"] .status-card-grid article,
html[data-theme="dark"] .policy-card-grid article,
html[data-theme="dark"] .policy-related-grid article,
html[data-theme="dark"] .policy-note-panel,
html[data-theme="dark"] .accessory-catalogue article {
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.055), rgba(244, 239, 228, 0.02)),
    rgba(21, 26, 32, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    var(--shadow-soft);
}

html[data-theme="dark"] .blueprint-icon,
html[data-theme="dark"] .phone-card-visual,
html[data-theme="dark"] .watch-card-visual,
html[data-theme="dark"] .buds-card-visual,
html[data-theme="dark"] .product-gallery-stage,
html[data-theme="dark"] .detail-visual,
html[data-theme="dark"] .catalogue-visual {
  border-color: rgba(212, 222, 232, 0.12);
  box-shadow: inset 0 1px 0 rgba(244, 239, 228, 0.08);
}

html[data-theme="dark"] .catalogue-card p:not(.card-kicker),
html[data-theme="dark"] .detail-copy > p,
html[data-theme="dark"] .detail-support-note span,
html[data-theme="dark"] .blueprint-note span,
html[data-theme="dark"] .spec-list span,
html[data-theme="dark"] .phone-status-card span,
html[data-theme="dark"] .phone-specs dt,
html[data-theme="dark"] .product-status-list dt,
html[data-theme="dark"] .spec-matrix span,
html[data-theme="dark"] .condition-grid span,
html[data-theme="dark"] .phone-guidance-grid p,
html[data-theme="dark"] .phone-accessory-grid span,
html[data-theme="dark"] .branch-grid p:not(.card-kicker),
html[data-theme="dark"] .support-topic-grid span,
html[data-theme="dark"] .verification-grid li,
html[data-theme="dark"] .faq-grid p,
html[data-theme="dark"] .support-inline-action span,
html[data-theme="dark"] .empty-cart-panel p:not(.eyebrow),
html[data-theme="dark"] .summary-note,
html[data-theme="dark"] .cart-item-fields dt,
html[data-theme="dark"] .summary-list dt,
html[data-theme="dark"] .checkout-field-grid label,
html[data-theme="dark"] .proof-topic-grid span,
html[data-theme="dark"] .timeline-grid span,
html[data-theme="dark"] .proof-action-panel p,
html[data-theme="dark"] .tracker-timeline-grid span,
html[data-theme="dark"] .status-card-grid span,
html[data-theme="dark"] .tracker-note-panel p,
html[data-theme="dark"] .policy-card-grid span,
html[data-theme="dark"] .policy-related-grid span,
html[data-theme="dark"] .policy-note-panel span,
html[data-theme="dark"] .accessory-catalogue span {
  color: var(--muted);
}

html[data-theme="dark"] .catalogue-tags span,
html[data-theme="dark"] .detail-compat-strip span,
html[data-theme="dark"] .detail-trust span,
html[data-theme="dark"] .compat-list span,
html[data-theme="dark"] .field-list span,
html[data-theme="dark"] .filter-chips span,
html[data-theme="dark"] .filter-chips button,
html[data-theme="dark"] .phone-card-actions span,
html[data-theme="dark"] .payment-support-grid span,
html[data-theme="dark"] .empty-cart-links a,
html[data-theme="dark"] .cart-item-controls span,
html[data-theme="dark"] .summary-list div,
html[data-theme="dark"] .product-thumbs span,
html[data-theme="dark"] .commerce-actions span,
html[data-theme="dark"] .payment-preview-grid span,
html[data-theme="dark"] .detail-trust-panel span,
html[data-theme="dark"] .catalogue-guidance span {
  color: #d8e1e8;
  background: rgba(244, 239, 228, 0.07);
  border-color: rgba(212, 222, 232, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .card-primary,
html[data-theme="dark"] .guidance-card:nth-child(1) {
  background:
    radial-gradient(circle at 88% 12%, rgba(66, 133, 244, 0.17), transparent 30%),
    linear-gradient(180deg, rgba(244, 239, 228, 0.06), rgba(244, 239, 228, 0.02)),
    var(--surface);
}

html[data-theme="dark"] .guidance-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 168, 83, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(244, 239, 228, 0.055), rgba(244, 239, 228, 0.02)),
    var(--surface);
}

html[data-theme="dark"] .guidance-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 12%, rgba(234, 67, 53, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(244, 239, 228, 0.055), rgba(244, 239, 228, 0.02)),
    var(--surface);
}

html[data-theme="dark"] .mini-device,
html[data-theme="dark"] .card-blue .mini-device,
html[data-theme="dark"] .detail-visual,
html[data-theme="dark"] .phone-card-visual,
html[data-theme="dark"] .watch-card-blue,
html[data-theme="dark"] .buds-card-blue,
html[data-theme="dark"] .catalogue-visual {
  background:
    radial-gradient(circle at 28% 18%, rgba(104, 158, 255, 0.24), transparent 30%),
    linear-gradient(145deg, #1d3149, #111820);
}

html[data-theme="dark"] .phone-card-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(88, 196, 121, 0.18), transparent 30%),
    linear-gradient(145deg, #1a3028, #101820);
}

html[data-theme="dark"] .phone-card-color-dot {
  border-color: rgba(255, 255, 255, 0.6);
}

html[data-theme="dark"] .watch-card-visual,
html[data-theme="dark"] .watch-card-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(88, 196, 121, 0.18), transparent 30%),
    linear-gradient(145deg, #1a3028, #101820);
}

html[data-theme="dark"] .phone-card-yellow {
  background:
    radial-gradient(circle at 26% 18%, rgba(251, 188, 4, 0.18), transparent 30%),
    linear-gradient(145deg, #342d1b, #141820);
}

html[data-theme="dark"] .watch-card-yellow {
  background:
    radial-gradient(circle at 26% 18%, rgba(251, 188, 4, 0.18), transparent 30%),
    linear-gradient(145deg, #342d1b, #141820);
}

html[data-theme="dark"] .buds-card-visual,
html[data-theme="dark"] .buds-card-yellow {
  background:
    radial-gradient(circle at 26% 18%, rgba(251, 188, 4, 0.18), transparent 30%),
    linear-gradient(145deg, #342d1b, #141820);
}

html[data-theme="dark"] .buds-card-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(88, 196, 121, 0.18), transparent 30%),
    linear-gradient(145deg, #1a3028, #101820);
}

html[data-theme="dark"] .phone-card-red {
  background:
    radial-gradient(circle at 72% 18%, rgba(234, 67, 53, 0.15), transparent 30%),
    linear-gradient(145deg, #3a2020, #141820);
}

html[data-theme="dark"] .watch-card-red {
  background:
    radial-gradient(circle at 72% 18%, rgba(234, 67, 53, 0.15), transparent 30%),
    linear-gradient(145deg, #3a2020, #141820);
}

html[data-theme="dark"] .watch-hero-stage {
  background:
    radial-gradient(circle at 26% 18%, rgba(88, 196, 121, 0.2), transparent 28%),
    radial-gradient(circle at 84% 26%, rgba(104, 158, 255, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .watch-strap {
  background:
    linear-gradient(90deg, rgba(244, 239, 228, 0.08), transparent 30%),
    linear-gradient(180deg, #26352d, #162019);
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 228, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .buds-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(251, 188, 4, 0.18), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(104, 158, 255, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .buds-case-large,
html[data-theme="dark"] .buds-card-visual::before {
  background:
    linear-gradient(180deg, transparent 29%, rgba(244, 239, 228, 0.1) 30%, transparent 31%),
    linear-gradient(145deg, #202a33, #111820);
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 228, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .buds-pair-large span,
html[data-theme="dark"] .buds-card-visual::after {
  background:
    radial-gradient(circle at 34% 24%, rgba(244, 239, 228, 0.14), transparent 28%),
    linear-gradient(145deg, #27313a, #151b22);
}

html[data-theme="dark"] .product-gallery-stage {
  background:
    radial-gradient(circle at 28% 18%, rgba(104, 158, 255, 0.24), transparent 30%),
    linear-gradient(145deg, #1d3149, #111820);
}

html[data-theme="dark"] .color-choice {
  border-color: rgba(212, 222, 232, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .watch-mock,
html[data-theme="dark"] .card-green .accessory-pair,
html[data-theme="dark"] .watch-silhouette,
html[data-theme="dark"] .case-visual {
  background:
    radial-gradient(circle at 72% 18%, rgba(88, 196, 121, 0.18), transparent 30%),
    linear-gradient(145deg, #1a3028, #101820);
}

html[data-theme="dark"] .buds-display,
html[data-theme="dark"] .buds-silhouette,
html[data-theme="dark"] .handsfree-visual {
  background:
    radial-gradient(circle at 26% 18%, rgba(251, 188, 4, 0.18), transparent 30%),
    linear-gradient(145deg, #342d1b, #141820);
}

html[data-theme="dark"] .charger-visual {
  background:
    radial-gradient(circle at 30% 18%, rgba(66, 133, 244, 0.2), transparent 30%),
    linear-gradient(145deg, #1b2c44, #111820);
}

html[data-theme="dark"] .charger-visual-green,
html[data-theme="dark"] .protector-visual-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(88, 196, 121, 0.18), transparent 30%),
    linear-gradient(145deg, #1a3028, #101820);
}

html[data-theme="dark"] .case-visual-blue,
html[data-theme="dark"] .protector-visual {
  background:
    radial-gradient(circle at 30% 18%, rgba(66, 133, 244, 0.2), transparent 30%),
    linear-gradient(145deg, #1b2c44, #111820);
}

html[data-theme="dark"] .accessories-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(104, 158, 255, 0.19), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(88, 196, 121, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .support-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(88, 196, 121, 0.16), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(104, 158, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .cart-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(104, 158, 255, 0.18), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(251, 188, 4, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .checkout-sheet-visual,
html[data-theme="dark"] .checkout-sheet-visual span,
html[data-theme="dark"] .checkout-field-grid input,
html[data-theme="dark"] .checkout-field-grid textarea {
  color: var(--ink);
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.065), rgba(244, 239, 228, 0.025)),
    rgba(21, 26, 32, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .payment-proof-visual,
html[data-theme="dark"] .payment-proof-visual span,
html[data-theme="dark"] .payment-proof-visual strong {
  color: var(--ink);
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.065), rgba(244, 239, 228, 0.025)),
    rgba(21, 26, 32, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .order-tracker-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(251, 188, 4, 0.15), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(104, 158, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .tracker-visual,
html[data-theme="dark"] .tracker-visual span {
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.065), rgba(244, 239, 228, 0.025)),
    rgba(21, 26, 32, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .policy-hero-stage {
  background:
    radial-gradient(circle at 24% 18%, rgba(104, 158, 255, 0.17), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(88, 196, 121, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
}

html[data-theme="dark"] .policy-document-visual,
html[data-theme="dark"] .policy-document-visual span {
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.065), rgba(244, 239, 228, 0.025)),
    rgba(21, 26, 32, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .cart-basket-visual::before,
html[data-theme="dark"] .cart-basket-visual span,
html[data-theme="dark"] .cart-item-visual::before {
  background:
    linear-gradient(145deg, rgba(244, 239, 228, 0.08), rgba(244, 239, 228, 0.025)),
    #151b22;
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .cart-basket-visual::after {
  border-color: rgba(244, 239, 228, 0.18);
}

html[data-theme="dark"] .cart-item-visual {
  background:
    radial-gradient(circle at 28% 18%, rgba(104, 158, 255, 0.24), transparent 30%),
    linear-gradient(145deg, #1d3149, #111820);
}

html[data-theme="dark"] .cart-item-accessory {
  background:
    radial-gradient(circle at 72% 18%, rgba(88, 196, 121, 0.18), transparent 30%),
    linear-gradient(145deg, #1a3028, #101820);
}

html[data-theme="dark"] .support-chat-stack span {
  color: var(--ink);
  border-color: rgba(212, 222, 232, 0.13);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.065), rgba(244, 239, 228, 0.025)),
    rgba(21, 26, 32, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .accessory-hero-cluster span,
html[data-theme="dark"] .branch-mark,
html[data-theme="dark"] .branch-mark::before,
html[data-theme="dark"] .protector-visual::before {
  background:
    linear-gradient(145deg, rgba(244, 239, 228, 0.08), rgba(244, 239, 228, 0.025)),
    #151b22;
  border-color: rgba(212, 222, 232, 0.13);
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 228, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .shelf-visual {
  background:
    radial-gradient(circle at 30% 18%, rgba(244, 239, 228, 0.12), transparent 28%),
    linear-gradient(145deg, #1c252f, var(--surface-soft));
  box-shadow:
    inset 0 0 0 1px rgba(244, 239, 228, 0.09),
    inset 0 -22px 46px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .mini-device::after,
html[data-theme="dark"] .accessory-pair::after,
html[data-theme="dark"] .deal-token::after,
html[data-theme="dark"] .watch-mock::after,
html[data-theme="dark"] .buds-display::after,
html[data-theme="dark"] .shelf-visual::after {
  background: rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .guidance-points li {
  color: #c9d4dd;
}

html[data-theme="dark"] .guidance-points {
  border-top-color: rgba(212, 222, 232, 0.13);
}

html[data-theme="dark"] .condition-dot {
  box-shadow: 0 0 0 8px rgba(244, 239, 228, 0.045);
}

html[data-theme="dark"] .trust-strip,
html[data-theme="dark"] .final-cta {
  background:
    radial-gradient(circle at 16% 8%, rgba(66, 133, 244, 0.22), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(52, 168, 83, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(244, 239, 228, 0.04), transparent 34%),
    #11161c;
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 228, 0.09),
    var(--shadow);
}

html[data-theme="dark"] .trust-strip .trust-intro .eyebrow,
html[data-theme="dark"] .final-cta .eyebrow,
html[data-theme="dark"] .final-cta p {
  color: rgba(244, 239, 228, 0.7);
}

html[data-theme="dark"] .trust-strip span,
html[data-theme="dark"] .final-action span {
  color: rgba(244, 239, 228, 0.64);
}

html[data-theme="dark"] .final-cta .button-primary {
  color: #101418;
  background: #f4efe4;
  border-color: rgba(244, 239, 228, 0.32);
}

html[data-theme="dark"] .footer-support a {
  color: #0b0d10;
  background: #25d366;
  border-color: #25d366;
}

html[data-theme="dark"] .final-trust span,
html[data-theme="dark"] .final-action,
html[data-theme="dark"] .trust-item,
html[data-theme="dark"] .footer-support {
  border-color: rgba(212, 222, 232, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

html[data-theme="dark"] .accessories {
  background:
    radial-gradient(circle at 84% 7%, rgba(251, 188, 4, 0.08), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(66, 133, 244, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(244, 239, 228, 0.035), rgba(244, 239, 228, 0.008));
}

html[data-theme="dark"] .site-footer {
  color: var(--muted);
}


html[data-theme="dark"] .footer-support strong {
  color: var(--ink);
}

html[data-theme="dark"] .footer-support span,
html[data-theme="dark"] .footer-brand p,
html[data-theme="dark"] .footer-trust-info {
  color: var(--muted);
}

html[data-theme="dark"] .filter-chips button[aria-pressed="true"] {
  color: #101418;
  background: #f4efe4;
  border-color: rgba(244, 239, 228, 0.32);
}

/* Lightbox */
.pp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.pp-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.pp-lightbox img {
  max-width: min(90vw, 480px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.2s ease;
  cursor: default;
}
.pp-lightbox.open img {
  transform: scale(1);
}
.pp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pp-lightbox-close:hover {
  background: rgba(255,255,255,0.28);
}

/* ─── Cart badge ──────────────────────────────────────────────────────────── */

@keyframes badge-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

[data-cart-badge] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  margin-left: 5px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  vertical-align: middle;
  border: 1.5px solid white;
  transition: transform 0.2s ease;
}

html[data-theme="dark"] [data-cart-badge] {
  border-color: #0b0d10;
}

[data-cart-badge].pop {
  animation: badge-pop 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-cart-badge][hidden] {
  display: none;
}

/* ─── Add-to-cart button ──────────────────────────────────────────────────── */

.cart-add-btn {
  flex: 1 1 auto;
}

.cart-add-btn:disabled {
  opacity: 0.72;
  cursor: default;
}

/* ─── Cart page — item controls ──────────────────────────────────────────── */

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line, #e3e0d7);
  background: var(--surface, #fff);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink, #172033);
  line-height: 1;
  transition: background 150ms ease;
}

.cart-qty-btn:hover { background: var(--surface-soft, #f8fafc); }
.cart-qty-btn:active { background: var(--line, #dfe4ec); }

.cart-qty-value {
  font-size: 15px;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
  color: var(--ink, #172033);
}

.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line, #e3e0d7);
  border-radius: 999px;
  background: var(--surface, #fff);
  font-size: 12px;
  font-weight: 650;
  color: var(--ink, #172033);
  cursor: pointer;
  transition: background 140ms ease;
}

.cart-remove-btn:hover { background: var(--surface-soft, #f2f4ee); }

/* ─── Cart live layout ────────────────────────────────────────────────────── */

.cart-live-empty {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: var(--surface, #fff);
  box-shadow: 0 2px 6px rgba(32, 33, 36, 0.035),
    0 12px 32px rgba(32, 33, 36, 0.045);
  grid-column: 1 / -1;
}

.cart-live-empty h2 { margin-bottom: 0; font-size: 28px; }

.cart-live-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.cart-live-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: var(--surface, #fff);
  box-shadow: 0 2px 6px rgba(32, 33, 36, 0.035),
    0 12px 32px rgba(32, 33, 36, 0.045);
}

.cart-live-item-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--wash-blue, #f0f4ff);
  flex-shrink: 0;
  padding: 6px;
}

.cart-live-item-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--wash-blue, #f0f4ff);
  flex-shrink: 0;
}

.cart-live-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-live-item-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted, rgba(23, 32, 51, 0.5));
  margin: 0;
}

.cart-live-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink, #172033);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-live-item-meta {
  font-size: 13px;
  color: var(--muted, rgba(23, 32, 51, 0.55));
  margin: 0;
}

.cart-live-item-price {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink, #172033);
  margin: 4px 0 0;
}

.cart-live-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.cart-live-summary {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: var(--surface, #fff);
  box-shadow: 0 2px 6px rgba(32, 33, 36, 0.035),
    0 12px 32px rgba(32, 33, 36, 0.045);
  align-self: start;
}

.cart-live-total-row {
  font-weight: 750;
  border-top: 1.5px solid var(--border, rgba(23, 32, 51, 0.1));
  padding-top: 10px;
  margin-top: 4px;
}

.cart-continue-link {
  font-size: 13px;
  color: var(--muted, rgba(23, 32, 51, 0.55));
  text-align: center;
  text-decoration: none;
}

.cart-continue-link:hover { text-decoration: underline; }

@media (min-width: 880px) {
  .cart-live-summary { position: sticky; top: var(--sticky-offset, 80px); }
}

@media (max-width: 600px) {
  .cart-live-item { flex-wrap: wrap; }
  .cart-live-item-actions { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

/* ─── Cart item image ─────────────────────────────────────────────────────── */

.cart-item-visual.has-image {
  background: var(--wash-blue, #f0f4ff);
  padding: 8px;
}

.cart-item-visual.has-image::before {
  display: none;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* ─── Cart checkout button ────────────────────────────────────────────────── */

.cart-checkout-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  text-decoration: none;
}

/* ─── Checkout live form ──────────────────────────────────────────────────── */

.checkout-live-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #172033);
}

.checkout-live-label input,
.checkout-live-label textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink, #172033);
  background: var(--surface, #fff);
  border: 1.5px solid var(--border, rgba(23, 32, 51, 0.14));
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.checkout-live-label input:focus,
.checkout-live-label textarea:focus {
  border-color: var(--accent, #3d6bff);
}

.checkout-live-required {
  color: #e53935;
  margin-left: 2px;
}

.checkout-live-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-faint, rgba(23, 32, 51, 0.45));
  margin-left: 4px;
}

.checkout-live-err {
  font-size: 13px;
  color: #e53935;
  font-weight: 500;
}

.checkout-file-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.checkout-file-trigger {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #172033);
  background: var(--surface, #fff);
  border: 1.5px solid var(--border, rgba(23, 32, 51, 0.14));
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.checkout-file-trigger:hover {
  border-color: var(--accent, #3d6bff);
}

.checkout-file-input:focus-visible ~ .checkout-file-trigger {
  border-color: var(--accent, #3d6bff);
  box-shadow: 0 0 0 3px rgba(61, 107, 255, 0.15);
}

.checkout-file-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-file-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border, rgba(23, 32, 51, 0.14));
  background: var(--surface-soft);
}

.checkout-file-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-file-thumb[hidden] {
  display: none;
}

.checkout-file-pdf-icon {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.checkout-file-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1.5px solid var(--border, rgba(23, 32, 51, 0.14));
  border-radius: 999px;
  background: var(--surface, #fff);
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.checkout-file-remove:hover {
  background: var(--wash-blue);
  color: var(--ink);
}

.checkout-live-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.checkout-live-method-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1.5px solid var(--border, rgba(23, 32, 51, 0.14));
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 14px;
  color: var(--ink, #172033);
  position: relative;
}

.checkout-live-method-option:has(input:checked) {
  border-color: var(--accent, #3d6bff);
  background: var(--wash-blue, #f0f4ff);
}

.checkout-live-method-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkout-live-method-option strong {
  font-size: 15px;
  font-weight: 700;
}

.checkout-live-method-option span {
  font-size: 13px;
  color: var(--ink-faint, rgba(23, 32, 51, 0.55));
}

.checkout-live-instructions {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink, #172033);
  background: var(--wash-blue, #f0f4ff);
  border-radius: 10px;
  padding: 12px 16px;
  white-space: pre-line;
}

.checkout-live-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 16px;
  padding: 14px 24px;
}

.checkout-live-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-otp-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.checkout-otp-resend {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, #3d6bff);
  text-decoration: underline;
  cursor: pointer;
}

.checkout-otp-resend:disabled {
  color: var(--ink-faint, rgba(23, 32, 51, 0.45));
  text-decoration: none;
  cursor: not-allowed;
}

.checkout-live-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.checkout-summary-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkout-summary-item-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--wash-blue, #f0f4ff);
  flex-shrink: 0;
  padding: 4px;
}

.checkout-summary-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.checkout-summary-item-title {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink, #172033);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary-item-meta {
  font-size: 12px;
  color: var(--ink-faint, rgba(23, 32, 51, 0.55));
}

.checkout-live-totals .checkout-live-total-row {
  font-weight: 750;
  font-size: 16px;
  border-top: 1.5px solid var(--border, rgba(23, 32, 51, 0.12));
  padding-top: 10px;
  margin-top: 4px;
}

.checkout-live-sidebar {
  top: 24px;
  position: sticky;
  align-self: flex-start;
}

.checkout-live-success {
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #1b5e20;
  margin-bottom: 8px;
}

.checkout-live-error {
  background: #fde8e8;
  border: 1.5px solid #f4aaaa;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  color: #b71c1c;
  margin-bottom: 8px;
}

@media (max-width: 719px) {
  .checkout-live-method-grid {
    grid-template-columns: 1fr;
  }

  .checkout-live-sidebar {
    position: static;
  }
}

/* ─── Order tracker live ──────────────────────────────────────────────────── */

.tracker-live-section { padding: 32px 16px 64px; max-width: 680px; margin: 0 auto; }
.tracker-loading { text-align: center; padding: 48px; color: var(--muted); }
.tracker-error { text-align: center; padding: 48px 24px; }
.tracker-error p { color: var(--muted); margin: 8px 0 24px; }

.tracker-order-header {
  margin-bottom: 28px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 16px;
}
.tracker-order-number { font-size: 13px; color: var(--muted); margin: 0 0 4px; }
.tracker-order-number strong { color: var(--ink); font-family: monospace; font-size: 15px; }
.tracker-order-date { font-size: 12px; color: var(--muted); margin: 4px 0 0; }

/* Progress stepper */
.tracker-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  min-width: 60px;
}
.tracker-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 2px;
  background: var(--admin-line, #dfe4ec);
  z-index: 0;
}
.tracker-step.done::after { background: #16794a; }
.tracker-step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--admin-line, #dfe4ec);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  color: var(--muted);
  position: relative; z-index: 1;
  flex: 0 0 auto;
}
.tracker-step.done .tracker-step-dot { background: #16794a; border-color: #16794a; color: #fff; }
.tracker-step.current .tracker-step-dot {
  border-color: #2563eb;
  color: #2563eb;
  animation: tracker-pulse 2s ease infinite;
}
@keyframes tracker-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08); }
}
.tracker-step-label {
  font-size: 10px; font-weight: 700;
  text-align: center; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.3;
}
.tracker-step.done .tracker-step-label    { color: #16794a; }
.tracker-step.current .tracker-step-label { color: #2563eb; }

/* Status message */
.tracker-status-msg {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  background: var(--wash-blue);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--ink);
}
.tracker-status-msg.success { background: var(--wash-green); border-color: rgba(22, 121, 74, 0.2); }

/* Proof upload */
.tracker-proof-section {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 16px;
  margin-bottom: 20px;
}
.tracker-proof-heading { font-size: 14px; font-weight: 800; margin: 0 0 6px; }
.tracker-proof-hint { font-size: 12px; color: var(--muted); margin: 0 0 12px; }
.tracker-proof-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tracker-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tracker-file-trigger {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 140ms ease;
}
.tracker-file-trigger:hover { border-color: #2563eb; }
.tracker-file-input:focus-visible ~ .tracker-file-trigger {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.tracker-file-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tracker-file-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(227, 224, 215, 0.72);
  background: var(--surface-soft);
}
.tracker-file-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tracker-file-thumb[hidden] {
  display: none;
}
.tracker-file-pdf-icon {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.tracker-file-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.tracker-file-remove:hover { background: var(--wash-blue); color: var(--ink); }
.tracker-proof-upload-btn {
  min-height: 38px; padding: 8px 16px;
  font-size: 13px; font-weight: 700;
  background: #2563eb; color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  transition: background 140ms ease;
}
.tracker-proof-upload-btn:hover { background: #1d4ed8; }
.tracker-proof-upload-btn:disabled { opacity: 0.65; cursor: wait; }
.tracker-proof-status { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* Order items */
.tracker-items-section {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 16px;
  margin-bottom: 20px;
}
.tracker-items-heading { font-size: 14px; font-weight: 800; margin: 0 0 12px; }
.tracker-item-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(227, 224, 215, 0.5);
  font-size: 13px;
}
.tracker-item-row:last-child { border-bottom: none; }
.tracker-item-name { font-weight: 700; }
.tracker-item-meta { color: var(--muted); font-size: 11px; margin-top: 2px; }
.tracker-item-price { font-weight: 700; text-align: right; flex-shrink: 0; padding-left: 8px; }

/* Totals */
.tracker-totals {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 224, 215, 0.72);
  border-radius: 16px;
  margin-bottom: 20px;
}
.tracker-totals dl { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.tracker-totals dl div { display: flex; justify-content: space-between; font-size: 13px; }
.tracker-totals dt { color: var(--muted); }
.tracker-totals dd { margin: 0; font-weight: 700; }
.tracker-total-row dt,
.tracker-total-row dd { font-size: 15px; font-weight: 800; color: var(--ink); }

/* WhatsApp CTA */
.tracker-wa-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}
.tracker-wa-cta:hover { background: #1db954; }

.tracker-last-updated { text-align: center; font-size: 11px; color: var(--muted); margin-top: 12px; }

/* ─── Tracker search ──────────────────────────────────────────────────────── */
.tracker-search-wrap {
  margin-bottom: 32px;
  padding: 24px;
  border: 1px solid var(--border, rgba(23,32,51,0.1));
  border-radius: 16px;
  background: var(--surface-soft, #f8fafc);
}
.tracker-search-wrap h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink, #172033);
}
.tracker-search-wrap p {
  font-size: 13px;
  color: var(--muted, rgba(23,32,51,0.55));
  margin: 0 0 14px;
}
.tracker-search-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tracker-search-input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 11px 14px;
  border: 1.5px solid var(--border, rgba(23,32,51,0.14));
  border-radius: 10px;
  font-size: 14px;
  font-family: monospace;
  color: var(--ink, #172033);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.tracker-search-input:focus { border-color: var(--accent, #3d6bff); }
html[data-theme="dark"] .tracker-search-wrap { background: var(--surface-2, #1e2028); border-color: rgba(255,255,255,0.1); }
html[data-theme="dark"] .tracker-search-input { background: #13151a; border-color: rgba(255,255,255,0.12); color: #e8eaed; }
html[data-theme="dark"] .tracker-search-wrap h2 { color: #e8eaed; }

@media (max-width: 600px) {
  .tracker-stepper { gap: 0; }
  .tracker-step-label { font-size: 9px; }
  .tracker-step-dot { width: 24px; height: 24px; font-size: 10px; }
}

/* ─── Navbar logo image ───────────────────────────────────────────────────── */

/* ─── Mobile hamburger button ────────────────────────────────────────────── */






/* ─── Mobile drawer ──────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
}

.mobile-drawer.open .mobile-drawer-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(80vw, 320px);
  height: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

html[data-theme="dark"] .mobile-drawer-panel {
  background: rgba(11, 13, 16, 0.97);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .mobile-drawer-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.drawer-logo { height: 28px; }
.drawer-logo-light { display: block; }
.drawer-logo-dark { display: none; }
html[data-theme="dark"] .drawer-logo-light { display: none; }
html[data-theme="dark"] .drawer-logo-dark { display: block; }

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.drawer-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .drawer-close {
  color: #f0f0f0;
}

html[data-theme="dark"] .drawer-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.drawer-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}

.drawer-links li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-drawer.open .drawer-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.open .drawer-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.open .drawer-links li:nth-child(2) { transition-delay: 0.10s; }
.mobile-drawer.open .drawer-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-drawer.open .drawer-links li:nth-child(4) { transition-delay: 0.20s; }

.drawer-links a {
  display: block;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}

.drawer-links a:hover {
  background: rgba(66, 133, 244, 0.06);
  color: #4285f4;
  border-left-color: #4285f4;
}

.drawer-links a[aria-current="page"] {
  color: #4285f4;
  border-left-color: #4285f4;
  background: rgba(66, 133, 244, 0.06);
  font-weight: 600;
}

html[data-theme="dark"] .drawer-links a {
  color: #f0f0f0;
}

html[data-theme="dark"] .drawer-links a:hover,
html[data-theme="dark"] .drawer-links a[aria-current="page"] {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .drawer-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.drawer-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.drawer-cart-btn:hover {
  opacity: 0.9;
}

/* ─── Floating pill navbar — nav-actions + toggle ────────────────────────── */






/* ─── NAVBAR OVERRIDE — pill header ──────────────────────────────────────── */
body { padding-top: 88px !important; }
@media (max-width: 719px) { body { padding-top: 76px; } }

/* ===== NAVBAR — SINGLE SOURCE OF TRUTH ===== */
.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1100px;
  min-height: 64px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  gap: 24px;
}
html[data-theme="dark"] .site-header {
  background: #13151a;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4),
              0 -1px 0 0 rgba(59,130,246,0.3) inset;
}
.wordmark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img { height: 36px; width: auto; max-width: 200px; display: block; }
.nav-logo-dark { display: none; }
html[data-theme="dark"] .nav-logo-light { display: none; }
html[data-theme="dark"] .nav-logo-dark { display: block; }
.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}
html[data-theme="dark"] .main-nav a { color: #e8eaed; }
.main-nav a:hover { color: #4285f4; }
.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
html[data-theme="dark"] .ham-line { background: #e8eaed; }
.nav-hamburger[aria-expanded="true"] .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.theme-toggle-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #f5f5f5;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
}
html[data-theme="dark"] .theme-toggle-pill {
  background: #1e2028;
  border-color: rgba(255,255,255,0.12);
  color: #e8eaed;
}

html[data-theme="dark"] .filter-status {
  color: var(--muted);
}

html[data-theme="dark"] .breadcrumb {
  color: var(--muted);
}

@media (max-width: 719px) {
  .site-header {
    top: 8px;
    width: calc(100% - 24px);
    min-height: 56px;
    border-radius: 16px;
    padding: 0 14px;
  }
  .main-nav { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 26px; }
}
@media (min-width: 720px) {
  .nav-hamburger { display: none; }
}
body { padding-top: 88px; }
/* ===== END NAVBAR ===== */
