/* ── URGENCY TOP BAR ── */
.urgency-bar {
  background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
  color: #fef2f2;
  padding: 0.65rem 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(153, 27, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}
.urgency-bar.post-launch {
  background: rgba(10, 16, 32, 0.95);
  border-bottom: 1px solid var(--white-12);
  box-shadow: none;
  color: var(--white-90);
}
.countdown-timer {
  font-family: var(--font-display);
  font-weight: 800;
  color: #ffffff;
  background: rgba(0,0,0,0.4);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* ── PAGE LAYOUT ── */
.store-page {
  padding-top: calc(var(--header-h) + 4.5rem);
  padding-bottom: 7rem;
  min-height: 100vh;
  position: relative;
}

/* Breadcrumbs */
.back-btn-container {
  margin-bottom: 2rem;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
  transition: color 0.25s ease, transform 0.25s ease;
}
.back-btn:hover {
  color: var(--white);
  transform: translateX(-4px);
}
.back-btn svg { width: 16px; height: 16px; }

/* ── HERO SECTION ── */
.sales-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 960px) {
  .sales-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── GALLERY SHOWCASE ── */
.gallery-showcase {
  position: relative;
  background: rgba(10, 16, 32, 0.6);
  border: 1px solid var(--white-12);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(125, 211, 252, 0.04);
}
.main-artwork-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--white-12);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
  background: #05080f;
}
.main-artwork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.artwork-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(5, 8, 15, 0.85);
  border: 1px solid var(--ice-dim);
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* Thumbnails */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.thumb-btn {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--white-12);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.thumb-btn:hover {
  border-color: var(--ice);
  transform: translateY(-2px);
}
.thumb-btn.active {
  border-color: var(--ice);
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.3);
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(5, 8, 15, 0.85);
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 0.2rem 0;
}

/* ── SALES COPY ── */
.sales-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.sales-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.sales-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--ice);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Quote Box */
.vault-quote-box {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.06) 0%, rgba(10, 16, 32, 0.8) 100%);
  border-left: 3px solid var(--ice);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.vault-quote-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white-90);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.vault-quote-author {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  font-weight: 600;
}

.hero-body-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white-80);
  margin-bottom: 1.5rem;
}

/* Hero Summary & CTA Box */
.hero-offer-box {
  background: rgba(10, 16, 32, 0.7);
  border: 1px solid var(--white-12);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-offer-summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.hero-offer-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white-70);
  line-height: 1.45;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-btn {
  padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-cta-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.4);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
  flex: 1.2;
  min-width: 220px;
}
.hero-cta-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
}
.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ice);
  border: 1px solid var(--white-12);
  flex: 1;
  min-width: 200px;
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ice);
  color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-btn {
    width: 100%;
  }
}

/* ── UNRELEASED HIGHLIGHT CALLOUT BOX ── */
.unreleased-callout-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(5, 8, 15, 0.95) 100%);
  border: 1px solid var(--ice-dim);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 3.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.ucb-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 0.5rem;
}
.ucb-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ucb-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ice);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── TRACK BREAKDOWN ── */
.tracks-breakdown {
  background: rgba(5, 8, 15, 0.8);
  border: 1px solid var(--white-12);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 4rem;
}
.tb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--white-12);
  padding-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tb-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.tb-count {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.tb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .tb-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.tb-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tb-col-public { color: var(--white-50); }
.tb-col-exclusive { color: var(--ice); }

.track-mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.track-mini-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tmi-public { color: var(--white-70); }
.tmi-unreleased { color: var(--white); font-weight: 600; }
.tmi-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ice);
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.2);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ── PRICING CARDS ── */
.pricing-section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
}
.pricing-section-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white-50);
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
.pricing-grid.phase-sale {
  grid-template-columns: 1fr 1fr;
}
.pricing-grid.phase-postsale {
  grid-template-columns: 1fr 1fr 1.1fr;
}
@media (max-width: 960px) {
  .pricing-grid.phase-sale, .pricing-grid.phase-postsale { grid-template-columns: 1fr; }
}

.pricing-card {
  background: rgba(10, 16, 32, 0.7);
  border: 1px solid var(--white-12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--ice);
  box-shadow: 0 20px 40px rgba(125, 211, 252, 0.08);
}
.pricing-card[hidden] {
  display: none !important;
}

/* Featured Card */
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 16, 32, 0.9) 100%);
  border: 2px solid var(--ice);
  box-shadow: 0 15px 40px rgba(125, 211, 252, 0.12);
}
.pricing-card.featured-vault {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 2px solid #38bdf8;
  box-shadow: 0 15px 45px rgba(56, 189, 248, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1.25rem;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
  white-space: nowrap;
}
.pricing-badge-promo {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}
.pricing-badge-vault {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.pc-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--white-12);
}
.pc-type {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.5rem;
}
.pc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pc-subdesc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white-70);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.pc-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pc-old-price {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--white-40);
  text-decoration: line-through;
}

.pc-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.pc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--white-90);
  line-height: 1.45;
}
.pc-check {
  color: var(--ice);
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1;
}

.pc-footnote {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--white-50);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  border-top: 1px dashed var(--white-12);
  padding-top: 0.85rem;
}

.select-btn {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}
.select-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.4);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}
.select-btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
}
.select-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid var(--white-12);
}
.select-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ice);
  transform: translateY(-2px);
}

/* ── DIGITAL VAULT SHOWCASE SECTION ── */
.digital-vault-showcase-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 3.5rem 0;
  background: rgba(8, 14, 28, 0.4);
  border-top: 1px solid var(--white-12);
  border-bottom: 1px solid var(--white-12);
  border-radius: 24px;
}
.digital-vault-showcase-section[hidden] {
  display: none !important;
}
.dvs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.dvs-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.dvs-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.dvs-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.dvs-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grid Layout: Desktop 4, Tablet 2, Mobile 1 */
.dvs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .dvs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dvs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.dvs-card {
  background: rgba(10, 16, 32, 0.75);
  border: 1px solid var(--white-12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}
.dvs-card:hover {
  transform: translateY(-5px);
  border-color: var(--ice);
  box-shadow: 0 15px 35px rgba(125, 211, 252, 0.08);
}
.dvs-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #05080f;
  overflow: hidden;
  border-bottom: 1px solid var(--white-06);
}
.dvs-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.dvs-card:hover .dvs-card-media img {
  transform: scale(1.04);
}
.dvs-badge {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  background: rgba(5, 8, 15, 0.88);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.dvs-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dvs-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.dvs-card-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white-70);
  line-height: 1.5;
  margin-top: auto;
}

/* CTA Box */
.dvs-cta-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1.5px solid var(--ice-dim);
  border-radius: 20px;
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}
.dvs-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.dvs-cta-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ice);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .dvs-card, .dvs-card-media img, .select-btn, .hero-cta-btn {
    transition: none !important;
    transform: none !important;
  }
}

/* ── COMPARISON MATRIX ── */
.comparison-section {
  margin-bottom: 4rem;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 16, 32, 0.7);
  border: 1px solid var(--white-12);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-body);
}
.comp-table th, .comp-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.comp-table th {
  background: rgba(5, 8, 15, 0.9);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.comp-table td:nth-child(2), .comp-table td:nth-child(3), .comp-table td:nth-child(4) {
  text-align: center;
}
.comp-table th:nth-child(2), .comp-table th:nth-child(3), .comp-table th:nth-child(4) {
  text-align: center;
}
.check-yes { color: var(--ice); font-weight: bold; }
.check-no { color: var(--white-30); }

/* ── CHECKOUT CONTAINER ── */
.checkout-container {
  background: rgba(8, 12, 23, 0.95);
  border: 1px solid var(--ice-dim);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-50);
  margin-bottom: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 1rem;
}
.form-group.full-w {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-70);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  background: rgba(5, 8, 15, 0.8);
  border: 1px solid var(--white-12);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 12px rgba(125,211,252,0.2);
}

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-06);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--white-60);
}

/* Policy Cards Grid */
.policy-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 640px) {
  .policy-notes-grid { grid-template-columns: 1fr; }
}
.policy-card {
  background: rgba(10, 16, 32, 0.5);
  border: 1px solid var(--white-12);
  border-radius: 12px;
  padding: 1.25rem;
}
.policy-card-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 0.5rem;
}
.policy-card-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--white-70);
}

.policy-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.policy-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--white-50);
  text-decoration: underline;
  transition: color 0.2s ease;
  cursor: pointer;
}
.policy-link:hover { color: var(--ice); }

/* ── SUCCESS PANEL ── */
.success-panel {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--ice);
  border-radius: 20px;
}
.success-panel.active { display: block; }
.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* ── STICKY MOBILE ORDER BAR ── */
.sticky-order-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(5, 8, 15, 0.95);
  border-top: 1px solid var(--ice-dim);
  padding: 0.85rem 1.5rem;
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-order-bar.show {
  transform: translateY(0);
}
.sob-info {
  display: flex;
  flex-direction: column;
}
.sob-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.sob-price {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ice);
}

/* Policy Modal Overlay */
.policy-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.policy-modal-overlay.active { display: flex; }
.policy-modal-content {
  background: #0a1020;
  border: 1px solid var(--ice-dim);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
.pmc-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--white-50);
  font-size: 1.5rem; cursor: pointer;
}
.pmc-close:hover { color: var(--white); }

/* ── STORE NAVIGATION BAR ── */
.store-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(5, 8, 15, 0.85);
  border: 1px solid var(--white-12);
  border-radius: 12px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.store-nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  transition: color 0.25s ease;
  padding: 0.3rem 0.5rem;
}
.store-nav-link:hover,
.store-nav-link.active {
  color: var(--ice);
}

/* ── CHOOSE ROUTING SECTION ── */
.choose-section {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
.choose-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) {
  .choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.choose-card {
  background: rgba(10, 16, 32, 0.7);
  border: 1px solid var(--white-12);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.choose-card:hover {
  transform: translateY(-5px);
  border-color: var(--ice);
  box-shadow: 0 15px 35px rgba(125, 211, 252, 0.08);
}
.choose-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.choose-card-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white-70);
  line-height: 1.5;
}
.choose-card-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.choose-card-btn-physical {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid var(--white-12);
}
.choose-card-btn-physical:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ice);
  transform: translateY(-2px);
}
.choose-card-btn-digital {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.4);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}
.choose-card-btn-digital:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
}

/* ── TRANSPARENCY STATEMENT ── */
.transparency-statement {
  background: rgba(10, 16, 32, 0.5);
  border: 1px solid var(--white-12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  text-align: center;
}
.transparency-statement p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--white-50);
  line-height: 1.6;
}

/* ── DIGITAL-ONLY BADGE ── */
.digital-only-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ── PRODUCT CARD HIGHLIGHT STATE ── */
.pricing-card.highlighted {
  border-color: var(--ice);
  box-shadow: 0 0 30px rgba(125, 211, 252, 0.15);
  animation: cardPulse 1.5s ease-out;
}
@keyframes cardPulse {
  0% { box-shadow: 0 0 0 rgba(125, 211, 252, 0); }
  50% { box-shadow: 0 0 40px rgba(125, 211, 252, 0.25); }
  100% { box-shadow: 0 0 30px rgba(125, 211, 252, 0.15); }
}

/* ── DISABLED CHECKOUT BUTTON ── */
.select-btn.disabled,
.choose-card-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
