/* Bulteau Pricing — Frontend styles, fed by CSS variables set inline per page. */

.bp-per-unit-price,
body .bp-per-unit-price {
	display: block;
	margin-top: 6px;
	font-size: 0.9em;
	color: #555;
	font-weight: 400;
}

.bp-tier-table-wrap {
	margin: var(--bp-table-margin, 18px) 0;
	clear: both;
}

.bp-tier-table-wrap .bp-tier-table-title {
	font-size: var(--bp-table-title-size, 13px) !important;
	font-weight: 700 !important;
	margin: 0 0 10px !important;
	padding: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--bp-table-cell-text, #2a2a2a) !important;
	border: none !important;
}

.bp-tier-table-wrap .bp-tier-table {
	width: 100%;
	max-width: 540px;
	border-collapse: collapse;
	font-size: var(--bp-table-cell-size, 13px);
	background: var(--bp-table-cell-bg, #fff);
	border: var(--bp-table-border-width, 1px) solid var(--bp-table-border, #e0e0e0);
	border-radius: var(--bp-table-border-radius, 4px);
	overflow: hidden;
	margin: 0;
	box-shadow: var(--bp-table-shadow, none);
}

.bp-tier-table-wrap .bp-tier-table thead tr,
.bp-tier-table-wrap .bp-tier-table thead th {
	background: var(--bp-table-header-bg, #1a1f2c) !important;
	color: var(--bp-table-header-text, #fff) !important;
	border: none !important;
}

.bp-tier-table-wrap .bp-tier-table th {
	padding: var(--bp-table-pad-y, 8px) var(--bp-table-pad-x, 12px) !important;
	text-align: left;
	font-weight: var(--bp-table-header-weight, 500) !important;
	font-size: var(--bp-table-header-size, 11px) !important;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.bp-tier-table-wrap .bp-tier-table td {
	padding: var(--bp-table-pad-y, 8px) var(--bp-table-pad-x, 12px) !important;
	border-top: var(--bp-table-border-width, 1px) solid var(--bp-table-border, #e0e0e0) !important;
	background: transparent !important;
	color: var(--bp-table-cell-text, #2a2a2a) !important;
	font-size: var(--bp-table-cell-size, 13px) !important;
}

.bp-tier-table-wrap .bp-tier-table tbody tr {
	cursor: pointer;
}

.bp-tier-table-wrap .bp-tier-table tbody tr:hover td {
	background: rgba(0, 0, 0, 0.04) !important;
}

.bp-tier-table-wrap .bp-tier-table tbody tr.bp-tier-active td {
	background: var(--bp-table-active-bg, rgba(24, 95, 165, 0.08)) !important;
	font-weight: 600;
}

.bp-tier-table-wrap .bp-tier-table tbody tr.bp-tier-active td:first-child {
	border-left: 3px solid var(--bp-table-accent, #185FA5) !important;
	padding-left: calc(var(--bp-table-pad-x, 12px) - 3px) !important;
}

.bp-tier-table-wrap .bp-tier-table tbody tr.bp-tier-best td:first-child {
	border-left: 3px solid var(--bp-table-best-border, #00a32a) !important;
	padding-left: calc(var(--bp-table-pad-x, 12px) - 3px) !important;
}

.bp-badge-best {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 6px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	background: var(--bp-table-badge-bg, #00a32a);
	color: var(--bp-table-badge-text, #fff);
	border-radius: 3px;
	vertical-align: middle;
}

.bp-tier-top-message,
.bp-tier-bottom-message {
	margin: 8px 0;
	font-size: 13px;
	color: #444;
	font-style: italic;
}

.bp-tier-top-message { margin-bottom: 12px; }
.bp-tier-bottom-message { margin-top: 10px; }

@media (max-width: 600px) {
	.bp-tier-table-wrap .bp-tier-table {
		font-size: 12px !important;
	}
	.bp-tier-table-wrap .bp-tier-table th,
	.bp-tier-table-wrap .bp-tier-table td {
		padding: 6px 8px !important;
	}
}
