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

:root {
  --bg: #000000;
  --bg2: #050505;
  --bg3: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.02);
  --surface-border: rgba(255, 255, 255, 0.05);
  --surface-border-hover: rgba(255, 255, 255, 0.15);
  --border: #111111;
  --border2: #222222;
  --text: #ffffff;
  --dim: #a0a0a0;
  --muted: #666666;
  --accent: #ff2a85;
  --accent-hover: #ff4d9a;
  --accent-glow: rgba(255, 42, 133, 0.2);
  --font: 'Inter', system-ui, sans-serif;
  --font2: 'Space Grotesk', system-ui, sans-serif;
  --max: 1280px;
  --radius: 12px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.container-narrow {
  max-width: 760px;
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(10px);
}

/* Base Lines to look like Trustware grid */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Typography */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.headline {
  font-family: var(--font);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.headline strong {
  font-weight: 600;
  color: #fff;
}

.link-accent {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.3s;
}

.link-accent:hover {
  opacity: 0.7;
}

/* Buttons */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  background: var(--accent);
  color: #000;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.5px;
}

.btn-main:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-main .btn-arrow {
  transition: transform 0.3s;
}

.btn-main:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--surface-border-hover);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

/* Ambient Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  top: -200px;
  right: -200px;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 70%);
  bottom: -100px;
  left: -200px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 30s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.08); }
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Placeholder Shimmer */
.ph-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ph-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--muted);
  z-index: 1;
}

.ph-hint {
  font-size: 10px;
  color: var(--border2);
  z-index: 1;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

.nav.scrolled {
  border-bottom-color: var(--surface-border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--text);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.logo-text {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.03);
  padding: 8px 32px;
  border-radius: 100px;
  border: 1px solid var(--surface-border);
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--dim);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-link {
  padding: 16px 0;
  font-size: 16px;
  color: var(--dim);
  border-bottom: 1px solid var(--surface-border);
}

.mobile-link.accent {
  color: var(--accent);
  border: none;
}

@media(max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
  z-index: 1;
}

.hero-visual-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  z-index: -2;
  opacity: 0.6;
  pointer-events: none;
}

.hero-visual-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--surface-border);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--accent); }
  50% { opacity: 0.4; box-shadow: 0 0 2px transparent; }
}

.hero-h1 {
  font-family: var(--font);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 32px;
  max-width: 1100px;
  color: #fff;
}

@keyframes colorCycle {
  0% { color: #ffffff; }
  50% { color: var(--accent); }
  100% { color: #ffffff; }
}

.animate-color {
  animation: colorCycle 4s infinite ease-in-out;
}

.hero-p {
  font-size: 20px;
  color: var(--dim);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(10px);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.s-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.s-num {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
}

.s-unit {
  font-size: 24px;
  color: var(--dim);
  font-weight: 300;
}

.s-label {
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.5px;
}

@media(max-width: 768px) {
  .stats-row {
    justify-content: grid;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}

/* ===== WHY SECTION (BENTO) ===== */
.split-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.sh-right {
  font-size: 18px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(20px);
}

.bento-card:hover {
  border-color: var(--surface-border-hover);
  background: rgba(255,255,255,0.03);
}

.bento-lg {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 40px;
}

.bento-lg h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.bento-lg p {
  font-size: 18px;
  max-width: 600px;
}

.bento-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent 70%);
  pointer-events: none;
}

.bento-icon {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 24px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--surface-border);
  align-items: center;
  justify-content: center;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #fff;
}

.bento-card p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

@media(max-width: 900px) {
  .split-header { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; text-align: left; align-items: flex-start; padding: 40px; }
}

/* ===== PRODUCTS ===== */
.center-header {
  text-align: center;
  margin-bottom: 80px;
}

.center-sub {
  font-size: 18px;
  color: var(--dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}

.product-card:hover {
  border-color: rgba(255, 42, 133, 0.4);
  box-shadow: 0 20px 80px rgba(255, 42, 133, 0.05);
}

.product-card.featured {
  border-color: var(--surface-border-hover);
  background: rgba(255,255,255,0.03);
}

.pc-img-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--surface-border);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-placeholder {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: rgba(255,255,255,0.02);
}

.pc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent);
  color: #000;
}

.pc-body {
  padding: 32px;
}

.pc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.pc-top h3 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.pc-price {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 300;
  color: var(--dim);
}

.pc-body > p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
}

.pc-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-ship {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

@media(max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
}

.refund-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--surface-border);
  font-size: 15px;
  color: var(--dim);
  justify-content: center;
  font-weight: 300;
}

/* ===== HOW IT WORKS ===== */
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.step-row.reverse {
  flex-direction: row-reverse;
}

.step-image-col {
  flex: 1;
}

.step-img-new {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background: #000;
}

.step-text-col {
  flex: 1;
}

.step-text-col h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff;
}

.step-text-col p {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

.step-number-new {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.step-text-col.text-right {
  text-align: right;
}

.step-number-new.right-align {
  margin-left: auto;
  margin-right: 0;
}

@media(max-width: 768px) {
  .step-row, .step-row.reverse {
    flex-direction: column;
    text-align: left;
    gap: 32px;
  }
  .step-text-col.text-right {
    text-align: left;
  }
  .step-number-new.right-align {
    margin-left: 0;
  }
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-left p {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.6;
  margin-top: 16px;
  font-weight: 300;
}

.faq-item {
  border-bottom: 1px solid var(--surface-border);
}

.faq-item summary {
  padding: 28px 0;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  transition: opacity 0.3s;
}

.faq-item summary:hover {
  opacity: 0.8;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--dim);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

@media(max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== CTA ===== */
.cta-card {
  background: var(--bg2);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 42, 133, 0.05), transparent 60%);
  pointer-events: none;
}

.cta-card p {
  font-size: 18px;
  color: var(--dim);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.cta-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid var(--surface-border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.3s;
}

.cta-form input:focus {
  border-color: var(--accent);
}

.cta-fine {
  font-size: 13px;
  color: var(--muted);
}

@media(max-width: 600px) {
  .cta-form { flex-direction: column; }
  .cta-card { padding: 60px 24px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--surface-border);
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--dim);
  margin-top: 24px;
  max-width: 300px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--dim);
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--surface-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--muted);
}

.footer-disc {
  max-width: 600px;
  line-height: 1.6;
  text-align: right;
}

@media(max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disc { text-align: center; }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== BAND SELECTOR ===== */
.pc-style-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px !important;
}

.band-selector {
  margin: 16px 0 24px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
}

.band-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}

.band-label-sub {
  color: var(--accent);
  font-weight: 500;
  display: none;
}

.band-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.band-option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--surface-border);
  font-size: 13px;
  font-weight: 400;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}

.band-option input[type="radio"] {
  display: none;
}

.band-option:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.band-option.active {
  border-color: var(--accent);
  background: rgba(255, 42, 133, 0.08);
  color: var(--text);
}

.band-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.band-none {
  background: transparent;
  border: 1px dashed var(--muted);
}

.band-white {
  background: #f0f0f0;
  border: 1px solid rgba(255,255,255,0.3);
}

.band-black {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
}

.band-opt-price {
  font-size: 11px;
  color: var(--muted);
  margin-left: 2px;
}

.products-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 900px) {
  .products-grid--2 { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

/* ===== COLOR SELECTOR ===== */
.color-selector {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.color-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.color-selected {
  color: var(--fg);
  font-weight: 600;
}
.color-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.color-swatch:hover {
  transform: scale(1.15);
}
.color-swatch.active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

/* ===== BAND ADD-ON TOGGLE ===== */
.band-toggle-row {
  margin-bottom: 0.75rem;
}
.band-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}
.band-toggle-check {
  display: none;
}
.band-toggle-ui {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.band-toggle-ui::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 0.2s ease, background 0.2s ease;
}
.band-toggle-check:checked + .band-toggle-ui {
  background: var(--accent);
  border-color: var(--accent);
}
.band-toggle-check:checked + .band-toggle-ui::after {
  transform: translateX(16px);
  background: #000;
}
.band-toggle-text {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.band-toggle-check:checked ~ .band-toggle-text {
  color: var(--fg);
}
.band-toggle-price {
  color: var(--accent);
  font-weight: 600;
}

/* ===== SECTION DIVIDER LABEL ===== */
.section-divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 24px;
}

.section-divider-label::before,
.section-divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--surface-border);
}

.section-divider-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
