/* =========================================================================
   TNC FlipBook 3D — Pricing Table Discount
   Styles the strikethrough "was" price, the discounted "now" price, the
   per-card "10% OFF" badge and the live "expires in" note. Scoped under the
   pricing table so nothing leaks into the rest of the page.
   ========================================================================= */

/* Let a long "was  now" pair wrap instead of overflowing a narrow card. */
.tnc3dprt-pricing-wrapper.tncfb-discounted .tnc3dprt-card-price{
	flex-wrap:wrap;
}

/* Original price, struck through. */
.tnc3dprt-pricing-wrapper .tncfb-was{
	text-decoration:line-through;
	color:#94a3b8;
	font-weight:600;
	opacity:.85;
	margin-right:.4em;
}

/* Inside the big amount the "was" is smaller; in the small desc line it
   stays the same size as the surrounding text. */
.tnc3dprt-amount .tncfb-was{ font-size:.55em; }
.tnc3dprt-card-desc .tncfb-was{ font-size:1em; margin-right:.35em; }

.tnc3dprt-pricing-wrapper .tncfb-now{ color:inherit; }

/* Live "expires in" note, placed as a sibling directly below the header. */
.tncfb-deal-note{
	margin-top:12px;
	padding-top:27px;
	padding-bottom:76px;
	text-align:center;
	font-family:"DM Sans",sans-serif;
	font-size:14px;
	font-weight:600;
	color:#0f2d35;
}
.tncfb-deal-note strong{
	color:#0055d4;
	font-variant-numeric:tabular-nums;
}

@media (prefers-reduced-motion:reduce){
	.tncfb-deal-note strong{ transition:none; }
}
