/* MTM Ticket Upsell — side cart block (matches the dark glass cart theme) */

.mtm-upsell {
	margin: 14px 15px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	color: #fff;
}

/* A/B variant B wrapper — hidden until body.ab-{slug}-b is present
   (rule added inline by the plugin). */
.mtm-upsell.variant_b {
	display: none;
}

.mtm-upsell-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.mtm-upsell-badge {
	flex: 0 0 auto;
	background: #e11418;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 9px 10px;
	border-radius: 8px;
}

.mtm-upsell-text {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	color: #fff;
}

/* Price benefit row: its own quiet sub-card, label left / prices right —
   same visual grammar as the cart totals rows */
.mtm-upsell-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 10px 14px;
	margin: 0 0 12px;
}
.mtm-upsell-price-label {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
	white-space: nowrap;
}
.mtm-upsell-price-vals {
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.mtm-upsell-price-old,
.mtm-upsell-price-old .amount,
.mtm-upsell-price-old .amount bdi {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: line-through;
}
.mtm-upsell-price-new,
.mtm-upsell-price-new .amount,
.mtm-upsell-price-new .amount bdi {
	font-size: 19px;
	font-weight: 800;
	color: #e11418;
	line-height: 1;
	letter-spacing: 0.2px;
}

/* Pill button, same style family as the red Checkout button */
.mtm-upsell-btn {
	display: block;
	width: 100%;
	padding: 13px 18px;
	background: #e11418;
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.mtm-upsell-btn:hover { opacity: 0.85; }
.mtm-upsell-btn:active { transform: scale(0.98); }
.mtm-upsell-btn:disabled { opacity: 0.6; cursor: wait; }

.mtm-upsell-error {
	margin: 8px 0 0;
	font-size: 12px;
	color: #ff9d9d;
}

/* Slim variant shown once 2+ tickets are in the cart */
.mtm-upsell--more {
	padding: 14px 16px;
}
.mtm-upsell--more .mtm-upsell-price {
	margin-bottom: 0;
}
.mtm-upsell--more .mtm-upsell-text {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}
.mtm-upsell-badge--more {
	background: rgba(225, 20, 24, 0.18);
	color: #ff6b6e;
	border: 1px solid rgba(225, 20, 24, 0.45);
}

/* ---------- Discounted line: strikethrough original, green new price ---------- */

/* Base (light contexts: cart page / checkout) */
del.mtu-orig {
	opacity: 0.55;
	margin-right: 4px;
}
ins.mtu-new {
	text-decoration: none;
	font-weight: 700;
	color: #e11418;
}

/* Dark side cart overrides (beat the theme's red bdi rules on specificity) */
.xoo-wsc-container del.mtu-orig,
.xoo-wsc-container del.mtu-orig .amount bdi {
	color: rgba(255, 255, 255, 0.5);
}
.xoo-wsc-container ins.mtu-new,
.xoo-wsc-container ins.mtu-new .amount bdi {
	color: #e11418;
}

/* ---------- "You save" row in side cart + cart/checkout totals ---------- */

.mtu-saved-row .xoo-wsc-ft-amt-value,
tr.mtu-saved-row td {
	color: #e11418;
	font-weight: 700;
}
.xoo-wsc-container .mtu-saved-row .xoo-wsc-ft-amt-value,
.xoo-wsc-container .mtu-saved-row .xoo-wsc-ft-amt-value .amount bdi {
	color: #e11418;
}
