/* Bakker Bundle Builder — front-end */

.bbb-bundle {
	--bbb-accent: #E57C23;
	--bbb-bg: #1c1c1c;
	--bbb-card: #2a2a2a;
	--bbb-border: #3a3a3a;
	--bbb-text: #f2f2f2;
	--bbb-muted: #b5b5b5;

	background: var(--bbb-bg);
	color: var(--bbb-text);
	border-radius: 14px;
	padding: 26px;
	margin: 28px 0;
}

.bbb-bundle .bbb-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.bbb-bundle .bbb-step {
	background: var(--bbb-card);
	border: 1px solid var(--bbb-border);
	border-radius: 12px;
	padding: 18px;
}

.bbb-bundle .bbb-step-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.bbb-bundle .bbb-step-num {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid var(--bbb-accent);
	color: var(--bbb-accent);
	font-weight: 700;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.bbb-bundle .bbb-step-label {
	font-weight: 700;
	font-size: 16px;
}

.bbb-bundle .bbb-optional {
	display: inline-block;
	margin-left: 6px;
	font-style: normal;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--bbb-muted);
}

.bbb-bundle .bbb-select {
	width: 100%;
	padding: 11px 12px;
	border-radius: 8px;
	border: 1.5px solid var(--bbb-border);
	background: #1f1f1f;
	color: var(--bbb-text);
	font-size: 14px;
	line-height: 1.3;
}

.bbb-bundle .bbb-select:focus {
	outline: none;
	border-color: var(--bbb-accent);
}

.bbb-bundle .bbb-select.bbb-chosen {
	border-color: var(--bbb-accent);
}

.bbb-bundle .bbb-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--bbb-border);
}

.bbb-bundle .bbb-total {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
}

.bbb-bundle .bbb-total-amount {
	font-size: 26px;
	font-weight: 800;
	color: var(--bbb-accent);
}

.bbb-bundle .bbb-total-was {
	margin-left: 8px;
	font-size: 15px;
	color: var(--bbb-muted);
	text-decoration: line-through;
	font-weight: 400;
}

.bbb-bundle .bbb-discount-badge {
	background: var(--bbb-accent);
	color: #fff;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.bbb-bundle .bbb-submit {
	background: var(--bbb-accent);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 14px 30px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.bbb-bundle .bbb-submit:hover {
	filter: brightness(1.08);
}

.bbb-bundle .bbb-submit[disabled] {
	opacity: .45;
	cursor: not-allowed;
}

@media (max-width: 600px) {
	.bbb-bundle { padding: 18px; }
	.bbb-bundle .bbb-footer { flex-direction: column; align-items: stretch; }
	.bbb-bundle .bbb-submit { width: 100%; }
}
