/* ============================================================
   Gemini AI Pro 18M Global — Monochrome Pro Storefront
   High-contrast, luxury black & white minimal SaaS design system
   Zero external dependencies · 100% Responsive
   ============================================================ */

:root {
  color-scheme: dark;

  /* Monochrome Luxury Palette */
  --bg-main: #060709;
  --bg-surface: #0d0e12;
  --bg-surface-elevated: #15161c;
  --bg-card: rgba(18, 19, 25, 0.75);
  --bg-card-hover: rgba(24, 26, 34, 0.9);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.3);
  --border-white: #ffffff;

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  /* Functional Accents */
  --white-solid: #ffffff;
  --black-solid: #000000;
  --emerald-success: #10b981;
  --amber-warn: #f59e0b;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Inter", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 0 40px rgba(255, 255, 255, 0.1);
}

/* ============================================================
   BASE & RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Strict HTML5 hidden attribute enforcement */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol {
  margin: 0;
}

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

button, input {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img, svg {
  display: block;
}

::selection {
  background: #ffffff;
  color: #000000;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 9999;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ============================================================
   ANNOUNCEMENT BAR (MONOCHROME)
   ============================================================ */
.announcement-bar {
  background: #090a0e;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 13px;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pulse-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite;
}

.pulse-dot.pulse-dot-waiting {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-ring-waiting 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-ring-waiting {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.tag-status.tag-status-waiting {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.stock-live-pill.pill-waiting {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.announcement-text {
  color: var(--text-secondary);
}

.announcement-text strong {
  color: var(--text-primary);
}

.announcement-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-medium);
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 9, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-medium);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}

.nav-brand:hover .logo-wrap {
  transform: rotate(8deg);
}

.brand-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-accent {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14.5px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Cart Button in Nav (Monochrome Pro) */
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-medium);
  border-radius: 9999px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-cart:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.cart-icon {
  color: #ffffff;
}

.cart-price-pill {
  background: #ffffff;
  color: #000000;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.mobile-nav {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-medium);
  padding: 20px 0;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-inner a {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
}

/* ============================================================
   BUTTONS (BLACK & WHITE HIGH-CONTRAST)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  user-select: none;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
}

/* High-Contrast Crisp White Primary */
.btn-hero-primary {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.btn-hero-primary:hover {
  background: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 30%,
    transparent 40%
  );
  transform: rotate(30deg);
  animation: shimmerSweep 4s infinite;
}

@keyframes shimmerSweep {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  50%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-hero-secondary {
  padding: 16px 28px;
  font-size: 16px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 14px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-primary {
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-action-card {
  width: 100%;
  padding: 15px;
  font-size: 15.5px;
  font-weight: 700;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-action-card:hover {
  background: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}

/* ============================================================
   HERO SECTION (MONOCHROME LUXURY)
   ============================================================ */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-medium);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.monochrome-text {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 17px;
  line-height: 1.68;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.perk-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.social-proof-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: #ffffff;
  letter-spacing: 1px;
}

.rating-val {
  color: var(--text-primary);
  font-weight: 700;
}

.proof-divider {
  color: var(--border-medium);
}

.proof-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
  border: 1px solid var(--border-subtle);
}

/* ============================================================
   PRODUCT SHOWCASE CARD (MONOCHROME)
   ============================================================ */
.hero-card-wrap {
  position: relative;
}

.card-ambient-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.08), transparent 70%);
  border-radius: 28px;
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.product-showcase-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-showcase-card:hover {
  border-color: var(--border-strong);
}

.card-top-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.tag-status {
  color: var(--emerald-success);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-duration {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid var(--border-medium);
}

.card-product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-medium);
  display: grid;
  place-items: center;
}

.card-title-group h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.card-title-group p {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.card-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.spec-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-info {
  display: flex;
  flex-direction: column;
}

.spec-info strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.spec-info span {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.card-pricing-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #090a0e;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.price-strikethrough {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-current .currency {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.price-current .amount {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.price-current .cents {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.price-current .term {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 6px;
}

.price-frequency {
  font-size: 11.5px;
  color: var(--emerald-success);
  font-weight: 500;
}

.savings-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-strong);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.card-footer-info {
  margin-top: 14px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ============================================================
   COMPARISON MATRIX SECTION
   ============================================================ */
.comparison-section {
  padding: 100px 0;
  background: #090a0e;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: 50px;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin-inline: auto;
}

.comp-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.comp-card.highlight {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 28px;
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.comp-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.comp-card.highlight .comp-badge {
  color: #ffffff;
}

.comp-price {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.comp-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.comp-total {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comp-card.highlight .comp-total {
  color: #ffffff;
  font-weight: 600;
}

.comp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.comp-features li {
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}

.comp-features li.negative::before {
  content: "✕";
  color: #71717a;
  font-weight: 700;
}

.comp-features li.positive::before {
  content: "✓";
  color: #ffffff;
  font-weight: 800;
}

.comp-verdict {
  margin-top: auto;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 22px;
  flex-grow: 1;
}

.feature-spec-tag {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

/* ============================================================
   HOW IT WORKS (ACTIVATION GUIDE)
   ============================================================ */
.how-section {
  padding: 100px 0;
  background: #090a0e;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.step-number-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-medium);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 22px;
  flex-grow: 1;
}

.step-badge {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.activation-privacy-note {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 840px;
  margin-inline: auto;
}

.shield-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.note-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.note-text strong {
  color: var(--text-primary);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--border-strong);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

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

.faq-chevron {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner-section {
  padding: 60px 0 100px;
}

.cta-banner-box {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.cta-banner-box h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-banner-box p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-action-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-desc {
  margin-top: 16px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.6;
}

.footer-links-col {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}

.footer-link-group h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-link-group a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-link-group a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

.back-to-top {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: #ffffff;
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(13, 14, 18, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-medium);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mobile-bar-left {
  display: flex;
  flex-direction: column;
}

.bar-plan-title {
  font-size: 13px;
  font-weight: 700;
}

.bar-plan-price {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
}

/* ============================================================
   WIDE GUEST CHECKOUT MODAL (2-COLUMN ARCHITECTURE)
   ============================================================ */
html.modal-open,
body.modal-open {
  overflow: hidden !important;
  height: 100% !important;
  overscroll-behavior: none !important;
}

body.modal-open {
  position: fixed !important;
  top: var(--scroll-top, 0) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  touch-action: pan-y !important;
}

/* Strictly hide floating widgets and activity stream when checkout modal is open */
body.modal-open .live-activity-stream {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: radial-gradient(ellipse at 50% 30%, rgba(26, 115, 232, 0.14) 0%, rgba(7, 9, 14, 0.86) 65%, rgba(2, 3, 5, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none; /* HIDDEN BY DEFAULT */
  place-items: center;
  padding: 32px 24px;
  overflow-y: auto;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
}

.modal-dialog {
  overscroll-behavior: contain !important;
}

.modal-body {
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-backdrop.is-open {
  display: grid !important;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* WIDE 3-COLUMN DIALOG BOX - NATURAL, COMPACT & LUXURY FINISH */
.modal-dialog.wide-dialog {
  width: min(1360px, 95vw);
  height: auto;
  min-height: unset;
  max-height: 90vh;
  background: linear-gradient(180deg, #13151f 0%, #0c0d12 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 80px rgba(26, 115, 232, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.modal-step-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #8ab4f8;
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.modal-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin: 0;
}

.modal-header-stock {
  margin-left: auto;
  margin-right: 18px;
}

.stock-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  color: #ffffff;
}

.stock-live-pill.pill-waiting {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.modal-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 17px;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: scale(1.05);
}

.modal-body {
  overflow-y: auto;
  padding: 0;
}

.mobile-wizard-stepper,
.mobile-wizard-actions,
.mobile-order-chip {
  display: none;
}

/* ============================================================
   3-COLUMN SEQUENTIAL CHECKOUT LAYOUT (TIGHT, COMPACT, COHESIVE)
   Step 1: Quantity -> Step 2: Payment -> Step 3: Confirm (Far Right)
   ============================================================ */
.checkout-3step-grid {
  display: grid;
  grid-template-columns: 350px minmax(430px, 1.25fr) 380px;
  gap: 24px;
  padding: 24px 36px 30px;
  align-items: start;
}

.checkout-step-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  height: auto;
}

.step-badge-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
}

.step-pill-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  background: rgba(26, 115, 232, 0.16);
  color: #8ab4f8;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid rgba(26, 115, 232, 0.35);
}

.step-badge-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Step 1 Compact Styles */
.email-group-compact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-hint-compact {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.checkout-trust-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-secondary);
  padding: 8px 2px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2px;
}

/* Step 3 Confirm Card (Prominent on Far Right, Zero Artificial Gaps) */
.confirm-action-card {
  background: linear-gradient(180deg, #181a26 0%, #12141e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.confirm-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-card-body .form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.confirm-input-wrap {
  width: 100%;
}

.input-confirm-prominent {
  font-size: 13.5px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  padding: 14px 16px !important;
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 10px;
  color: #ffffff;
  width: 100%;
}

.input-confirm-prominent:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
}

.btn-confirm-prominent {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 12px;
  letter-spacing: 0.3px;
  background: #ffffff;
  color: #000000;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
}

.btn-confirm-prominent:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.35);
  background: #f4f4f5;
}

.confirm-trust-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 4px;
}

.confirm-trust-note .check-icon {
  color: var(--emerald-success);
  font-weight: 800;
}

/* Reassurance Perks List in Step 3 */
.confirm-perks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

.confirm-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.confirm-perk-item .perk-bullet {
  font-size: 13px;
  flex-shrink: 0;
}

.paybis-mini-hint {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* Order Summary Box */
.checkout-order-summary {
  background: linear-gradient(180deg, #181a26 0%, #12141e 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Plan Highlights in Step 1 */
.summary-perks-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.summary-perks-compact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.summary-perks-compact li span {
  color: var(--emerald-success);
  font-weight: 800;
  font-size: 11px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-details strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
}

.summary-details span {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.summary-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.order-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.qty-stepper-control {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.btn-qty-step {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
}

.btn-qty-step:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.btn-qty-step:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.input-qty-number {
  width: 38px;
  height: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding: 0;
  -moz-appearance: textfield;
}

.input-qty-number::-webkit-outer-spin-button,
.input-qty-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-stock-limit {
  font-size: 11px;
  color: var(--text-muted);
}

.summary-price-box {
  text-align: right;
  flex-shrink: 0;
}

.summary-total-label {
  font-size: 11.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.summary-total-amount {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.summary-curr {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

/* DELIVERY MODE SELECTOR (2 OPTIONS) */
.delivery-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.delivery-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.delivery-option input[type="radio"] {
  margin-top: 3px;
  accent-color: #ffffff;
  cursor: pointer;
}

.delivery-option:hover {
  border-color: var(--border-medium);
}

.delivery-option.active {
  border-color: #ffffff;
  background: #191a22;
}

.delivery-opt-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.delivery-opt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.delivery-opt-header strong {
  font-size: 13.5px;
  color: #ffffff;
}

.delivery-opt-content p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.opt-badge {
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.opt-badge-muted {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 4px;
}

/* FORM STYLES (EMAIL WITH HIGH-VISIBILITY WARNING) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.badge-required {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-text {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14.5px;
  outline: none;
  transition: all 0.2s ease;
}

.input-text:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.input-text.is-valid {
  border-color: var(--emerald-success);
}

.input-text.is-invalid {
  border-color: #f43f5e;
}

.email-status-icon {
  position: absolute;
  right: 14px;
  color: var(--emerald-success);
  font-weight: 700;
  font-size: 12px;
}

/* PROMINENT EMAIL WARNING BOX */
.email-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 4px;
}

.warn-symbol {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.2;
}

.warn-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: #fbbf24;
}

.warn-copy strong {
  color: #fef3c7;
  font-size: 12.5px;
}

/* Smart Inline Ghost-Text & Tab Autocomplete System */
.email-autocomplete-container {
  position: relative;
  width: 100%;
}

.input-ghost-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.email-ghost-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px 12px 42px;
  font-family: inherit;
  font-size: 14.5px;
  line-height: inherit;
  pointer-events: none;
  white-space: pre;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.email-ghost-overlay .ghost-typed {
  color: transparent;
  opacity: 0;
  user-select: none;
}

.email-ghost-overlay .ghost-completion {
  color: #64748b;
  opacity: 0.85;
  user-select: none;
}

.tab-complete-pill {
  position: absolute;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  z-index: 3;
  transition: all 0.15s ease;
  animation: tabPillFadeIn 0.15s ease-out;
}

@keyframes tabPillFadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-complete-pill:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.tab-complete-pill .pill-key {
  background: rgba(255, 255, 255, 0.18);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 10px;
  font-family: monospace;
}

.tab-complete-pill:hover .pill-key {
  background: rgba(0, 0, 0, 0.15);
}

/* Floating Dropdown Suggestions */
.email-dropdown-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #090c13;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 6px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 230px;
  overflow-y: auto;
  animation: dropdownFadeIn 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.email-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.1s ease;
  user-select: none;
}

.email-dropdown-item:hover,
.email-dropdown-item.is-selected {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.email-dropdown-item .item-domain {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.email-dropdown-item .item-prefix {
  color: #64748b;
}

.email-dropdown-item .item-match {
  color: #38bdf8;
  font-weight: 700;
}

.email-dropdown-item .item-hint {
  font-size: 10.5px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

.email-dropdown-item.is-selected .item-hint {
  background: #ffffff;
  color: #000000;
}

.badge-optional {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.tab-logo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.card-logo-img {
  height: 16px;
  width: auto;
  object-fit: contain;
  border-radius: 2px;
  display: block;
}

.checkout-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 4px;
}

/* PAYMENT METHOD SELECTOR (WITH REAL ICONS) */
.payment-method-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-tab {
  padding: 12px 10px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pay-tab.active {
  background: #1a1d2b;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.crypto-icon-box {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.card-icons-cluster {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}

.tab-label-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tab-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
}

.tab-sub {
  font-size: 10.5px;
  color: var(--text-muted);
}

/* TAB PANELS */
.pay-tab-panel {
  display: none;
  flex-direction: column;
  gap: 18px;
}

.pay-tab-panel.active {
  display: flex !important;
}

.pay-tab-panel[hidden] {
  display: none !important;
}

.payment-instructions-banner {
  background: rgba(26, 115, 232, 0.08);
  border-left: 3px solid #1a73e8;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.payment-instructions-banner strong {
  color: #ffffff;
}

/* QR & Address Card - NATURAL & COHESIVE */
.qr-address-card {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 18px;
  background: #151722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.qr-box-inner {
  position: relative;
  width: 118px;
  height: 118px;
  background: #ffffff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4px;
}

.qr-code-img {
  width: 110px;
  height: 110px;
  display: block;
}

.qr-placeholder {
  position: absolute;
  inset: 0;
  background: #15161c;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
}

.qr-caption {
  font-size: 11px;
  color: var(--text-muted);
}

.address-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.mini-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.copy-input-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.input-mono {
  width: 100%;
  padding: 11px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  color: #ffffff;
  outline: none;
  text-overflow: clip;
}

.input-highlight {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
}

.btn-copy {
  padding: 0 20px;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-copy:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
}

.btn-copy.copied {
  background: var(--emerald-success);
  color: #ffffff;
}

.transfer-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.spec-pill {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: 6px;
}

.spec-pill strong {
  color: #ffffff;
}

/* TXID Order Confirmation Box (Prominent & Wide on Far Right) */
.txid-input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.txid-input-box .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.action-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.action-input-row .input-text {
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  flex: 1;
  background: var(--bg-surface-elevated);
  border-color: var(--border-medium);
}

.action-input-row .input-text:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.verify-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.verify-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.spinner-inline {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000000;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
  margin-right: 6px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Dedicated Paybis Card Checkout Card */
.paybis-checkout-card {
  background: #151722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.paybis-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paybis-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.paybis-badge-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ffffff;
}

.paybis-brand-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.apple-pay-card-img {
  height: 16px;
  width: auto;
  object-fit: contain;
  display: block;
}

.apple-pay-tab-logo {
  height: 15px;
  width: auto;
  object-fit: contain;
  display: block;
}

.paybis-subtext {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.btn-paybis-launch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.btn-paybis-launch:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.paybis-security-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: #fca5a5;
  margin-top: 12px;
}

.paybis-security-warning .warning-icon {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.paybis-security-warning strong {
  color: #fecaca;
  display: block;
  margin-bottom: 2px;
}

.paybis-security-warning p {
  margin: 0;
}

[data-theme="light"] .paybis-security-warning {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
  color: #991b1b;
}

[data-theme="light"] .paybis-security-warning strong {
  color: #7f1d1d;
}

.paybis-limit-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: #fbbf24;
  margin-top: 12px;
}

.paybis-limit-notice .notice-icon {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.paybis-limit-notice strong {
  color: #fef08a;
}

[data-theme="light"] .paybis-limit-notice {
  background: rgba(202, 138, 4, 0.08);
  border-color: rgba(202, 138, 4, 0.3);
  color: #854d0e;
}

[data-theme="light"] .paybis-limit-notice strong {
  color: #713f12;
}

.paybis-steps-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

/* ============================================================
   DELIVERY RESULT VIEW (INSIDE RIGHT COLUMN)
   ============================================================ */
.delivery-result-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeIn 0.3s ease;
}

.delivery-result-screen[hidden] {
  display: none !important;
}

.success-animation-wrap {
  display: grid;
  place-items: center;
  margin-top: 4px;
}

.success-check-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 26px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.delivery-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.delivery-header p {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.delivery-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--emerald-success);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.revealed-pass-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pass-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.multi-pass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.btn-copy-bulk {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-bulk:hover {
  background: rgba(255, 255, 255, 0.22);
}

.multi-pass-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 4px;
}

.multi-pass-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.multi-pass-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-grow: 1;
}

.multi-pass-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-neon, #00f0ff);
  background: rgba(0, 240, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.multi-pass-url {
  font-family: monospace;
  font-size: 11.5px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-pass-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.btn-pass-action {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-pass-action:hover {
  background: rgba(255, 255, 255, 0.18);
}

.email-only-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-only-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.email-badge-icon {
  font-size: 22px;
}

.email-only-header h4 {
  font-size: 16px;
  font-weight: 700;
}

.email-subnote {
  font-size: 12px;
  color: var(--text-muted);
}

.email-dispatch-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.email-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.highlight-email {
  color: #ffffff;
  font-weight: 700;
}

.delivery-instructions {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
}

.delivery-instructions h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.delivery-instructions ol {
  padding-left: 20px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.delivery-instructions li {
  margin-bottom: 4px;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-message {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast-message.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.toast-success {
  background: #18181b;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.toast-error {
  background: #27070e;
  color: #fecdd3;
  border: 1px solid rgba(244, 63, 94, 0.4);
}

/* ============================================================
   LIVE ACTIVITY & SOCIAL PROOF FLOATING STREAM
   ============================================================ */
.live-activity-stream {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1050;
  pointer-events: none;
  transition: all 0.3s ease;
}

.activity-card {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
  max-width: 350px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.activity-avatar {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.activity-body {
  flex-grow: 1;
  min-width: 0;
}

.activity-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-masked {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 11px;
}

.activity-action {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 1px 0 2px;
}

.activity-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
}

.activity-time {
  color: var(--text-muted);
}

.activity-verified {
  color: #10b981;
  font-weight: 600;
}

.activity-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s ease;
  align-self: flex-start;
}

.activity-close-btn:hover {
  color: #ffffff;
}

[data-theme="light"] .activity-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .activity-title {
  color: #18181b;
}

[data-theme="light"] .activity-close-btn:hover {
  color: #000000;
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
   Laptops (1280px), Tablets (1024px, 900px), Phones (768px, 480px, 360px)
   ============================================================ */
@media (max-width: 1280px) {
  .modal-dialog.wide-dialog {
    width: min(1240px, 96vw);
    min-height: min(740px, 86vh);
  }

  .checkout-3step-grid {
    grid-template-columns: 310px minmax(380px, 1.2fr) 350px;
    gap: 24px;
    padding: 28px 32px 34px;
  }
}

@media (max-width: 1024px) {
  .modal-dialog.wide-dialog {
    width: min(920px, 96vw);
    min-height: auto;
    max-height: 92vh;
  }

  .checkout-3step-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 28px;
    overflow-y: auto;
  }

  .checkout-step-col {
    height: auto;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-perks-row {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .social-proof-strip {
    justify-content: center;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links-col {
    justify-content: flex-start;
  }
}

/* ============================================================
   MOBILE MODAL & LAYOUT OVERHAUL (<= 1024px)
   Converts modal into modern touch-native bottom sheet
   ============================================================ */
@media (max-width: 1024px) {
  .modal-backdrop {
    padding: 0 !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none !important;
  }

  .modal-backdrop.is-open {
    display: flex !important;
  }

  .modal-dialog.wide-dialog {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: unset !important;
    max-height: 94vh !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    touch-action: pan-y !important;
    overscroll-behavior: contain !important;
  }

  .modal-header {
    padding: 16px 20px 14px !important;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #11131c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .modal-header h2 {
    font-size: 19px !important;
  }

  .modal-step-tag {
    font-size: 10px !important;
  }

  .modal-close-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
  }

  .modal-body {
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    flex: 1;
    min-height: 0;
  }

  /* Mobile Wizard Stepper Header */
  .mobile-wizard-stepper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #141622;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 35 !important;
    touch-action: manipulation !important;
  }

  .wizard-step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid transparent;
    color: #71717a;
    padding: 8px 12px !important;
    border-radius: 20px;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 36 !important;
    transition: all 0.2s ease;
  }

  .wizard-step-item * {
    pointer-events: none !important;
  }

  .wizard-step-item .step-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .wizard-step-item.active {
    background: rgba(26, 115, 232, 0.16);
    border-color: rgba(26, 115, 232, 0.4);
    color: #ffffff;
  }

  .wizard-step-item.active .step-circle {
    background: #1a73e8;
    color: #ffffff;
    box-shadow: 0 0 8px rgba(26, 115, 232, 0.6);
  }

  .wizard-step-item.completed {
    color: #8ab4f8;
  }

  .wizard-step-item.completed .step-circle {
    background: rgba(26, 115, 232, 0.25);
    color: #8ab4f8;
    border: 1px solid rgba(26, 115, 232, 0.4);
  }

  .wizard-step-divider {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
    min-width: 8px;
  }

  /* Single Active Step Column on Mobile */
  .checkout-3step-grid {
    display: block !important;
    padding: 16px 16px 48px !important;
    padding-bottom: max(64px, calc(40px + env(safe-area-inset-bottom))) !important;
    overflow: visible !important;
  }

  .checkout-step-col {
    display: none !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    animation: fadeInStep 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes fadeInStep {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .checkout-3step-grid[data-active-step="1"] .step-col-1,
  .checkout-3step-grid[data-active-step="2"] .step-col-2,
  .checkout-3step-grid[data-active-step="3"] .step-col-3,
  .checkout-step-col.step-active,
  .checkout-step-col.is-active-step {
    display: flex !important;
  }

  /* Mobile Wizard Action Buttons */
  .mobile-wizard-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 18px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 50 !important;
  }

  .btn-wizard-next {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    border: none !important;
    outline: none !important;
    position: relative !important;
    z-index: 55 !important;
    pointer-events: auto !important;
    transition: transform 0.12s ease, filter 0.12s ease !important;
  }

  .btn-wizard-next * {
    pointer-events: none !important;
  }

  .btn-wizard-next:active {
    transform: scale(0.98) !important;
    filter: brightness(0.92) !important;
  }

  .btn-wizard-back {
    min-height: 44px !important;
    height: 44px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    position: relative !important;
    z-index: 55 !important;
    pointer-events: auto !important;
  }

  .btn-wizard-back * {
    pointer-events: none !important;
  }

  .btn-wizard-back:hover,
  .btn-wizard-back:active {
    color: #ffffff !important;
    text-decoration: underline !important;
  }

  /* Mobile Order Recap Chip in Step 2 */
  .mobile-order-chip {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(26, 115, 232, 0.08) !important;
    border: 1px solid rgba(26, 115, 232, 0.22) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    margin-bottom: 2px !important;
  }

  .chip-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  }

  .chip-label {
    color: #94a3b8;
  }

  .chip-value {
    color: #ffffff;
  }

  .btn-chip-edit {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #8ab4f8;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
  }

  .step-badge-title h3 {
    font-size: 15px !important;
  }

  /* Step 1 on Mobile */
  .checkout-order-summary {
    padding: 16px !important;
    gap: 14px !important;
    border-radius: 16px !important;
  }

  .summary-item {
    gap: 12px !important;
  }

  .summary-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .summary-details strong {
    font-size: 14px !important;
  }

  .summary-details span {
    font-size: 12px !important;
  }

  .summary-pricing-row {
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }

  .summary-total-amount {
    font-size: 22px !important;
  }

  .form-group.email-group-compact {
    gap: 6px !important;
  }

  .checkout-trust-compact {
    font-size: 11px !important;
    padding-top: 8px !important;
  }

  /* Step 2 on Mobile */
  .payment-method-selector {
    gap: 8px !important;
  }

  .pay-tabs {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    padding: 4px !important;
    border-radius: 12px !important;
  }

  .pay-tab {
    padding: 8px 4px !important;
    min-height: 54px !important;
    border-radius: 8px !important;
  }

  .tab-logo-img {
    width: 20px !important;
    height: 20px !important;
  }

  .card-icons-cluster {
    height: 20px !important;
    gap: 3px !important;
  }

  .card-logo-img {
    height: 13px !important;
  }

  .tab-title {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .tab-sub {
    display: none !important; /* Hide secondary subtitle on mobile tabs to maintain perfect fit */
  }

  .payment-instructions-banner {
    font-size: 12.5px !important;
    padding: 11px 13px !important;
    border-radius: 0 8px 8px 0 !important;
  }

  .qr-address-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 16px !important;
    border-radius: 16px !important;
    text-align: center !important;
  }

  .qr-wrapper {
    margin: 0 auto !important;
  }

  .qr-box-inner {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto !important;
  }

  .qr-code-img {
    width: 110px !important;
    height: 110px !important;
  }

  .address-wrapper {
    width: 100% !important;
    text-align: left !important;
  }

  .mini-label {
    font-size: 11.5px !important;
  }

  .copy-input-group {
    display: flex !important;
    width: 100% !important;
    gap: 6px !important;
  }

  .input-mono {
    font-size: 11.5px !important;
    padding: 10px 10px !important;
    height: 44px !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .btn-copy {
    height: 44px !important;
    padding: 0 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
  }

  .transfer-specs {
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 8px !important;
    flex-wrap: wrap !important;
  }

  .spec-pill {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }

  /* Step 3 on Mobile */
  .confirm-action-card {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    gap: 12px !important;
  }

  .confirm-card-body {
    gap: 12px !important;
  }

  .input-confirm-prominent {
    height: 46px !important;
    font-size: 12.5px !important;
    padding: 10px 12px !important;
  }

  .btn-confirm-prominent {
    height: 50px !important;
    font-size: 15px !important;
    width: 100% !important;
    padding: 0 16px !important;
  }

  .confirm-trust-note {
    font-size: 11px !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ============================================================
   SMARTPHONE BREAKPOINTS (<= 768px & <= 480px)
   ============================================================ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 16px !important;
    box-sizing: border-box !important;
  }

  .announcement-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 10px 0;
  }

  .nav-brand .brand-name {
    font-size: 15px;
  }

  .btn-cart {
    padding: 6px 10px;
    font-size: 12.5px;
    gap: 6px;
  }

  .cart-price-pill {
    font-size: 11px;
    padding: 2px 6px;
  }

  /* Hero Section */
  .hero-section {
    padding: 36px 0 54px !important;
  }

  .hero-pill {
    font-size: 10px !important;
    letter-spacing: 0.5px !important;
    padding: 5px 12px !important;
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    margin-bottom: 18px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
  }

  .hero-title {
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.8px !important;
    margin-bottom: 16px !important;
    word-break: break-word !important;
  }

  .hero-description {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-inline: auto !important;
    margin-bottom: 22px !important;
    padding: 0 4px !important;
  }

  .hero-perks-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }

  .perk-badge {
    font-size: 11.5px !important;
    padding: 5px 10px !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .btn-hero-primary {
    width: 100% !important;
    height: 52px !important;
    font-size: 15.5px !important;
    padding: 0 16px !important;
    justify-content: center !important;
  }

  .btn-hero-secondary {
    width: 100% !important;
    height: 46px !important;
    font-size: 14px !important;
    padding: 0 16px !important;
    justify-content: center !important;
  }

  .social-proof-strip {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    text-align: center !important;
  }

  .pricing-hero-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px 18px !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .mobile-sticky-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 990 !important;
    background: rgba(8, 9, 13, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 10px 16px !important;
    padding-bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }

  .live-activity-stream {
    bottom: 74px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
  }

  .activity-card {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 12px !important;
  }

  .modal-header-stock {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 29px !important;
  }

  .summary-price-box {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .summary-total-label {
    margin-bottom: 0;
  }

  .order-qty-wrapper {
    width: 100%;
    justify-content: space-between;
  }
}
