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

body.lead-cbs {
  margin: 0;
  font-family: Sora, "Space Grotesk", sans-serif;
  background: #101010;
  color: #e8eef6;
  line-height: 1.6;
}

.lead-cbs .page-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.lead-cbs .cbs-header {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #101010;
  padding: 0 20px;
}

.lead-cbs .cbs-header svg {
  width: 24px;
  fill: #fff;
}

.lead-cbs .cbs-logo {
  width: 150px;
}

.lead-cbs .cbs-logo img {
  display: block;
  width: 100%;
  filter: brightness(0) invert(1);
}

.lead-cbs .content-wrap {
  background: #101010;
  padding-bottom: 24px;
}

.lead-cbs .live-viewers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(251, 37, 37, 0.14);
  border-radius: 6px;
  background: rgba(196, 0, 0, 0.11);
}

.lead-cbs .live-viewers__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.lead-cbs .live-viewers__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef2626;
  animation: liveDotPulse 1.2s ease-out infinite;
}

.lead-cbs .live-viewers__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  text-align: right;
}

.lead-cbs .live-viewers__copy strong {
  display: inline-block;
  min-width: 28px;
  color: #fff;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.lead-cbs .live-viewers__copy strong.is-changing {
  animation: viewerCountPop 0.42s ease;
}

.lead-cbs .video_vturb {
  margin-bottom: 8px;
}

.lead-cbs .headline-block {
  padding: 20px 0 8px;
}

.lead-cbs .headline-block h1 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.lead-cbs .headline-block .subheadline {
  margin: 0 0 16px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
}

.lead-cbs .breaking-badge {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 2px;
  background: #b91c1c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}

.lead-cbs .hidden {
  display: none !important;
}

.lead-cbs .checkout-section {
  display: grid;
  gap: 26px;
  padding: 26px 0;
  background: #101010;
  max-width: 560px;
  margin: 0 auto;
}

.lead-cbs .checkout-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 24px 22px 28px;
  border: 2px solid #1f3863;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #e9f0f7);
  color: #1d1f23;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.lead-cbs .checkout-card--featured {
  border-width: 4px;
  box-shadow: 0 18px 38px rgba(31, 56, 99, 0.35);
}

.lead-cbs .checkout-card__feature-label {
  width: calc(100% + 44px);
  margin: -24px -22px 24px;
  padding: 13px 14px;
  background: #1f3863;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.lead-cbs .checkout-card h2 {
  margin: 0 0 12px;
  color: #1d1f23;
  font-size: clamp(34px, 9.5vw, 54px);
  font-weight: 900;
  line-height: 0.95;
}

.lead-cbs .checkout-card__supply {
  margin: 0 0 18px;
  color: #50565f;
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 800;
}

.lead-cbs .checkout-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(220px, 58vw, 310px);
  margin: 0 0 24px;
}

.lead-cbs .checkout-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* The bottle mockups are landscape (5:3 for the 2/3-packs, 2:1 for the 6-pack)
   where the dropper art they replaced was portrait. Sizing them inside the old
   fixed-height box left a band of dead space, so the box hugs the art instead
   and each pack is scaled by width - larger pack, wider image. */
.lead-cbs .checkout-card__image {
  height: auto;
}

.lead-cbs .checkout-card__image--two img {
  width: min(230px, 78%);
}

.lead-cbs .checkout-card__image--three img {
  width: min(275px, 92%);
}

.lead-cbs .checkout-card__image--six img {
  width: 100%;
}

.lead-cbs .checkout-card__image--stacked {
  position: relative;
  height: clamp(300px, 76vw, 410px);
  margin-top: -4px;
  margin-bottom: 18px;
}

.lead-cbs .checkout-card__stack {
  position: absolute;
  width: min(82%, 360px);
}

.lead-cbs .checkout-card__stack--back {
  z-index: 1;
  opacity: 0.82;
  transform: translate(-12%, -18%) scale(0.78);
}

.lead-cbs .checkout-card__stack--front {
  z-index: 2;
  transform: translate(12%, 18%) scale(0.78);
}

.lead-cbs .checkout-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.lead-cbs .checkout-card__price strong {
  color: #1f3863;
  font-size: clamp(66px, 16vw, 88px);
  font-weight: 900;
  line-height: 0.9;
}

.lead-cbs .checkout-card__price span {
  color: #1d1f23;
  font-size: 21px;
  font-weight: 900;
  line-height: 0.92;
  text-align: left;
}

.lead-cbs .checkout-card__daily {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 30px;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
}

.lead-cbs .checkout-card__daily svg {
  width: 32px;
  color: #60656c;
}

.lead-cbs .checkout-card__benefits {
  width: 100%;
  margin: 0 0 34px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 4.3vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  list-style-position: inside;
}

.lead-cbs .checkout-card__benefits li + li {
  margin-top: 14px;
}

.lead-cbs .checkout-card__save,
.lead-cbs .checkout-card__total strong,
.lead-cbs .checkout-card__shipping {
  color: #1f3863;
}

.lead-cbs .checkout-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 82px;
  border-radius: 14px;
  background: linear-gradient(180deg, #35d46f, #159c48);
  color: #fff;
  font-size: clamp(26px, 6.6vw, 34px);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(21, 156, 72, 0.24);
  pointer-events: none;
}

.lead-cbs .checkout-card__button svg {
  width: 38px;
}

.lead-cbs .checkout-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 18px 0 24px;
  color: #263039;
  font-size: 18px;
  font-weight: 500;
}

.lead-cbs .checkout-card__secure svg {
  width: 18px;
}

.lead-cbs .checkout-card__cards {
  width: min(270px, 66%);
  margin-bottom: 28px;
}

.lead-cbs .checkout-card__total {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.lead-cbs .checkout-card__total span {
  color: #858585;
  text-decoration: line-through;
}

.lead-cbs .checkout-card__shipping {
  margin: 14px 0 0;
  font-size: 24px;
  font-weight: 900;
}


@media (max-width: 719px) {
  .lead-cbs .checkout-section .checkout-card--featured {
    order: 1;
  }

  .lead-cbs .checkout-section .checkout-card:last-child {
    order: 2;
  }

  .lead-cbs .checkout-section .checkout-card:first-child {
    order: 3;
  }
}

@media (min-width: 720px) {
  .lead-cbs .checkout-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 22px;
    max-width: 1120px;
  }

  .lead-cbs .checkout-card {
    padding: 18px 16px 22px;
  }

  .lead-cbs .checkout-card--featured {
    transform: translateY(-8px);
  }

  .lead-cbs .checkout-section .checkout-card:first-child,
  .lead-cbs .checkout-section .checkout-card:last-child {
    margin-top: 88px;
  }

  .lead-cbs .checkout-card__feature-label {
    width: calc(100% + 32px);
    margin: -18px -16px 18px;
    font-size: 13px;
  }

  .lead-cbs .checkout-card h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .lead-cbs .checkout-card__supply,
  .lead-cbs .checkout-card__total,
  .lead-cbs .checkout-card__shipping {
    font-size: 18px;
  }

  .lead-cbs .checkout-card__image {
    height: auto;
    margin-bottom: 18px;
  }

  .lead-cbs .checkout-card__image--stacked {
    height: 220px;
    margin-bottom: 14px;
  }

  .lead-cbs .checkout-card__price strong {
    font-size: 58px;
  }

  .lead-cbs .checkout-card__price {
    margin-bottom: 18px;
  }

  .lead-cbs .checkout-card__price span {
    font-size: 16px;
  }

  .lead-cbs .checkout-card__daily {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .lead-cbs .checkout-card__benefits {
    padding: 16px 14px;
    margin-bottom: 24px;
    font-size: 15px;
  }

  .lead-cbs .checkout-card__button {
    min-height: 64px;
    font-size: 22px;
  }

  .lead-cbs .checkout-card__button svg {
    width: 26px;
  }

  .lead-cbs .checkout-card__secure {
    font-size: 13px;
  }
}

@keyframes liveDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 38, 38, 0.55);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 38, 38, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 38, 38, 0);
    transform: scale(1);
  }
}

@keyframes viewerCountPop {
  0% {
    color: #fff;
    transform: translateY(0) scale(1);
  }
  45% {
    color: #ffdfdf;
    transform: translateY(-1px) scale(1.08);
  }
  100% {
    color: #fff;
    transform: translateY(0) scale(1);
  }
}

/* CartPanda "Secure Order" seal */
.cartpanda.banner-hidden .cpd-default,
.cartpanda#vsl .cpd-default {
  display: none !important;
}
