/* Container Bridge — واجهة الجملة
   الألوان من هوية كونتينر: كحلي #1B3665 · برتقالي #EF6133 */

:root {
	--cb-navy: #1B3665;
	--cb-navy-deep: #142A50;
	--cb-orange: #EF6133;
	--cb-line: #E6E2DC;
	--cb-ground: #F7F5F1;
	--cb-ink: #1A1F2B;
	--cb-muted: #6E7382;
	--cb-good: #1E7A46;
}

/* ── سعر «من …» ─────────────────────────────────────── */

.cb-price {
	font-weight: 700;
	color: var(--cb-navy-deep);
}

.cb-price-note {
	display: block;
	margin-top: 4px;
	font-size: .82em;
	font-weight: 400;
	color: var(--cb-muted);
}

/* ── جدول الشرائح ───────────────────────────────────── */

.cb-tiers {
	margin: 22px 0;
	border: 1px solid var(--cb-line);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.cb-tiers-head {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 13px 18px;
	background: var(--cb-ground);
	border-bottom: 1px solid var(--cb-line);
	color: var(--cb-navy-deep);
}

.cb-tiers-badge {
	margin-inline-start: auto;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cb-good);
	background: #EAF4EE;
	border-radius: 999px;
	padding: 4px 11px;
}

.cb-tiers-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: 14.5px;
}

.cb-tiers-table th,
.cb-tiers-table td {
	padding: 12px 18px;
	text-align: start;
	border: 0;
	border-bottom: 1px solid #EFEBE4;
}

.cb-tiers-table thead th {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cb-muted);
	background: #FCFBF9;
}

.cb-tiers-table tbody tr:last-child td {
	border-bottom: 0;
}

.cb-tiers-table .cb-tier-price {
	font-weight: 700;
	color: var(--cb-navy-deep);
	font-variant-numeric: tabular-nums;
}

.cb-tiers-foot {
	margin: 0;
	padding: 11px 18px;
	font-size: 12.5px;
	color: var(--cb-muted);
	background: #FCFBF9;
	border-top: 1px solid #EFEBE4;
}

/* ── تنبيه الشريحة التالية ──────────────────────────── */

.cb-upsell {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 20px;
	padding: 18px 22px;
	background: var(--cb-navy-deep);
	border-radius: 12px;
	color: #fff;
}

.cb-upsell-icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	background: var(--cb-orange);
	border-radius: 10px;
}

.cb-upsell-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cb-upsell-text strong {
	font-size: 16px;
	line-height: 1.55;
	color: #fff;
}

.cb-upsell-text span {
	font-size: 13.5px;
	line-height: 1.65;
	color: #A9BADA;
}

.cb-upsell .amount,
.cb-upsell bdi {
	color: #FFC9AF;
}

/* ── العربون ────────────────────────────────────────── */

.cb-deposit-row th,
.cb-deposit-row td {
	color: #7A5409;
}

.cb-deposit-notice {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 0 18px;
	padding: 16px 18px;
	background: #FFF8E8;
	border: 1px solid #F0DFB0;
	border-radius: 10px;
}

.cb-deposit-notice strong {
	font-size: 15px;
	color: #7A5409;
}

.cb-deposit-notice span {
	font-size: 13px;
	line-height: 1.75;
	color: #8A6B22;
}

/* ── الموبايل ───────────────────────────────────────── */

@media (max-width: 600px) {
	.cb-upsell {
		align-items: flex-start;
		padding: 16px;
		gap: 12px;
	}

	.cb-upsell-text strong {
		font-size: 14.5px;
	}

	.cb-tiers-table th,
	.cb-tiers-table td {
		padding: 10px 12px;
		font-size: 13.5px;
	}

	.cb-tiers-head {
		padding: 12px 14px;
	}
}
