/* ═══════════════════════════════════════════════════════════
   Bundles — listing (bundles.html) + detail pages (bundles/*.html)
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   KIT ADD-ON SECTION — AURA upsell on kit pages
   Horizontal product card. Editorial, not aggressive.
   ═══════════════════════════════════════════════════════════ */
.kit-addon {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.95) 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kit-addon__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  text-decoration: none;
  color: #f0ede8;
  transition: transform .4s ease;
}

.kit-addon__card:hover { transform: translateY(-2px); }

.kit-addon__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.kit-addon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out, ease);
  filter: brightness(0.92);
}

.kit-addon__card:hover .kit-addon__media img {
  transform: scale(1.04);
  filter: brightness(1);
}

.kit-addon__media-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.85);
}

.kit-addon__copy { padding: 4px 0; }

.kit-addon__eyebrow {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.5);
  margin: 0 0 22px;
}

.kit-addon__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #f4efe7;
  margin: 0 0 18px;
}

.kit-addon__title em {
  font-style: italic;
  font-weight: 400;
  color: #ffd4bd;
}

.kit-addon__body {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(244, 239, 231, 0.66);
  margin: 0 0 28px;
  max-width: 460px;
}

.kit-addon__deal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kit-addon__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.kit-addon__price-now {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fffaf3;
}

.kit-addon__price-was {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(244, 239, 231, 0.42);
  text-decoration: line-through;
  letter-spacing: 0.01em;
}

.kit-addon__price-line {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 231, 0.55);
}

.kit-addon__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 200, 168, 0.92);
  transition: color .25s ease;
}

.kit-addon__card:hover .kit-addon__link {
  color: #ffd4bd;
}

@media (max-width: 900px) {
  .kit-addon { padding: 56px 0; }
  .kit-addon__card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kit-addon__title { font-size: clamp(26px, 7vw, 36px); }
}

/* ─── Kit hero pair card (kit pages) ─────────────────────
   Patek-style "discover the matching piece" — quiet, editorial.
   No badges, no glow, no discount slam. Just a refined cross-product invitation.
   ───────────────────────────────────────────────────────── */
.kit-hero__pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 22px;
  row-gap: 4px;
  margin-top: 22px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(0, 0, 0, 0) 100%),
    rgba(12, 8, 7, 0.55);
  color: #efe9e2;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, background .25s ease;
}

.kit-hero__pair::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 140, 80, 0.55), rgba(255, 140, 80, 0));
}

.kit-hero__pair:hover {
  border-color: rgba(255, 140, 80, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 100%),
    rgba(16, 10, 9, 0.65);
}

.kit-hero__pair-eyebrow {
  grid-column: 1 / -1;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 200, 168, 0.72);
}

.kit-hero__pair-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fbf6ee;
  margin-top: 4px;
}

.kit-hero__pair-meta {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #a89c93;
  margin-top: 2px;
}

.kit-hero__pair-meta strong {
  color: #ece4d9;
  font-weight: 500;
}

.kit-hero__pair-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 200, 168, 0.92);
  transition: color .25s ease;
  white-space: nowrap;
}

.kit-hero__pair:hover .kit-hero__pair-link {
  color: #ffd4bd;
}

.kit-hero__pair--inline {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
}

/* Kits page — upsell sits above catalog: no double top gap */
#kits > .container > .kit-hero__pair--upsell {
  margin-top: 0;
  margin-bottom: 32px;
}

.kit-hero__info .kit-hero__pair--upsell {
  max-width: none;
  width: 100%;
  margin-top: 22px;
}

.kit-hero__pair--upsell {
  max-width: 780px;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  column-gap: 20px;
  row-gap: 9px;
  align-items: center;
  padding: 24px 26px;
  border-color: rgba(255, 166, 102, 0.24);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 158, 91, 0.32), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 218, 170, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026) 44%, rgba(0, 0, 0, 0) 100%),
    rgba(14, 10, 9, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(255, 140, 80, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.44),
    0 12px 34px rgba(255, 100, 48, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.kit-hero__pair--upsell::before {
  width: 3px;
  background: linear-gradient(180deg, #ff8d50, rgba(255, 198, 156, 0.7), rgba(255, 140, 80, 0));
}

.kit-hero__pair--upsell::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255, 226, 194, 0.16) 46%, transparent 56%, transparent 100%);
  transform: translateX(-42%);
  transition: transform .55s ease;
}

.kit-hero__pair--upsell:hover {
  border-color: rgba(255, 184, 120, 0.5);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 158, 91, 0.42), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(255, 218, 170, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.125), rgba(255, 255, 255, 0.034) 44%, rgba(0, 0, 0, 0) 100%),
    rgba(18, 12, 10, 0.94);
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 0 0 1px rgba(255, 140, 80, 0.1),
    0 34px 90px rgba(0, 0, 0, 0.52),
    0 14px 42px rgba(255, 112, 54, 0.16);
}

.kit-hero__pair--upsell:hover::after {
  transform: translateX(42%);
}

.kit-hero__pair-visual {
  position: relative;
  grid-row: 1 / span 4;
}

.kit-hero__pair--upsell .kit-hero__pair-visual {
  width: 124px;
  height: 92px;
}

.kit-hero__pair-cover {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.kit-hero__pair-cover--one {
  left: 0;
  top: 18px;
  width: 58px;
  height: 58px;
  z-index: 1;
  transform: rotate(-9deg);
}

.kit-hero__pair-cover--two {
  left: 34px;
  top: 4px;
  width: 58px;
  height: 58px;
  z-index: 2;
  transform: rotate(5deg);
}

.kit-hero__pair-cover--three {
  left: 62px;
  top: 26px;
  width: 60px;
  height: 60px;
  z-index: 3;
  transform: rotate(13deg);
}

.kit-hero__pair--upsell:hover .kit-hero__pair-cover--one {
  transform: translateX(-3px) rotate(-12deg);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.kit-hero__pair--upsell:hover .kit-hero__pair-cover--two {
  transform: translateY(-4px) rotate(2deg);
}

.kit-hero__pair--upsell:hover .kit-hero__pair-cover--three {
  transform: translateX(4px) rotate(16deg);
}

.kit-hero__pair--upsell .kit-hero__pair-eyebrow {
  grid-column: 2;
  color: rgba(255, 198, 156, 0.88);
}

.kit-hero__pair--upsell .kit-hero__pair-title {
  grid-column: 2;
  max-width: 430px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.02;
  letter-spacing: 0;
}

.kit-hero__pair--upsell .kit-hero__pair-meta {
  grid-column: 2;
  max-width: 460px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(239, 231, 222, 0.72);
}

.kit-hero__pair-options {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.kit-hero__pair-options span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 183, 128, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(251, 246, 238, 0.88);
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kit-hero__pair--upsell .kit-hero__pair-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  grid-column: 3;
  grid-row: 1 / span 4;
  align-self: center;
  min-height: 52px;
  padding: 0 23px 0 25px;
  border: 1px solid rgba(255, 158, 94, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 158, 94, 0.34), rgba(255, 118, 56, 0.16)),
    rgba(18, 10, 8, 0.96);
  color: #fff0e4;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 14px 26px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 118, 56, 0.12);
}

.kit-hero__pair--upsell .kit-hero__pair-link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.kit-hero__pair--upsell:hover .kit-hero__pair-link {
  border-color: rgba(255, 207, 162, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 176, 112, 0.44), rgba(255, 126, 60, 0.22)),
    rgba(22, 11, 8, 0.98);
}

.kit-hero__pair--upsell:hover .kit-hero__pair-link::after {
  transform: translateX(3px) rotate(45deg);
}

@media (max-width: 600px) {
  .kit-hero__pair {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 16px 16px 14px;
  }

  .kit-hero__pair-link {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    margin-top: 6px;
  }

  .kit-hero__pair--upsell {
    grid-template-columns: 1fr;
    padding: 20px 18px 18px;
    row-gap: 10px;
  }

  .kit-hero__pair-visual,
  .kit-hero__pair--upsell .kit-hero__pair-eyebrow,
  .kit-hero__pair--upsell .kit-hero__pair-title,
  .kit-hero__pair--upsell .kit-hero__pair-meta,
  .kit-hero__pair-options,
  .kit-hero__pair--upsell .kit-hero__pair-link {
    grid-column: 1;
  }

  .kit-hero__pair-visual {
    grid-row: auto;
    width: 96px;
    height: 68px;
    margin-bottom: 2px;
  }

  .kit-hero__pair--upsell .kit-hero__pair-title {
    font-size: 24px;
  }

  .kit-hero__pair--upsell .kit-hero__pair-link {
    grid-row: auto;
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
  }

  .kit-hero__pair--upsell .kit-hero__pair-visual {
    width: 108px;
    height: 80px;
  }

  .kit-hero__pair--upsell .kit-hero__pair-cover--one {
    width: 50px;
    height: 50px;
    left: 0;
    top: 14px;
  }

  .kit-hero__pair--upsell .kit-hero__pair-cover--two {
    width: 50px;
    height: 50px;
    left: 30px;
    top: 2px;
  }

  .kit-hero__pair--upsell .kit-hero__pair-cover--three {
    width: 52px;
    height: 52px;
    left: 54px;
    top: 22px;
  }
}


/* ─── Listing page hero ──────────────────────────────────── */
.bundles-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 46px) 0 34px;
  border-bottom: 1px solid rgba(255, 103, 48, 0.22);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 68, 0, 0.18), transparent 32%),
    radial-gradient(circle at 78% 28%, rgba(232, 144, 64, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(16, 9, 7, 0.98) 0%, rgba(8, 6, 6, 0.92) 100%);
}

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

.bundles-hero::before {
  inset: auto -12% -45% 36%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(255, 68, 0, 0.22), transparent 68%);
  filter: blur(18px);
}

.bundles-hero::after {
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.06) 47%, transparent 49%),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(255, 255, 255, 0.035) 73px, transparent 74px);
  mix-blend-mode: screen;
}

.bundles-hero__inner {
  position: relative;
  z-index: 1;
}

.bundles-hero__copy .section-heading {
  margin-bottom: 0;
  font-size: clamp(46px, 8vw, 86px);
  letter-spacing: -0.06em;
  text-shadow:
    0 0 34px rgba(255, 68, 0, 0.22),
    0 10px 44px rgba(0, 0, 0, 0.55);
}

.bundles-hero__lead {
  max-width: 540px;
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 239, 231, 0.6);
}

.bundles-section {
  position: relative;
  padding: 32px 0 64px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 68, 0, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 68, 0, 0.025), transparent 180px);
}

/* ─── Stack ──────────────────────────────────────────────── */
.bundles-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

/* ─── Card shell ─────────────────────────────────────────── */
/* ─── Listing: main block + stretch overlay (detail page) ─ */
.bundle-card__main {
  position: relative;
}

.bundle-card__stretch {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  outline: none;
}

.bundle-card__stretch:focus-visible {
  outline: 2px solid rgba(255, 140, 80, 0.95);
  outline-offset: 3px;
}

.bundle-card__media,
.bundle-card__body {
  position: relative;
  z-index: 0;
}

.bundle-card__foot-overview {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  flex: 1 1 auto;
  min-width: 0;
}

.bundle-card__foot-overview:hover .bundle-card__price-now,
.bundle-card__foot-overview:focus-visible .bundle-card__price-now {
  color: #ffeae0;
}

.bundle-card__foot-overview:focus-visible {
  outline: 2px solid rgba(255, 140, 80, 0.85);
  outline-offset: 2px;
  border-radius: 4px;
}

.bundle-card {
  --bundle-surface-top: #131010;
  --bundle-row: rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    180deg,
    var(--bundle-surface-top) 0%,
    var(--bg-card) 50%,
    #0c0809 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}

.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 112, 50, 0.28), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(255, 199, 126, 0.12), transparent 34%);
  transition: opacity 0.35s ease;
}

.bundle-card:hover {
  border-color: rgba(255, 68, 0, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 52px rgba(0, 0, 0, 0.68),
    0 0 40px rgba(255, 68, 0, 0.07);
  transform: translateY(-2px);
}

.bundle-card:hover::before {
  opacity: 1;
}

.bundle-card--featured {
  --bundle-surface-top: #1f1511;
  border: 1px solid rgba(255, 106, 50, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 68, 0, 0.22),
    0 1px 0 rgba(255, 170, 120, 0.12) inset,
    0 16px 56px rgba(0, 0, 0, 0.88),
    0 0 100px rgba(255, 68, 0, 0.16);
}

.bundle-card--featured:hover {
  border-color: rgba(255, 120, 60, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 85, 30, 0.45),
    0 1px 0 rgba(255, 200, 160, 0.1) inset,
    0 24px 64px rgba(0, 0, 0, 0.95),
    0 0 120px rgba(255, 68, 0, 0.24);
  transform: translateY(-4px);
}

.bundle-card--secondary {
  --bundle-surface-top: #1a1310;
  background: linear-gradient(
    180deg,
    var(--bundle-surface-top) 0%,
    var(--bg-card) 50%,
    #0e0807 100%
  );
  border: 1px solid rgba(255, 102, 54, 0.44);
  box-shadow:
    0 0 0 1px rgba(255, 68, 0, 0.14),
    0 1px 0 rgba(255, 160, 108, 0.08) inset,
    0 14px 48px rgba(0, 0, 0, 0.82),
    0 0 68px rgba(255, 68, 0, 0.09);
}

.bundle-card--secondary:hover {
  border-color: rgba(255, 118, 64, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 80, 26, 0.24),
    0 1px 0 rgba(255, 190, 140, 0.1) inset,
    0 20px 58px rgba(0, 0, 0, 0.9),
    0 0 96px rgba(255, 68, 0, 0.15);
  transform: translateY(-3px);
}

.bundle-card__rim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 140, 80, 0.65) 25%,
    #ff6420 52%,
    rgba(255, 140, 80, 0.65) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 5;
}

.bundle-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  pointer-events: none;
  padding: 5px 10px 4px;
  border: 1px solid rgba(255, 180, 122, 0.28);
  background: rgba(8, 4, 3, 0.55);
  color: rgba(255, 226, 211, 0.88);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

/* ─── Cover image strip (listing cards) ─────────────────── */
.bundle-card__media {
  display: block;
  position: relative;
  isolation: isolate;
  text-decoration: none;
}

.bundle-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 4, 3, 0.42), transparent 24%, transparent 72%, rgba(8, 4, 3, 0.5)),
    linear-gradient(180deg, transparent 44%, rgba(8, 4, 3, 0.9));
  box-shadow: inset 0 -22px 34px rgba(8, 4, 3, 0.88);
}

/* One class, works for any number of images */
.bundle-card__covers {
  display: flex;
  height: clamp(140px, 19vw, 178px);
  gap: 2px;
  background: #020101;
  overflow: hidden;
}

.bundle-card__covers img {
  flex: 1 1 0;
  min-width: 0;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.012);
  transition: flex-basis 0.45s ease, filter 0.35s ease, transform 0.45s ease;
}

.bundle-card:hover .bundle-card__covers img {
  filter: saturate(1.18) contrast(1.09) brightness(1.04);
  transform: scale(1.045);
}

.bundle-card__covers .bundle-card__cover--aura {
  object-fit: cover;
  object-position: center;
  background: #070606;
}

/* ─── Card body ──────────────────────────────────────────── */
.bundle-card__body {
  padding: 18px 24px 0;
}

.bundle-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bundle-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fffaf4;
  margin: 0;
  line-height: 1.2;
}

.bundle-card--featured .bundle-card__title {
  font-size: clamp(1.45rem, 3.8vw, 1.92rem);
  font-weight: 800;
}

.bundle-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bundle-card__title a:hover {
  color: #ffb090;
}

.bundle-card__badge {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 4px 10px 3px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
  color: rgba(255, 200, 168, 0.92);
  background: transparent;
  border: 1px solid rgba(255, 140, 80, 0.42);
}

/* Items displayed as a horizontal wrap — saves vertical space */
.bundle-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.bundle-card__item {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: #d0c5bf;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.025);
}

.bundle-card__item-mark {
  color: #ff7840;
  font-size: 11px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 68, 0, 0.8));
}

.bundle-card__stats {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: #a89991;
  line-height: 1.5;
}

.bundle-card--featured .bundle-card__stats {
  color: #d8c8c0;
  font-weight: 500;
}

/* ─── Card footer ────────────────────────────────────────── */
.bundle-card__foot {
  margin-top: 14px;
  padding: 14px 24px 20px;
  border-top: 1px solid var(--bundle-row);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.38) 100%);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  position: relative;
  z-index: 3;
}

.bundle-card--featured .bundle-card__foot {
  border-top-color: rgba(255, 68, 0, 0.28);
  background: linear-gradient(
    185deg,
    rgba(255, 68, 0, 0.1) 0%,
    rgba(30, 12, 4, 0.55) 38%,
    rgba(5, 2, 0, 0.65) 100%
  );
}

.bundle-card--secondary .bundle-card__foot {
  border-top-color: rgba(255, 68, 0, 0.24);
  background: linear-gradient(
    185deg,
    rgba(255, 68, 0, 0.085) 0%,
    rgba(26, 12, 6, 0.52) 40%,
    rgba(6, 2, 0, 0.62) 100%
  );
}

.bundle-card__price-now {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.35rem);
  font-weight: 800;
  color: #fffcf6;
  letter-spacing: -0.035em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 68, 0, 0.35);
}

.bundle-card__price-was {
  font-family: var(--font-display);
  font-size: 14px;
  color: #9e8f8c;
  text-decoration: line-through;
}

.bundle-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.bundle-card .btn.btn--fire {
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow:
    0 4px 22px rgba(255, 68, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.bundle-card .btn.btn--fire::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.2) 45%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
}

.bundle-card:hover .btn.btn--fire::after {
  transform: translateX(120%);
}

@media (min-width: 780px) {
  .bundle-card__main {
    display: grid;
    grid-template-columns: minmax(270px, 0.92fr) minmax(0, 1fr);
    min-height: 236px;
  }

  .bundle-card--featured .bundle-card__main {
    grid-template-columns: minmax(330px, 1.1fr) minmax(0, 1fr);
    min-height: 282px;
  }

  .bundle-card__media,
  .bundle-card__covers {
    height: 100%;
  }

  .bundle-card__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 54px 26px 20px;
  }
}

@media (max-width: 540px) {
  .bundles-hero {
    padding: calc(var(--nav-h) + 30px) 0 24px;
  }

  .bundles-section {
    padding: 22px 0 48px;
  }

  .bundle-card__body {
    padding: 14px 16px 0;
  }

  .bundle-card__foot {
    padding: 12px 16px 16px;
  }

  .bundle-card__foot .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bundle-card,
  .bundle-card:hover {
    transition: none;
    transform: none;
  }
}

/* ═══ Shared grid classes (detail pages + fallback) ══════════════════ */

.bundle-card__grid--storm6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 220px;
  gap: 3px;
  background: #020101;
}

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

.bundle-card__grid--producer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 3px;
  background: #020101;
}

.bundle-card__grid--producer > img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.bundle-card__grid--producer .bundle-card__grid--producer-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background:
    radial-gradient(ellipse 85% 90% at 50% 50%, rgba(255, 68, 0, 0.1), transparent 58%),
    repeating-linear-gradient(-14deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 5px, transparent 5px, transparent 10px),
    #0c0a09;
}

.bundle-card__producer-aura-img {
  width: 100%;
  height: 100%;
  min-height: 56px;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.bundle-card__producer-aura-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 192, 150, 0.75);
  text-align: center;
  margin: 0;
  padding: 6px 12px;
}

.bundle-card__grid--flames2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  gap: 3px;
  background: #020101;
}

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

.bundle-card__grid--storm4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 220px;
  gap: 3px;
  background: #020101;
}

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

/* ═══ Bundle detail pages (bundles/*.html) ═══════════════════════════ */

.bundle-detail-max {
  max-width: 760px;
  margin: 0 auto;
}

.kit-hero {
  padding: calc(var(--nav-h) + 44px) 0 48px;
}

.kit-hero__badges {
  margin-bottom: 18px;
}

.kit-hero__name {
  margin-bottom: 16px;
}

.kit-hero__desc {
  max-width: 640px;
  margin-bottom: 24px;
}

.bundle-detail-section {
  padding: 44px 0 80px;
}

.bundle-detail-mosaic {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 26px;
  background: transparent;
}

.bundle-detail-mosaic__grid--storm7 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1.6vw, 12px);
  background: transparent;
}

.bundle-detail-mosaic__grid--storm7 > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.bundle-detail-mosaic__aura {
  grid-column: 1 / -1;
  height: 100px;
  background:
    radial-gradient(ellipse 85% 90% at 50% 42%, rgba(255, 68, 0, 0.2), transparent 58%),
    repeating-linear-gradient(-14deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28) 5px, transparent 5px, transparent 10px),
    linear-gradient(160deg, #1a1410 0%, #0c0a09 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-detail-mosaic__aura--photo {
  position: relative;
  grid-column: auto;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  display: block;
  overflow: hidden;
  background: transparent;
}

.bundle-detail-mosaic__aura--photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bundle-detail-mosaic__aura--photo span {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px 14px;
  margin: 0;
  height: auto;
  background: linear-gradient(to top, rgba(5, 2, 0, 0.92) 0%, transparent);
}

.bundle-detail-mosaic__aura span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 192, 150, 0.95);
  text-shadow: 0 0 28px rgba(255, 68, 0, 0.45);
}

/* Detail collages: taller images on detail pages */
.bundle-detail-mosaic .bundle-card__grid--flames2 {
  height: auto;
  gap: clamp(8px, 1.6vw, 12px);
  background: transparent;
}

.bundle-detail-mosaic .bundle-card__grid--flames2 img,
.bundle-detail-mosaic .bundle-card__grid--storm4 img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bundle-detail-mosaic .bundle-card__grid--storm4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  height: auto;
  gap: clamp(8px, 1.6vw, 12px);
  background: transparent;
}

.bundle-detail-mosaic .bundle-card__grid--producer > img {
  height: auto;
  aspect-ratio: 1 / 1;
}

.bundle-detail-mosaic .bundle-card__grid--producer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: clamp(8px, 1.6vw, 12px);
  background: transparent;
}

.bundle-detail-mosaic .bundle-card__grid--producer .bundle-card__grid--producer-meta {
  grid-column: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  display: block;
  overflow: hidden;
  background: transparent;
}

.bundle-detail-mosaic .bundle-card__producer-aura-img {
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.bundle-detail-mosaic .bundle-card__producer-aura-label {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 18px 10px 10px;
  background: linear-gradient(to top, rgba(5, 2, 0, 0.9) 0%, transparent);
}

.bundle-detail-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: #d4cbc5;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bundle-detail-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin: 0 0 26px;
}

/* Line-item pricing table */
.bundle-include {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #171212 0%, #101010 45%, #0a0808 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.7);
}

.bundle-include__legend,
.bundle-include__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bundle-include > li:last-child {
  border-bottom: 0;
}

.bundle-include__legend {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a74;
  background: rgba(0, 0, 0, 0.32);
  padding-top: 11px;
  padding-bottom: 11px;
}

.bundle-include__legend-main {
  justify-self: start;
}

.bundle-include__legend-each,
.bundle-include__legend-bundle {
  justify-self: end;
  text-align: right;
}

.bundle-include__old,
.bundle-include__deal {
  justify-self: end;
  text-align: right;
}

.bundle-include__row--final {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 520px) {
  .bundle-include__legend {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

.bundle-include__name {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #f0e8e2;
  line-height: 1.4;
}

.bundle-include__spark {
  color: #ff7840;
  font-size: 11px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 68, 0, 0.75));
}

.bundle-include__old {
  font-family: var(--font-display);
  font-size: 14px;
  color: #a89892;
  text-decoration: line-through;
  white-space: nowrap;
  flex-shrink: 0;
}

.bundle-include__deal {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff2ea;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(255, 68, 0, 0.25);
}

.bundle-include__total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px 16px;
  padding: 18px 20px 17px;
  background:
    linear-gradient(180deg, rgba(255, 68, 0, 0.07) 0%, rgba(0, 0, 0, 0.18) 100%),
    rgba(255, 255, 255, 0.025);
  border-top: 2px solid rgba(255, 190, 150, 0.28);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff4ed;
}

.bundle-include__total-label {
  justify-self: start;
}

.bundle-include__total-separate {
  justify-self: end;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #a89892;
  text-decoration: line-through;
  white-space: nowrap;
  text-align: right;
}

.bundle-include__total-price {
  justify-self: end;
  color: #fff6ef;
  font-size: 19px;
  text-shadow: 0 0 28px rgba(255, 68, 0, 0.32);
  white-space: nowrap;
}

/* CTA card (detail) — reuses featured shell */
.bundle-detail-cta {
  display: block;
}

.bundle-detail-cta__inner {
  padding: 28px 32px 32px;
}

@media (max-width: 540px) {
  .bundle-detail-cta__inner {
    padding: 22px 20px 26px;
  }
}

.bundle-detail-cta__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 18px;
}

.bundle-detail-cta__solo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #f1e5de;
  letter-spacing: 0.01em;
}

.bundle-detail-cta__solo span {
  text-decoration: line-through;
  opacity: 0.95;
  color: #a99993;
  margin-left: 6px;
}

.bundle-detail-cta__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.bundle-detail-cta .bundle-card__price-now {
  font-size: clamp(2rem, 6vw, 3.05rem);
}

.bundle-detail-cta .bundle-card__price-was {
  display: none;
}

.bundle-detail-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: #c9bdb8;
  line-height: 1.65;
  margin: 0;
}

.bundle-detail-note a {
  color: var(--fire);
  text-decoration: none;
  font-weight: 600;
}

.bundle-detail-note a:hover {
  text-decoration: underline;
}

/* Hero bundle badge — same pill as listing */
.kit-hero__badges .bundle-card__badge {
  align-self: center;
}

/* Checkout card: no vertical lift */
.bundle-detail-cta.bundle-card:hover,
.bundle-detail-cta.bundle-card--featured:hover {
  transform: none;
}

@media (max-width: 720px) {
  .bundle-detail-mosaic__grid--storm7 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle-detail-mosaic .bundle-card__grid--storm4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .kit-hero {
    padding: calc(var(--nav-h) + 30px) 0 34px;
  }

  .bundle-detail-section {
    padding: 34px 0 64px;
  }

  .bundle-detail-mosaic {
    margin-top: 22px;
  }
}

@media (max-width: 460px) {
  .bundle-detail-mosaic__grid--storm7,
  .bundle-detail-mosaic .bundle-card__grid--producer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bundle-include__legend,
  .bundle-include__row,
  .bundle-include__total {
    gap: 7px 10px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .bundle-include__row {
    padding: 13px 15px;
  }

  .bundle-include__old {
    font-size: 13px;
  }

  .bundle-include__deal {
    font-size: 14px;
  }

  .bundle-include__total-separate {
    font-size: 13px;
  }

  .bundle-include__total {
    padding: 16px 15px;
  }

  .bundle-include__name {
    gap: 8px;
    font-size: 14px;
  }

  .bundle-detail-cta__buy {
    align-items: stretch;
  }

  .bundle-detail-cta__buy .btn {
    width: 100%;
  }
}

/* ═══ License notice ═══════════════════════════════════════════════════ */
.bundles-license {
  max-width: 640px;
  margin: 36px auto 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(176, 163, 157, 0.62);
  text-align: center;
}

.bundles-license strong {
  font-weight: 500;
  color: rgba(214, 200, 192, 0.78);
}

/* ═══ Lead capture ═════════════════════════════════════════════════════ */
.bundles-leadcapture {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 26px 28px 28px;
  border: 1px solid rgba(255, 102, 54, 0.32);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 100, 50, 0.18), transparent 45%),
    linear-gradient(180deg, #181010 0%, #0d0808 100%);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 200, 160, 0.08);
}

.bundles-leadcapture__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bundles-leadcapture__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bundles-leadcapture__eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin: 0;
}

.bundles-leadcapture__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff5ed;
  margin: 0;
  line-height: 1.2;
}

.bundles-leadcapture__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: #b9aca5;
}

.bundles-leadcapture__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.bundles-leadcapture__form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 5, 5, 0.85);
  color: #fff5ed;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bundles-leadcapture__form input[type="email"]::placeholder {
  color: #6b5d58;
}

.bundles-leadcapture__form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255, 120, 60, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 68, 0, 0.15);
}

.bundles-leadcapture__form .btn {
  flex: 0 0 auto;
}

.bundles-leadcapture__note {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #897973;
}

@media (max-width: 540px) {
  .bundles-leadcapture {
    padding: 22px 18px 24px;
  }

  .bundles-leadcapture__form .btn {
    width: 100%;
  }
}

/* ═══ Sticky mobile CTA ════════════════════════════════════════════════ */
.bundles-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px 10px;
  border-radius: 0;
  border: 1px solid rgba(255, 140, 80, 0.32);
  border-left: 2px solid var(--fire);
  background: rgba(8, 5, 4, 0.88);
  backdrop-filter: blur(16px) saturate(140%);
  color: #f0ede8;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.bundles-sticky-cta:hover,
.bundles-sticky-cta:focus-visible {
  border-color: rgba(255, 140, 80, 0.55);
  background: rgba(14, 9, 8, 0.95);
}

.bundles-sticky-cta__label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(240, 237, 232, 0.9);
}

.bundles-sticky-cta__price {
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #fff5ed;
}

.bundles-sticky-cta__arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--fire);
  transition: transform 0.25s ease;
}

.bundles-sticky-cta:hover .bundles-sticky-cta__arrow {
  transform: translateX(3px);
}

@media (max-width: 720px) {
  .bundles-sticky-cta {
    display: flex;
  }

  /* Only shift body when sticky CTA exists */
  body:has(.bundles-sticky-cta) {
    padding-bottom: 76px;
  }
}

/* ═══ Bundle cross-sell box (kit pages + homepage) ═════════════════════ */
.kit-cta__bundle {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 580px;
  margin: 32px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 132, 60, 0.45);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 100, 50, 0.12) 0%, rgba(255, 68, 0, 0.04) 100%),
    rgba(15, 9, 8, 0.85);
  color: #fff5ed;
  text-decoration: none;
  text-align: left;
  box-shadow:
    0 12px 38px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 200, 160, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kit-cta__bundle:hover,
.kit-cta__bundle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 152, 86, 0.85);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(255, 68, 0, 0.18),
    inset 0 1px 0 rgba(255, 200, 160, 0.12);
}

.kit-cta__bundle--inline {
  margin-top: 38px;
}

.kit-cta__bundle-eyebrow {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fire);
  white-space: nowrap;
  padding: 5px 9px;
  border: 1px solid rgba(255, 120, 60, 0.55);
  border-radius: 999px;
  background: rgba(255, 68, 0, 0.08);
}

.kit-cta__bundle-title {
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.kit-cta__bundle-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff8f1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 0 26px rgba(255, 68, 0, 0.35);
}

.kit-cta__bundle-price span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #a89992;
  text-decoration: line-through;
  text-shadow: none;
  margin-top: 2px;
}

.kit-cta__bundle-arrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--fire);
  transition: transform 0.25s ease;
}

.kit-cta__bundle:hover .kit-cta__bundle-arrow {
  transform: translateX(4px);
}

@media (max-width: 540px) {
  .kit-cta__bundle {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 14px 16px;
  }

  .kit-cta__bundle-title {
    flex-basis: 100%;
    font-size: 14.5px;
  }

  .kit-cta__bundle-price {
    margin-left: 0;
  }
}
