/* ==========================================================================
   V3 VARIATION — Competitor-style checkout layout
   Pixel-perfect copy with PrivateByRight branding
   ========================================================================== */

/* --------------------------------------------------------------------------
   V3 FONT SIZE OVERRIDE — bump all sizes up one level for Satoshi
   Scale: xs 11→13, sm 13→15, base 15→16, md 16→18, lg 18→22, xl 22→26
   -------------------------------------------------------------------------- */
html:has(.variation-v3),
.variation-v3 {
  overflow-x: hidden;
}

.variation-v3 {
  --font-size-xs: 13px;
  --font-size-sm: 15px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 22px;
  --font-size-xl: 26px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;
}

/* --------------------------------------------------------------------------
   V3 HEADER
   -------------------------------------------------------------------------- */

.variation-v3 .v3-header {
  background: transparent;
  border-bottom: none;
  padding: 0 var(--space-4);
  height: 64px;
}

.variation-v3 .v3-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.variation-v3 .v3-header__left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.variation-v3 .v3-header__left .logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.variation-v3 .v3-header__left .logo__name {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-text-primary);
}

.variation-v3 .v3-header__secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: #4b5563;
}

.variation-v3 .v3-header__secure svg {
  flex-shrink: 0;
}

.variation-v3 .v3-header__right {
  display: flex;
  align-items: center;
}

.variation-v3 .v3-country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  cursor: pointer;
  position: relative;
}

/* v3-country-dropdown and v3-country-flag-only removed — replaced by custom SVG dropdown */

/* Hide the existing site-header when V3 is active */
.variation-v3 .site-header {
  display: none;
}

/* --------------------------------------------------------------------------
   V3 MAIN LAYOUT
   -------------------------------------------------------------------------- */

.variation-v3 .v3-main {
  padding: var(--space-4) var(--space-4) var(--space-8);
  min-height: calc(100vh - 64px);
  background: #f2f2f2;
}

.variation-v3 .v3-main__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-6);
  align-items: start;
}

/* Hide the existing main-content when V3 is active */
.variation-v3 .main-content {
  display: none;
}

/* --------------------------------------------------------------------------
   V3 CARDS (Email + Payment)
   -------------------------------------------------------------------------- */

.variation-v3 .v3-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
}

.variation-v3 .v3-card__heading {
  font-size: 26px;
  font-weight: 700;
  color: #302B2B;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

/* --------------------------------------------------------------------------
   V3 EMAIL INPUT WITH INFO ICON
   -------------------------------------------------------------------------- */

.variation-v3 .v3-input-with-icon {
  position: relative;
}

.variation-v3 .v3-input-with-icon .form-input {
  padding-right: 48px;
}

.variation-v3 .v3-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

/* Tooltip trigger button */
.variation-v3 .v3-tooltip-trigger {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 50%;
  transition: background-color 0.15s ease;
}

.variation-v3 .v3-tooltip-trigger:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.variation-v3 .v3-tooltip-trigger:hover svg {
  stroke: #64748b;
}

/* Tooltip popup */
.variation-v3 .v3-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: #1e293b;
  color: #f1f5f9;
  font-size: 14px;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.variation-v3 .v3-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.variation-v3 .v3-tooltip__arrow {
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #1e293b;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   V3 PAYMENT METHOD SELECTOR
   -------------------------------------------------------------------------- */

.variation-v3 .v3-payment-option {
  padding: var(--space-4) 0;
}

.variation-v3 .v3-payment-radio {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--font-size-base);
}

.variation-v3 .v3-payment-radio input[type="radio"] {
  display: none;
}

.variation-v3 .v3-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border-input);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.variation-v3 .v3-payment-radio input[type="radio"]:checked + .v3-radio-circle {
  border-color: #2B4CFA;
  background: #2B4CFA;
  box-shadow: inset 0 0 0 3px var(--color-white);
}

.variation-v3 .v3-payment-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
}

.variation-v3 .v3-payment-method-icon img {
  display: block;
}

.variation-v3 .v3-payment-label {
  font-weight: 700;
  color: var(--color-text-primary);
}

.variation-v3 .v3-payment-divider {
  height: 1px;
  background: var(--color-border);
}

.variation-v3 .v3-card-brands {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.variation-v3 .v3-card-brands img {
  height: 20px;
  width: auto;
}

.variation-v3 .v3-payment-option--active .v3-payment-radio {
  /* Active state styling */
}

/* Make the payment option with card brands a flex row */
.variation-v3 .v3-payment-option--active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.variation-v3 .v3-payment-option--active .v3-payment-radio {
  flex: 1;
}

/* --------------------------------------------------------------------------
   V3 CARD FORM — Single-row card number + expiry + CVV
   -------------------------------------------------------------------------- */

.variation-v3 .v3-card-form {
  padding-top: var(--space-2);
}

/* McAfee-style mobile card form — hidden on desktop */
.variation-v3 .v3-card-form-mcafee {
  display: none;
}

.variation-v3 .v3-card-input-row {
  display: flex;
  border: 1.5px solid var(--color-border-input);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.variation-v3 .v3-card-input-row:focus-within,
.variation-v3 .v3-card-input-row.is-focused {
  border-color: #2B4CFA;
  box-shadow: 0 0 0 3px rgba(43, 76, 250, 0.10);
}

.variation-v3 .v3-card-input-row .form-input {
  border: none;
  border-radius: 0;
  padding: 14px var(--space-4);
}

.variation-v3 .v3-card-input-row .form-input:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Stripe Element mount points inside the card row */
.variation-v3 .v3-card-input-row .stripe-element-mount {
  padding: 14px var(--space-4);
  min-height: 48px;
  display: block;
}

/* Force Stripe's __PrivateStripeElement to fill the container width.
   Stripe sets width via inline style with --stripeElementWidth: 1px initially,
   so we must use !important to override it. */
.variation-v3 .v3-card-input-row .stripe-element-mount > div {
  width: 100% !important;
}
.variation-v3 .v3-card-input-row .stripe-element-mount .__PrivateStripeElement {
  width: 100% !important;
}

/* Stripe card error message */
.stripe-card-error {
  color: #ef4444;
  font-size: 13px;
  margin-bottom: var(--space-3);
  padding: 0 2px;
}

.variation-v3 .v3-card-input-row__number {
  flex: 3;
  border-right: 1px solid var(--color-border);
}

.variation-v3 .v3-card-input-row__expiry {
  flex: 1.2;
  border-right: 1px solid var(--color-border);
}

.variation-v3 .v3-card-input-row__cvv {
  flex: 1;
}

/* --------------------------------------------------------------------------
   V3-2YR CARD FORM — Individual field boxes (stacked layout)
   -------------------------------------------------------------------------- */

/* Override payment-form gap for v3-2yr — use margin-bottom on children instead */
.variation-v3-2yr .v3-card-form .payment-form {
  gap: 0;
}

.variation-v3-2yr .v3-card-field-single {
  border: 1.5px solid var(--color-border-input);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.variation-v3-2yr .v3-card-field-single:focus-within {
  border-color: #2B4CFA;
  box-shadow: 0 0 0 3px rgba(43, 76, 250, 0.10);
}

.variation-v3-2yr .v3-card-field-single .stripe-element-mount {
  padding: 14px var(--space-4);
  min-height: 48px;
  display: block;
}

.variation-v3-2yr .v3-card-field-single .stripe-element-mount > div {
  width: 100% !important;
}

.variation-v3-2yr .v3-card-field-single .stripe-element-mount .__PrivateStripeElement {
  width: 100% !important;
}

.variation-v3-2yr .v3-card-field-single .form-input {
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: 0;
}

.variation-v3-2yr .v3-card-field-single .form-input:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Exp + CVV row: remove margin-bottom from individual wrappers inside form-row */
.variation-v3-2yr .form-row .v3-card-field-single {
  margin-bottom: 0;
}

/* Consistent vertical gap between form rows */
.variation-v3-2yr .v3-card-form .form-row {
  margin-bottom: 8px;
}

.variation-v3-2yr .v3-card-form .form-row:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   V3 SELECT (State dropdown)
   -------------------------------------------------------------------------- */

.variation-v3 .v3-select-wrapper {
  position: relative;
}

.variation-v3 .v3-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.variation-v3 .v3-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   V3 ORDER SUMMARY (Right column)
   -------------------------------------------------------------------------- */

.variation-v3 .v3-summary-col {
  position: sticky;
  top: var(--space-8);
}

.variation-v3 .v3-order-summary {
  /* Card styling applied via .v3-card class */
}

.variation-v3 .v3-order-summary__heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.variation-v3 .v3-order-summary__product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2);
}

.variation-v3 .v3-order-summary__product-name {
  font-size: var(--font-size-md);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.variation-v3 .v3-order-summary__original-price {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

/* When no coupon, show price without strikethrough */
.variation-v3 .v3-order-summary__original-price:only-child {
  text-decoration: none;
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Savings row */
.variation-v3 .v3-order-summary__savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.variation-v3 .v3-order-summary__savings-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.variation-v3 .v3-savings-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

.variation-v3 .v3-savings-amount {
  color: #16a34a;
  font-weight: 600;
  font-size: var(--font-size-base);
}

/* Features */
.variation-v3 .v3-order-summary__features {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

/* Divider */
.variation-v3 .v3-order-summary__divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-3) 0;
}

/* Line items */
.variation-v3 .v3-order-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  padding: var(--space-2) 0;
}

.variation-v3 .v3-order-summary__tax {
  color: var(--color-text-secondary);
}

/* Total */
.variation-v3 .v3-order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text-primary);
  padding: var(--space-2) 0 var(--space-4);
}

.variation-v3 .v3-order-summary__total-amount {
  font-size: 18px;
  font-weight: 700;
}

/* Auto renewal terms */
.variation-v3 .v3-order-summary__renewal {
  padding: var(--space-4) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.variation-v3 .v3-order-summary__renewal strong {
  color: var(--color-text-primary);
  display: block;
  margin-bottom: var(--space-2);
}

.variation-v3 .v3-order-summary__renewal p strong {
  display: inline;
  margin-bottom: 0;
}

.variation-v3 .v3-order-summary__renewal a {
  color: #2c2c2c;
  text-decoration: underline;
}

/* Legal */
.variation-v3 .v3-order-summary__legal {
  padding: var(--space-3) 0 var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.variation-v3 .v3-order-summary__legal a {
  color: #2c2c2c;
  text-decoration: underline;
}

/* Buy Now button — uses blue brand color */
.variation-v3 .v3-btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px var(--space-6);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #ffffff;
  background-color: #2B4CFA;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  font-family: inherit;
}

.variation-v3 .v3-btn-buy:hover {
  background-color: #1a3ad4;
}

.variation-v3 .v3-btn-buy:active {
  transform: scale(0.98);
}

/* PayPal selected state */
.variation-v3 .v3-paypal-info {
  display: none;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.variation-v3 .v3-paypal-info.is-visible {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.variation-v3 .v3-paypal-info__icon {
  flex-shrink: 0;
  color: #64748b;
}

.variation-v3 .v3-btn-buy--paypal {
  background-color: #0072C1 !important;
  color: #ffffff !important;
}

.variation-v3 .v3-btn-buy--paypal:hover {
  background-color: #005a9e !important;
}

.variation-v3 .v3-paypal-pay4 {
  display: none;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0 0;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  max-width: 300px;
}

.variation-v3 .v3-paypal-pay4.is-visible {
  display: flex;
}

.variation-v3 .v3-paypal-pay4 a {
  color: #0072C1;
  text-decoration: underline;
}

.variation-v3 .v3-paypal-pay4__logo {
  flex-shrink: 0;
}

/* Email validation error */
.variation-v3 .v3-email-error {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-error);
}

.variation-v3 .v3-email-error.is-visible {
  display: flex;
}

.variation-v3 .v3-email-error svg {
  flex-shrink: 0;
}

.variation-v3 .form-input--error {
  border-color: var(--color-error) !important;
  box-shadow: none !important;
}

/* 30-day guarantee */
.variation-v3 .v3-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.variation-v3 .v3-guarantee svg {
  flex-shrink: 0;
}

/* Payment method (confirmation) */
.variation-v3 .v3-order-summary__payment-method {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
}

.variation-v3 .v3-order-summary__payment-method strong {
  color: var(--color-text-primary);
}

/* Order ID (confirmation) */
.variation-v3 .v3-order-summary__order-id {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding: var(--space-2) 0 var(--space-4);
}

.variation-v3 .v3-order-summary__order-id a {
  color: #2B4CFA;
}

/* --------------------------------------------------------------------------
   V3 MOBILE SUMMARY TOGGLE (hidden on desktop)
   -------------------------------------------------------------------------- */

.variation-v3 .v3-summary-toggle {
  display: none; /* hidden on desktop */
}

.variation-v3 .v3-summary-toggle__plan {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.variation-v3 .v3-summary-toggle__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--color-text-secondary);
}

.variation-v3 .v3-summary-toggle.is-open .v3-summary-toggle__chevron {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   V3 MOBILE 2-STEP FLOW — Base styles (hidden on desktop)
   -------------------------------------------------------------------------- */

/* Mobile steps are hidden on desktop */
.variation-v3 .v3-mobile-step {
  display: none;
}

.variation-v3 .v3-mobile-bottom-bar {
  display: none;
}

/* Mobile step 2 summary (inside checkout form) hidden on desktop */
.variation-v3 .v3-mobile-step2-summary {
  display: none;
}

/* Mobile terms checkbox hidden on desktop */
.variation-v3 .v3-mobile-terms-checkbox {
  display: none;
}

/* Mobile terms text hidden on desktop */
.variation-v3 .v3-mobile-terms-text {
  display: none;
}

/* Mobile guarantee hidden on desktop */
.variation-v3 .v3-mobile-guarantee {
  display: none;
}

/* --------------------------------------------------------------------------
   V3 MOBILE ORDER CARD (Step 1)
   -------------------------------------------------------------------------- */

.variation-v3 .v3-mobile-order {
  padding: var(--space-4);
  padding-bottom: 160px; /* space for fixed bottom bar — generous to avoid covering elements */
}

.variation-v3 .v3-mobile-order__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
}

.variation-v3 .v3-mobile-order__subtitle {
  display: block;
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.variation-v3 .v3-mobile-order__product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}

.variation-v3 .v3-mobile-order__product-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.variation-v3 .v3-mobile-order__product-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.variation-v3 .v3-mobile-order__feature {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.variation-v3 .v3-mobile-order__product-right {
  text-align: right;
  flex-shrink: 0;
}

.variation-v3 .v3-mobile-order__price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.variation-v3 .v3-mobile-order__per-month {
  display: block;
  font-size: 14px;
  color: #16a34a;
  line-height: 1.4;
  border-top: 1px dashed #16a34a;
  padding-top: 4px;
  margin-top: 4px;
}

.variation-v3 .v3-mobile-order__per-month strong {
  font-size: 18px;
  color: #16a34a;
}

/* Auto renewal terms section (inside merged card) */
.variation-v3 .v3-mobile-order__terms-card {
  border-left: none;
  padding: 48px 48px 28px 48px;
  margin-top: 24px;
  margin-left: -24px;
  margin-right: -24px;
  border-top: 1px solid var(--color-border);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.variation-v3 .v3-mobile-order__terms-heading {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.variation-v3 .v3-mobile-order__terms-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.variation-v3 .v3-mobile-order__terms-body a {
  color: var(--color-text-primary);
  text-decoration: underline;
}

/* 30-day guarantee cue row (mobile only) */
.variation-v3 .v3-mobile-order__guarantee-row {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  margin-left: -24px;
  margin-right: -24px;
}

.variation-v3 .v3-mobile-order__guarantee-row span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* First-time savings row (mobile only) */
.variation-v3 .v3-mobile-order__savings-row {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  margin-left: -24px;
  margin-right: -24px;
}

.variation-v3 .v3-mobile-order__savings-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* Sub-total and Tax rows (inside merged card) */
.variation-v3 .v3-mobile-order__totals {
  padding: 16px 24px 0;
  margin-top: 16px;
  margin-left: -24px;
  margin-right: -24px;
  border-top: 1px solid var(--color-border);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.variation-v3 .v3-mobile-order__totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--color-text-primary);
  padding: 4px 0;
}

.variation-v3 .v3-mobile-order__totals-row strong {
  font-weight: 700;
}

/* Trust cues */
.variation-v3 .v3-mobile-trust-cues {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  padding: 32px 0 16px;
}

.variation-v3 .v3-mobile-trust-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   V3 MOBILE FIXED BOTTOM BAR
   -------------------------------------------------------------------------- */

.variation-v3 .v3-mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: var(--color-white);
  padding: 16px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.variation-v3 .v3-mobile-bottom-bar__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 14px;
}

.variation-v3 .v3-mobile-bottom-bar__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.variation-v3 .v3-mobile-bottom-bar__amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.variation-v3 .v3-mobile-bottom-bar__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  background: #2B4CFA;
  color: #ffffff;
}

.variation-v3 .v3-mobile-bottom-bar__cta img {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.variation-v3 .v3-mobile-bottom-bar__cta:hover {
  background: #1a3ad4;
}

.variation-v3 .v3-mobile-bottom-bar__cta:active {
  transform: scale(0.98);
}

.variation-v3 .v3-mobile-bottom-bar__cta--buy {
  background: #2B4CFA;
}

.variation-v3 .v3-mobile-bottom-bar__cta--buy:hover {
  background: #1a3ad4;
}

/* --------------------------------------------------------------------------
   V3 MOBILE STEP 2 — Collapsible Order Summary (inside checkout form)
   -------------------------------------------------------------------------- */

.variation-v3 .v3-mobile-step2-summary__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
}

.variation-v3 .v3-mobile-step2-summary__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.variation-v3 .v3-mobile-step2-summary__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.variation-v3 .v3-mobile-step2-summary__plan {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.variation-v3 .v3-mobile-step2-summary__link {
  font-size: 15px;
  color: #2B4CFA;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

.variation-v3 .v3-mobile-step2-summary__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
}

.variation-v3 .v3-mobile-step2-summary__body.is-open {
  max-height: 800px;
}

/* --------------------------------------------------------------------------
   V3 MOBILE TERMS CHECKBOX
   -------------------------------------------------------------------------- */

.variation-v3 .v3-mobile-terms-checkbox__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: #eef2ff;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.variation-v3 .v3-mobile-terms-checkbox__label input[type="checkbox"] {
  display: none;
}

.variation-v3 .v3-mobile-terms-checkbox__box {
  width: 20px;
  height: 20px;
  border: 2px solid #2B4CFA;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}

.variation-v3 .v3-mobile-terms-checkbox__label input[type="checkbox"]:checked + .v3-mobile-terms-checkbox__box {
  background: #2B4CFA;
}

.variation-v3 .v3-mobile-terms-checkbox__label input[type="checkbox"]:checked + .v3-mobile-terms-checkbox__box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.variation-v3 .v3-mobile-terms-checkbox__text a {
  color: #2B4CFA;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   V3 MOBILE GUARANTEE
   -------------------------------------------------------------------------- */

.variation-v3 .v3-mobile-guarantee {
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   V3 RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  /* Show mobile step 1 when active */
  .variation-v3 .v3-mobile-step.is-active {
    display: block;
  }

  /* Show mobile bottom bar */
  .variation-v3 .v3-mobile-bottom-bar {
    display: block;
  }

  /* Show mobile step 2 summary */
  .variation-v3 .v3-mobile-step2-summary {
    display: block;
    margin-bottom: 16px;
  }

  /* Show mobile terms text */
  .variation-v3 .v3-mobile-terms-text {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-text-secondary);
    padding: 0 4px;
  }
  .variation-v3 .v3-mobile-terms-text a {
    color: #2B4CFA;
    text-decoration: underline;
  }

  /* Show mobile guarantee */
  .variation-v3 .v3-mobile-guarantee {
    display: flex;
    margin-top: 8px;
  }

  /* Show mobile guarantee row and savings row */
  .variation-v3 .v3-mobile-order__guarantee-row {
    display: flex;
  }
  .variation-v3 .v3-mobile-order__savings-row {
    display: flex;
  }

  /* Hide desktop order summary column on mobile */
  .variation-v3 .v3-summary-col {
    display: none;
  }

  /* Hide desktop Buy Now button on mobile (use bottom bar instead) */
  /* Use off-screen positioning instead of display:none so .click() still works */
  .variation-v3 .v3-btn-buy {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* Hide desktop auto-renewal terms on mobile */
  .variation-v3 .v3-renewal-terms {
    display: none;
  }

  /* Hide desktop 30-day guarantee on mobile */
  .variation-v3 .v3-guarantee {
    display: none;
  }

  /* Layout adjustments */
  .variation-v3 .v3-main__inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .variation-v3 .v3-main {
    padding: var(--space-4);
    padding-bottom: 160px; /* space for fixed bottom bar — generous to avoid covering elements */
  }

  .variation-v3 .v3-header {
    border-bottom: 1px solid var(--color-border);
  }

  .variation-v3 .v3-header__inner {
    padding: 0;
  }

  .variation-v3 .v3-header__secure {
    display: none;
  }

  .variation-v3 .v3-card {
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: none;
  }

  .variation-v3 .v3-card__heading {
    font-size: 22px;
  }

  /* Card form: stack the card input row vertically on mobile */
  .variation-v3 .v3-card-input-row {
    flex-direction: column;
    border: none;
    gap: 0;
    margin-bottom: 0;
  }

  .variation-v3 .v3-card-input-row__number,
  .variation-v3 .v3-card-input-row__expiry,
  .variation-v3 .v3-card-input-row__cvv {
    border-right: none;
    border: 1.5px solid var(--color-border-input);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
  }

  .variation-v3 .v3-card-input-row .stripe-element-mount {
    padding: 14px 16px;
    min-height: 48px;
    display: block;
  }

  /* v3-2yr: keep Exp+CVV and Zip+State side by side on mobile */
  .variation-v3-2yr .v3-card-form > .payment-form > .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex-direction: unset;
  }

  .variation-v3-2yr .v3-card-form > .payment-form > .form-row .form-group {
    width: auto;
  }

  /* Show name + zip rows on mobile (stacked) */
  .variation-v3 .v3-card-form > .payment-form > .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .variation-v3 .v3-card-form > .payment-form > .form-row .form-group {
    width: 100%;
  }

  /* Hide radio circles on mobile — use tab-style instead */
  .variation-v3 .v3-radio-circle {
    display: none;
  }

  /* Logo area — unconstrained on mobile (wordmark replaces icon+text, no crowding) */
  .variation-v3 .v3-header__left .logo {
    overflow: visible;
  }
  .variation-v3 .v3-header__left .logo__img {
    width: 28px;
    height: 28px;
  }
  .variation-v3 .v3-header__left .logo__name {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Fix 4: Typography on mobile step 1 — bumped up one level for Satoshi */
  .variation-v3 .v3-mobile-order__subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .variation-v3 .v3-mobile-order__product-name {
    font-size: 15px;
  }
  .variation-v3 .v3-mobile-order__feature {
    font-size: 13px;
  }
  .variation-v3 .v3-mobile-order__price {
    font-size: 15px;
  }
  .variation-v3 .v3-mobile-order__per-month {
    font-size: 12px;
  }
  .variation-v3 .v3-mobile-order__per-month strong {
    font-size: 15px;
  }
  .variation-v3 .v3-mobile-order__terms-heading {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .variation-v3 .v3-mobile-order__terms-body {
    font-size: 13px;
    line-height: 1.6;
  }
  .variation-v3 .v3-mobile-order__totals-row {
    font-size: 14px;
  }
  .variation-v3 .v3-mobile-trust-cue {
    font-size: 12px;
  }

  /* Fix 7: Underline-style horizontal payment tabs on mobile */
  .variation-v3 .v3-payment-methods-wrapper {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 20px;
    gap: 0;
  }
  .variation-v3 .v3-payment-option {
    flex: 1;
    padding: 0;
    display: flex;
  }
  .variation-v3 .v3-payment-radio {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 10px 4px 0;
    border: none;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    color: #9ca3af;
    width: 100%;
    min-height: 60px;
  }
  .variation-v3 .v3-payment-label {
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }
  .variation-v3 .v3-payment-option--active .v3-payment-radio {
    border-bottom-color: #2B4CFA;
    color: var(--color-text-primary);
    background: transparent;
  }
  .variation-v3 .v3-payment-radio:hover {
    color: var(--color-text-primary);
  }
  /* payment-label font rules merged into the earlier block */
  .variation-v3 .v3-payment-option--active .v3-payment-label {
    color: var(--color-text-primary);
  }
  .variation-v3 .v3-card-brands {
    display: none;
  }
  .variation-v3 .v3-payment-option--active {
    display: block;
  }
  .variation-v3 .v3-payment-divider {
    display: none;
  }

  /* ===== NEW MOBILE-ONLY FIXES ===== */

  /* Fix: White background on mobile */
  .variation-v3 .v3-main {
    background: #ffffff;
  }

  /* Fix: Remove card styling from Email and Payment sections on mobile */
  /* Target the Email card and Payment card (first two .v3-card children in step 1) */
  .variation-v3 .v3-content-col .signup-step[data-step="1"] > .v3-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 8px;
  }

  /* Tighten spacing: reduce gap between email and payment sections */
  .variation-v3 .v3-content-col .signup-step[data-step="1"] > .v3-card + .v3-card {
    margin-top: 4px;
  }

  /* Heading size for mobile step 2 */
  .variation-v3 .v3-content-col .signup-step[data-step="1"] > .v3-card .v3-card__heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* Step2 collapsible order summary — no outer card wrapper */
  .variation-v3 .v3-mobile-step2-summary {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 16px;
  }

  /* Fix: Light yellow background on terms checkbox — aligned with rest */
  .variation-v3 .v3-mobile-terms-checkbox {
    background: #f0f3ff;
    border-radius: var(--radius-md);
    padding: 12px 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
  }

  /* Hide PayPal info box on mobile */
  .variation-v3 .v3-paypal-info {
    display: none !important;
  }

  /* Checkbox error state */
  .variation-v3 .v3-mobile-terms-checkbox--error {
    border: 2px solid #e53e3e;
    animation: v3-shake 0.4s ease;
  }
  .variation-v3 .v3-mobile-terms-checkbox--error .v3-mobile-terms-checkbox__box {
    border-color: #e53e3e;
  }

  /* Confirmation step — extra bottom padding since fixed bar is hidden */
  .variation-v3 .signup-step[data-step="2"] {
    padding-bottom: 40px;
  }

  @keyframes v3-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
  }

  /* Fix: Smaller 30-day guarantee icon on step 2 */
  .variation-v3 .v3-mobile-guarantee__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* Mobile country selector — handled by custom SVG dropdown component */
}

@media (max-width: 600px) {
  .variation-v3 .v3-header {
    padding: 0 var(--space-4);
    border-bottom: 1px solid var(--color-border);
  }

  .variation-v3 .v3-main {
    padding: var(--space-4) var(--space-4);
    padding-bottom: 160px;
  }

  .variation-v3 .form-row {
    grid-template-columns: 1fr;
  }

  .variation-v3 .v3-mobile-trust-cues {
    gap: var(--space-4);
  }
}

/* --------------------------------------------------------------------------
   V3 PROCESSING OVERLAY (reuse existing)
   -------------------------------------------------------------------------- */

/* The processing overlay from interactions.css works as-is */

/* --------------------------------------------------------------------------
   V3 HIDE EXISTING LAYOUT ELEMENTS
   -------------------------------------------------------------------------- */

/* Hide the unified-box layout that other variations use */
.variation-v3 .unified-box {
  display: none;
}

/* Hide footer on V3 — reference has no footer */
.variation-v3 .site-footer {
  display: none;
}

/* Set page background to match reference gray */
.variation-v3 .page-wrapper {
  background: #f2f2f2;
}


/* ==========================================================================
   V3 LEGAL MODALS — Auto Renewal, License Agreement, Privacy Notice
   ========================================================================== */

/* Overlay backdrop */
.v3-legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: v3ModalFadeIn 0.2s ease;
}

.v3-legal-modal-overlay.is-open {
  display: flex;
}

/* Modal panel */
.v3-legal-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: v3ModalSlideUp 0.25s ease;
}

/* Modal header */
.v3-legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.v3-legal-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.v3-legal-modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f3f3;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.v3-legal-modal__close:hover {
  background: #e0e0e0;
}

.v3-legal-modal__close svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  stroke-width: 2;
}

/* Modal body — scrollable */
.v3-legal-modal__body {
  padding: 20px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

.v3-legal-modal__body h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: #1a1a1a;
}

.v3-legal-modal__body h2:first-child {
  margin-top: 0;
}

.v3-legal-modal__body p {
  margin: 0 0 12px;
}

.v3-legal-modal__body ul,
.v3-legal-modal__body ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.v3-legal-modal__body li {
  margin-bottom: 4px;
}

.v3-legal-modal__body a {
  color: #2B4CFA;
  text-decoration: underline;
}

.v3-legal-modal__body strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* Animations */
@keyframes v3ModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Mobile responsive */
@media (max-width: 900px) {
  .v3-legal-modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .v3-legal-modal {
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    animation: v3ModalSlideUpMobile 0.3s ease;
  }

  .v3-legal-modal__header {
    padding: 16px 20px 12px;
  }

  .v3-legal-modal__title {
    font-size: 16px;
  }

  .v3-legal-modal__body {
    padding: 16px 20px 20px;
    font-size: 13px;
  }
}

@keyframes v3ModalSlideUpMobile {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* Legal link styling within modal triggers */
.v3-legal-link {
  color: #555;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}

.v3-legal-link:hover {
  color: #2B4CFA;
}


/* ─── Express Checkout in V3 ─────────────────────────────────────────────── */

.v3-express-info {
  padding: 12px 0 4px 32px;
}

.v3-express-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.v3-express-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.v3-express-btn:hover {
  opacity: 0.88;
}

.v3-express-info__text {
  font-size: 12px;
  color: var(--color-text-muted, #64748b);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .v3-express-info {
    padding-left: 0;
    padding-top: 10px;
  }
}

/* --------------------------------------------------------------------------
   V3-2YR PAYMENT METHOD SELECTION — Radio list (desktop) + Tabs (mobile)
   -------------------------------------------------------------------------- */

/* ── Desktop: Radio list ── */
.variation-v3 .v3-pay-radio-list {
  display: block;
  margin-bottom: var(--space-2);
}

.variation-v3 .v3-pay-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background-color 0.15s;
  border-radius: 8px;
}

.variation-v3 .v3-pay-radio:hover {
  background-color: #f8fafc;
}

.variation-v3 .v3-pay-radio__circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.variation-v3 .v3-pay-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.variation-v3 .v3-pay-radio input[type="radio"]:checked ~ .v3-pay-radio__circle {
  border-color: #2B4CFA;
}

.variation-v3 .v3-pay-radio input[type="radio"]:checked ~ .v3-pay-radio__circle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2B4CFA;
}

.variation-v3 .v3-pay-radio__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #475569;
}

.variation-v3 .v3-pay-radio__icon img {
  height: 20px;
  width: auto;
}

.variation-v3 .v3-pay-radio__label {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
}

/* Larger, bolder payment labels for v3-2yr and NMFC variations */
.variation-v3-2yr .v3-pay-radio__label {
  font-size: 17px;
  font-weight: 700;
}

.variation-v3 .v3-pay-radio__brands {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.variation-v3 .v3-pay-radio__brands img {
  height: 22px;
  width: auto;
  border-radius: 3px;
}

.variation-v3 .v3-pay-radio__divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 0 16px;
}

/* ── Mobile: Tab switcher ── */
.variation-v3 .v3-pay-tabs {
  display: none;
  position: relative;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: var(--space-4);
}

.variation-v3 .v3-pay-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}

.variation-v3 .v3-pay-tab--active {
  color: #1e293b;
}

.variation-v3 .v3-pay-tab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.variation-v3 .v3-pay-tab__icon img {
  height: 20px;
  width: auto;
}

.variation-v3 .v3-pay-tab__label {
  white-space: nowrap;
  font-size: 11px;
}

/* Larger, bolder mobile tab labels for v3-2yr and NMFC variations */
.variation-v3-2yr .v3-pay-tab__label {
  font-size: 13px;
  font-weight: 700;
}

.variation-v3 .v3-pay-tabs__indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: #2B4CFA;
  border-radius: 1px;
  transition: left 0.25s ease, width 0.25s ease;
}

/* ── Responsive: show tabs on mobile, hide radio list ── */
@media (max-width: 600px) {
  .variation-v3 .v3-pay-radio-list {
    display: none;
  }

  .variation-v3 .v3-pay-tabs {
    display: flex;
  }
}
