/* store.css — Fastpwin store styles. Modern AI-forward aesthetic.
   Uses global.css custom properties. */

:root {
  --hero-gradient: linear-gradient(135deg, #07090F 0%, #0D1120 50%, #090C18 100%);
  --card-gradient: linear-gradient(145deg, #0D1117, #131B27);
  --accent-glow: 0 0 0 1px rgba(124, 58, 237, 0.3);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══════════════════════════════════
   HERO SECTION
   ══════════════════════════════════ */
.hero-store {
  background: var(--hero-gradient);
  border-bottom: 1px solid var(--border-dark);
  padding: 104px 64px 88px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orb */
.hero-store::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-store::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 15%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-full);
}
.hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: var(--text-light);
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}
.btn-hero-primary svg { transition: transform 0.15s; }
.btn-hero-primary:hover svg { transform: translateX(3px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 12px;
  transition: color var(--transition);
}
.btn-hero-ghost:hover { color: var(--text-light); }
.btn-hero-ghost:hover svg { transform: translateX(3px); }
.btn-hero-ghost svg { transition: transform 0.15s; }

/* Hero image with glass frame */
.hero-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 60px rgba(124, 58, 237, 0.05);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, rgba(34, 211, 238, 0.04) 50%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
  z-index: 2;
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.hero-image:hover img { transform: scale(1.02); }

/* ── Full-screen background hero (Home / Store) ── */
.hero-full-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 64px;
}
.hero-full-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(7, 9, 15, 0.92) 0%, 
    rgba(7, 9, 15, 0.78) 28%, 
    rgba(7, 9, 15, 0.45) 55%, 
    rgba(7, 9, 15, 0.15) 80%,
    rgba(7, 9, 15, 0.06) 100%);
  z-index: 0;
  animation: none;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  pointer-events: none;
}
.hero-full-bg::after {
  animation: none;
  opacity: 0;
}
.hero-full-bg .hero-inner {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0;
  width: 100%;
}
.hero-full-bg .hero-text {
  position: relative;
  z-index: 2;
}
.hero-full-bg .hero-image {
  display: none;
}

/* ── Store-specific: wider left overlay, image on right ── */
.hero-bg-right::before {
  background: linear-gradient(90deg, 
    rgba(7, 9, 15, 0.93) 0%, 
    rgba(7, 9, 15, 0.90) 35%, 
    rgba(7, 9, 15, 0.80) 50%, 
    rgba(7, 9, 15, 0.55) 63%, 
    rgba(7, 9, 15, 0.20) 78%,
    rgba(7, 9, 15, 0.04) 100%) !important;
}
.hero-bg-right .hero-inner {
  max-width: 520px;
}
@media (max-width: 768px) {
  .hero-bg-right::before {
    background: linear-gradient(90deg, 
      rgba(7, 9, 15, 0.95) 0%, 
      rgba(7, 9, 15, 0.88) 60%, 
      rgba(7, 9, 15, 0.45) 100%) !important;
  }
}

/* ── Stats bar ── */
.stats-bar { }
.stat-divider { width: 1px; align-self: stretch; background: var(--border-dark); }

/* ══════════════════════════════════
   FEATURED PRODUCTS (HOME)
   ══════════════════════════════════ */
.featured-section {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* Glass product card */
.product-card {
  position: relative;
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.product-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.08);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover::after { transform: scaleX(1); }

.product-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.product-card-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
}
.product-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.product-card-tagline {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.product-card-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.product-card-size {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 4px;
}
.product-card-coming {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════
   FEATURED BUNDLE ROW (HOME)
   ══════════════════════════════════ */
.featured-bundle-row {
  margin-bottom: 40px;
}
.featured-bundle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(22, 27, 39, 0.95) 50%, rgba(34, 211, 238, 0.06) 100%);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: 20px;
  padding: 36px 44px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.featured-bundle-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.featured-bundle-card:hover {
  border-color: rgba(124, 58, 237, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.3);
}
.featured-bundle-left-link { text-decoration: none; color: inherit; display: block; flex: 1; }
.featured-bundle-left-link:hover .featured-bundle-name { color: var(--accent); }
.featured-bundle-left { display: flex; flex-direction: column; gap: 10px; }
.featured-bundle-icon {
  font-size: 40px;
  filter: drop-shadow(0 4px 16px rgba(124, 58, 237, 0.5));
  margin-bottom: 4px;
}
.featured-bundle-badge {
  display: inline-block;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}
.featured-bundle-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.featured-bundle-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.featured-bundle-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 4px;
}
.featured-bundle-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.featured-bundle-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.04em;
  line-height: 1;
}
.featured-bundle-save {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.featured-bundle-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: white;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  margin-top: 4px;
}
.featured-bundle-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.55);
}

/* ══════════════════════════════════
   STORE PAGE CATALOG
   ══════════════════════════════════ */
.store-section {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.store-card {
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.store-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.store-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.store-card:hover::before { opacity: 1; }

.store-card-icon { font-size: 30px; display: block; margin-bottom: 4px; }
.store-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.store-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.store-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.store-card-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
}
.store-card-price.coming-soon {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 600;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--spring);
  letter-spacing: -0.01em;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}
.btn-buy:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}
.btn-buy:active { transform: scale(0.97); }

/* ── Hero bundle card in product grid ── */
.store-card-hero {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.18) 0%, rgba(22, 27, 39, 0.9) 60%, rgba(34, 211, 238, 0.06) 100%);
  border: 1px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.15), inset 0 0 40px rgba(124, 58, 237, 0.04);
  animation: heroCardGlow 3s ease-in-out infinite;
}
.store-card-hero:hover {
  border-color: rgba(124, 58, 237, 0.75);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.3), 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}
.store-card-hero .store-card-price {
  color: var(--accent);
}
.store-card-hero .btn-buy {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.35);
}
.store-card-hero .btn-buy:hover {
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}
@keyframes heroCardGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.15), inset 0 0 40px rgba(124, 58, 237, 0.04); }
  50% { box-shadow: 0 0 45px rgba(124, 58, 237, 0.25), inset 0 0 50px rgba(124, 58, 237, 0.06); }
}

/* ── Bundle product page extras ── */
.bundle-included-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bundle-included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(22, 27, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  font-size: 14px;
}
.bundle-included-icon { font-size: 20px; flex-shrink: 0; }
.bundle-included-name { flex: 1; color: var(--text-primary); font-weight: 500; }
.bundle-included-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  text-decoration: line-through;
  flex-shrink: 0;
}
.bundle-value-badge {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  margin-bottom: 16px;
  text-align: left;
}
.bundle-value-line, .bundle-savings-line {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.bundle-savings-line {
  margin-top: 6px;
}
.who-for-section {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 32px 0;
}
.who-for-section .who-title { font-size: 16px; font-weight: 700; color: var(--accent-teal); margin-bottom: 10px; letter-spacing: -0.02em; }
.who-for-section .who-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── Bundle upsell block ── */
.bundle-upsell-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(22, 27, 39, 0.95) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-2xl);
  padding: 28px 32px;
  margin-top: 56px;
}
.bundle-upsell-icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.4));
}
.bundle-upsell-text { flex: 1; }
.bundle-upsell-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.bundle-upsell-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.bundle-upsell-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bundle-upsell-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
}
.btn-bundle-upsell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s var(--spring);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}
.btn-bundle-upsell:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

/* ── Bundle card ── */
.bundle-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(22, 27, 39, 0.9) 50%, rgba(34, 211, 238, 0.05) 100%);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-2xl);
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.bundle-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.bundle-card:hover {
  border-color: rgba(124, 58, 237, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}
.bundle-card-link:hover .bundle-card-name { color: var(--accent); }
.bundle-card-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.bundle-card-icon {
  font-size: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(124, 58, 237, 0.4));
}
.bundle-card-content { flex: 1; }
.bundle-card-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.bundle-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.bundle-value-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bundle-total-value {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.bundle-save-badge {
  display: inline-block;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}
.bundle-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bundle-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.04em;
}

.bundle-card-grid {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(22, 27, 39, 0.9) 100%);
  border-color: rgba(124, 58, 237, 0.35);
}
.bundle-grid-badges {
  display: flex;
  gap: 8px;
  margin: 4px 0;
  flex-wrap: wrap;
}
.bundle-grid-badge-best {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.bundle-grid-badge-save {
  display: inline-block;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-teal);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: all var(--transition);
}
.btn-coming-soon:hover {
  color: var(--accent);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}
.coming-soon-card {
  opacity: 1;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(13, 17, 23, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-xl);
}
.coming-soon-card:hover {
  opacity: 1;
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.coming-soon-card:hover::before { opacity: 1; }

/* ══════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════ */
.breadcrumb-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 64px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--text-light); }
.breadcrumb-sep { color: var(--border-dark); font-size: 14px; }
.breadcrumb-current { color: var(--text-light); }

/* ══════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════ */
.product-detail {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.product-detail-main h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.product-detail-tagline {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 36px;
}
.product-detail-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 48px;
}
.product-highlights-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.product-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.product-highlights-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(22, 27, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.product-highlights-list li:hover {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.05);
}
.product-highlights-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

/* ── Product meta badges ── */
.product-meta-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.product-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-teal);
  letter-spacing: 0.02em;
}
.product-meta-badge svg { color: var(--accent-teal); }

/* ── Table of contents ── */
.product-detail-toc {
  background: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 40px 0;
}
.toc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.5;
}
.toc-list li:last-child { border-bottom: none; }
.toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Who this is for ── */
.product-detail-who {
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 32px 0;
}
.who-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.who-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── What you get ── */
.product-detail-included {
  background: rgba(22, 27, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 32px 0;
}
.included-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.included-text {
  font-size: 14px;
  color: var(--accent-teal);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* ── Guide backlink ── */
.guide-backlink {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(34, 211, 238, 0.04) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 40px 0;
}
.guide-backlink-icon { font-size: 36px; flex-shrink: 0; }
.guide-backlink-text { flex: 1; }
.guide-backlink-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-teal);
  margin-bottom: 6px;
}
.guide-backlink-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition);
}
.guide-backlink-link:hover { color: var(--accent); }

/* Product detail sidebar — sticky CTA card */
.product-detail-sidebar {
  position: sticky;
  top: 88px;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 40px 36px;
  text-align: center;
  overflow: hidden;
}
.product-detail-sidebar::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.sidebar-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.55;
}
.sidebar-cta {
  display: block;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: white;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  margin-bottom: 18px;
  transition: all 0.25s var(--spring);
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  position: relative;
}
.sidebar-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.55);
}
.sidebar-instant {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 0 4px;
}
.sidebar-instant svg { color: var(--success); }
.product-detail-coming {
  background: rgba(22, 27, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.product-detail-coming-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.product-detail-coming strong { color: var(--text-light); display: block; margin-bottom: 6px; }

/* Related products */
.related-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border-dark);
}
.related-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.related-card {
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: all 0.25s ease;
}
.related-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.related-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.related-card-tagline {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.related-card-price { font-size: 17px; font-weight: 700; color: var(--accent); }

/* ══════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════ */
.thank-you-section {
  padding: 96px 64px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.thank-you-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(124, 58, 237, 0.5));
  animation: thankYouPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes thankYouPop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.thank-you-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text-light), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.thank-you-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.thank-you-email-note {
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 56px;
  line-height: 1.75;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.thank-you-email-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4), transparent);
}
.thank-you-email-note strong { color: var(--accent); font-weight: 700; }
.thank-you-upsell-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.upsell-card {
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: all 0.25s ease;
}
.upsell-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.upsell-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.upsell-card-tagline {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.upsell-card-price { font-size: 18px; font-weight: 700; color: var(--accent); }
.btn-store-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-teal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.btn-store-link:hover { color: var(--accent); }
.btn-store-link:hover svg { transform: translateX(2px); }
.btn-store-link svg { transition: transform 0.15s; }

/* ══════════════════════════════════
   GUIDE PAGES
   ══════════════════════════════════ */
.guides-preview {
  padding: 0 64px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-card {
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: 36px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.guide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.guide-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.guide-card:hover::before { opacity: 1; }
.guide-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.guide-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.guide-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-teal);
  letter-spacing: -0.01em;
  transition: color var(--transition), gap 0.15s;
}
.guide-card:hover .guide-card-cta { color: var(--accent); gap: 10px; }
.guide-card-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.guide-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.guide-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.guide-card-meta {
  font-size: 11.5px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Guide content page */
.guide-content {
  padding: 96px 64px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.guide-header {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}
.guide-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.guide-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--accent-teal-glow);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-full);
}
.guide-header h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.guide-header-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}
.guide-byline {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.guide-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}
.guide-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light);
  margin: 56px 0 22px;
  letter-spacing: -0.03em;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.guide-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-light);
  margin: 40px 0 14px;
  letter-spacing: -0.02em;
}
.guide-body p { margin-bottom: 20px; }
.guide-body ul { margin: 0 0 24px 20px; display: flex; flex-direction: column; gap: 10px; }
.guide-body li { color: var(--text-muted); }
.guide-prompt-block {
  background: rgba(22, 27, 39, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 24px 0 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  backdrop-filter: blur(8px);
}
.guide-cta-box {
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-2xl);
  padding: 44px 48px;
  margin: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guide-cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.guide-cta-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.guide-cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.65; }
.btn-guide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  color: white;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s var(--spring);
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.btn-guide-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}

/* ── CTA band in store ── */
.store-cta-band {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(34, 211, 238, 0.05) 100%);
  border-top: 1px solid var(--border-dark);
  padding: 96px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.store-cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.store-cta-band h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  position: relative;
}
.store-cta-band p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ══════════════════════════════════
   WHY OUR GUIDES — Feature Cards Grid
   ══════════════════════════════════ */
.why-section {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.why-section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-full);
}
.why-section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.why-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

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

.why-card {
  background: rgba(13, 17, 23, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.08);
}
.why-card:hover::before { opacity: 1; }

.why-card-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 2px;
  filter: drop-shadow(0 4px 10px rgba(124, 58, 237, 0.3));
}

.why-card-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 4px;
}

.why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.why-card-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.why-card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.why-card-checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--accent), #6D28D9);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2 2 4-4' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.4);
}

/* ── Why section image row ── */
.why-image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.why-image-row-img {
  display: block;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-image-row-img:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.25);
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text h1 { font-size: 44px; }
  .hero-image { max-width: 560px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-detail-sidebar { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section-title { font-size: 30px; }
}

@media (max-width: 768px) {
  .hero-store { padding: 64px 20px 56px; }
  .hero-full-bg { min-height: 100vh; padding: 0 20px; }
  .hero-full-bg::before {
    background: linear-gradient(90deg, 
      rgba(7, 9, 15, 0.95) 0%, 
      rgba(7, 9, 15, 0.85) 50%, 
      rgba(7, 9, 15, 0.5) 100%);
  }
  .hero-full-bg .hero-inner { max-width: 100%; }
  .hero-text h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .featured-section { padding: 56px 20px; }
  .store-section { padding: 56px 20px; }
  .guides-preview { padding: 0 20px 56px; }
  .store-cta-band { padding: 64px 20px; }
  .store-cta-band h2 { font-size: 26px; }
  .breadcrumb-nav { padding: 14px 20px; }
  .product-detail { padding: 56px 20px; }
  .product-detail-main h1 { font-size: 30px; }
  .sidebar-price { font-size: 42px; }
  .related-grid { grid-template-columns: 1fr; }
  .guide-content { padding: 56px 20px; }
  .guide-header h1 { font-size: 30px; }
  .thank-you-section { padding: 64px 20px; }
  .thank-you-title { font-size: 30px; }
  .upsell-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 20px; }
  .why-section { padding: 64px 20px; }
  .why-section-title { font-size: 26px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-card { padding: 28px 24px; }
}