.bal-product-options {
	margin: 24px 0 30px;
	padding: 26px;
	border-radius: 24px;
	background: rgba(255, 250, 244, 0.92);
	border: 1px solid rgba(32, 23, 20, 0.1);
	box-shadow: 0 18px 36px rgba(32, 23, 20, 0.1);
}

.bal-product-options__header {
	margin-bottom: 22px;
	max-width: 60ch;
}

.bal-product-options__header h2 {
	margin: 0 0 8px;
	font-family: Georgia, "Palatino Linotype", serif;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.bal-product-options__header p,
.bal-option-group__hint,
.bal-option-item__price {
	color: #5d4a42;
}

.bal-product-options__eyebrow {
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.75rem;
	color: #5d4a42;
}

.bal-product-options__groups {
	display: grid;
	gap: 18px;
}

.bal-option-group {
	margin: 0;
	padding: 18px 18px 20px;
	border: 1px solid rgba(32, 23, 20, 0.1);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.62);
}

.bal-option-group legend {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
	font-weight: 700;
	font-size: 1rem;
	padding: 0 8px;
}

.bal-option-group legend strong {
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(191, 65, 34, 0.12);
	color: #bf4122;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.bal-option-group__hint {
	margin: 10px 0 0;
	font-size: 0.92rem;
}

.bal-option-group__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.bal-option-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(32, 23, 20, 0.08);
	background: rgba(255, 255, 255, 0.78);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bal-option-item:hover,
.bal-option-item:focus-within {
	transform: translateY(-1px);
	border-color: rgba(191, 65, 34, 0.32);
	box-shadow: 0 10px 24px rgba(32, 23, 20, 0.08);
}

.bal-option-item__control {
	margin-top: 4px;
	accent-color: #345341;
	width: 18px;
	height: 18px;
}

.bal-option-item__content {
	display: grid;
	gap: 4px;
}

.bal-option-item__title {
	font-weight: 700;
	line-height: 1.35;
	color: #201714;
}

.bal-option-item__price {
	font-size: 0.92rem;
	line-height: 1.4;
}

.bal-option-item--none {
	background: rgba(247, 239, 227, 0.74);
	border-style: dashed;
}

@media (max-width: 820px) {
	.bal-option-group__items {
		grid-template-columns: 1fr;
	}
}