/* ── CB Specs Block ─────────────────────────────────────────────── */
:root {
	--cbsp-accent: #c8402a;
	--cbsp-accent-lt: rgba(200,64,42,.08);
	--cbsp-bg: #ffffff;
}

.cbsp-section {
	background: var(--cbsp-bg);
	padding: 80px 0;
}

.cbsp-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Header ── */
.cbsp-header {
	margin-bottom: 48px;
}

.cbsp-tag {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--cbsp-accent);
	margin-bottom: 10px;
}

.cbsp-title {
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.5px;
	color: #0e0e0e;
	margin: 0 0 14px;
}

.cbsp-desc {
	font-size: 15px;
	font-weight: 300;
	color: #6a6a6a;
	line-height: 1.7;
	max-width: 640px;
	margin: 0;
}

/* ── Body layouts ── */
.cbsp-body {
	display: grid;
	gap: 56px;
	align-items: start;
}

.cbsp-two-col {
	grid-template-columns: 1fr 1fr;
}

.cbsp-one-col {
	grid-template-columns: 1fr;
}

.cbsp-col {
	min-width: 0;
}

/* ── Spec table ── */
.cbsp-table {
	width: 100%;
	border-collapse: collapse;
}

.cbsp-table tr {
	border-bottom: 1px solid #e8e6e2;
}

.cbsp-table tr:last-child {
	border-bottom: none;
}

.cbsp-table td {
	padding: 13px 0;
	font-size: 14px;
	vertical-align: top;
	line-height: 1.5;
}

.cbsp-param {
	color: #7a7a7a;
	font-weight: 500;
	width: 44%;
	padding-right: 16px !important;
}

.cbsp-value {
	font-weight: 600;
	color: #0e0e0e;
}

/* ── Tags ── */
.cbsp-tags-block {
	margin-top: 28px;
}

.cbsp-tags-title {
	font-size: 13px;
	font-weight: 700;
	color: #3a3a3a;
	margin: 0 0 10px;
}

.cbsp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cbsp-tag-pill {
	display: inline-block;
	padding: 6px 14px;
	background: #f7f6f3;
	border: 1px solid #e2e0dc;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	color: #3a3a3a;
	cursor: default;
	transition: background .15s, border-color .15s, color .15s;
}

.cbsp-tag-pill:hover {
	background: var(--cbsp-accent-lt);
	border-color: var(--cbsp-accent);
	color: var(--cbsp-accent);
}

/* ── Surcharges ── */
.cbsp-surcharges {
	background: #f7f6f3;
	border: 1px solid #e2e0dc;
	border-radius: 12px;
	padding: 24px 26px;
	margin-bottom: 20px;
}

.cbsp-sur-title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .3px;
	color: #0e0e0e;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e2e0dc;
}

.cbsp-sur-rows {
	display: flex;
	flex-direction: column;
}

.cbsp-sur-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #e2e0dc;
	font-size: 14px;
	gap: 12px;
}

.cbsp-sur-row:last-child {
	border-bottom: none;
}

.cbsp-sur-label {
	color: #3a3a3a;
	font-weight: 500;
	flex: 1;
}

.cbsp-sur-price {
	font-weight: 700;
	color: var(--cbsp-accent);
	white-space: nowrap;
	flex-shrink: 0;
}

/* ── Notice ── */
.cbsp-notice {
	padding: 16px 20px;
	background: var(--cbsp-accent-lt);
	border-left: 4px solid var(--cbsp-accent);
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	color: #3a3a3a;
	line-height: 1.65;
}

.cbsp-notice-title {
	color: var(--cbsp-accent);
	display: inline;
	font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 860px) {
	.cbsp-two-col {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.cbsp-section {
		padding: 56px 0;
	}
}

@media (max-width: 500px) {
	.cbsp-table td {
		padding: 11px 0;
		font-size: 13px;
	}
	.cbsp-param {
		width: 42%;
	}
	.cbsp-section {
		padding: 40px 0;
	}
}
