.mstahel-bundle-configurator {
	background: #fff;
	border: 2px solid #fc9a24;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(11, 45, 114, .08);
	margin: 18px 0;
	overflow: hidden;
	padding: 18px 20px;
}

.mstahel-bundle-configurator__head {
	align-items: center;
	border-bottom: 1px dashed #f5c078;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding-bottom: 14px;
}

.mstahel-bundle-configurator__head h3 {
	color: #0b2d72;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.mstahel-bundle-configurator__head button {
	background: #fff4e5;
	border: 1px solid #fc9a24;
	border-radius: 999px;
	color: #0b2d72;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	padding: 7px 12px;
}

.mstahel-bundle-configurator__rows {
	display: grid;
	gap: 0;
}

.mstahel-bundle-configurator__row {
	align-items: center;
	background: #fff;
	border-bottom: 1px dashed #f5c078;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(82px, auto) 1fr;
	padding: 15px 0;
}

.mstahel-bundle-configurator__piece {
	color: #0b2d72;
	font-size: 15px;
	font-weight: 800;
}

.mstahel-bundle-configurator__attribute-list {
	display: grid;
	gap: 10px;
}

.mstahel-bundle-configurator__attribute {
	align-items: center;
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(60px, auto) 1fr;
}

.mstahel-bundle-configurator__attribute-label {
	color: #52627d;
	font-size: 13px;
	font-weight: 700;
}

.mstahel-bundle-configurator__options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mstahel-bundle-configurator__option {
	background: #fff;
	border: 1px solid #d8dfeb;
	border-radius: 999px;
	color: #0b2d72;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	min-height: 38px;
	padding: 8px 16px;
	transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.mstahel-bundle-configurator__option:hover {
	border-color: #fc9a24;
}

.mstahel-bundle-configurator__option[aria-pressed="true"] {
	background: #fc9a24;
	border-color: #fc9a24;
	box-shadow: 0 3px 0 #d97800;
	color: #082c70;
}

.mstahel-bundle-configurator__option:focus-visible,
.mstahel-bundle-configurator__head button:focus-visible {
	outline: 3px solid rgba(11, 45, 114, .3);
	outline-offset: 2px;
}

.mstahel-bundle-configurator__error {
	color: #b42318;
	font-size: 13px;
	margin: 10px 0 0;
	text-align: center;
}

form.cart.mstahel-bundle-active table.variations {
	display: none;
}

@media (max-width: 767px) {
	.mstahel-bundle-configurator__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.mstahel-bundle-configurator__row {
		gap: 10px;
		grid-template-columns: 1fr;
		padding: 14px 0;
	}

	.mstahel-bundle-configurator__piece {
		margin-bottom: 2px;
	}

	.mstahel-bundle-configurator__attribute {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.mstahel-bundle-configurator__option {
		flex: 0 1 auto;
		min-width: 92px;
		padding-inline: 12px;
	}
}
