/**
 * Customer-facing "Applied Promotions" panel rendered in the cart and
 * checkout totals table.
 *
 * Targets the <tr.topzoo-applied-promotions> injected by
 * PromotionCheckoutDisplay::render_review_panel().
 */

.topzoo-applied-promotions th {
	font-weight: 600;
	vertical-align: top;
}

.topzoo-applied-promotions__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.topzoo-applied-promotions__item {
	align-items: flex-start;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	color: #14532d;
	display: flex;
	gap: 10px;
	padding: 10px 12px;
}

.topzoo-applied-promotions__item--flash_sale {
	background: #fff7ed;
	border-color: #fed7aa;
	color: #7c2d12;
}

.topzoo-applied-promotions__item--combo {
	background: #faf5ff;
	border-color: #e9d5ff;
	color: #581c87;
}

.topzoo-applied-promotions__item--freeship {
	background: #ecfdf5;
	border-color: #a7f3d0;
	color: #065f46;
}

.topzoo-applied-promotions__icon {
	font-size: 18px;
	line-height: 1;
	margin-top: 2px;
}

.topzoo-applied-promotions__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.topzoo-applied-promotions__name {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.topzoo-applied-promotions__type {
	font-size: 11px;
	letter-spacing: 0.04em;
	opacity: 0.75;
	text-transform: uppercase;
}

.topzoo-applied-promotions__detail {
	font-size: 12px;
	opacity: 0.85;
}

.topzoo-applied-promotions__savings {
	font-weight: 700;
	white-space: nowrap;
}

.topzoo-applied-promotions__total {
	color: #15803d;
	font-size: 13px;
	font-weight: 600;
	margin: 10px 0 0;
}
