/* Mix & Match slot builder */
.thc-mm {
	margin: 22px 0;
	padding: 18px;
	border: 1px solid var(--thc-border, #e3e6e1);
	border-radius: 12px;
	background: #fff;
}

.thc-mm__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
}

.thc-mm__title {
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.3;
}

.thc-mm__counter {
	font-weight: 700;
	color: #fff;
	background: var(--thc-primary, #38bdf8);
	border-radius: 999px;
	padding: 4px 12px;
	font-size: .9rem;
	white-space: nowrap;
}

.thc-mm.is-complete .thc-mm__counter {
	background: #1f7a1f;
}

.thc-mm__note {
	margin: 0 0 12px;
	font-size: .88rem;
	color: #5d6660;
}

.thc-mm__list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 460px;
	overflow-y: auto;
	border-top: 1px solid #eef0ed;
}

.thc-mm__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 6px;
	border-bottom: 1px solid #eef0ed;
	margin: 0;
}

.thc-mm__item.is-picked {
	background: rgba(109, 171, 60, .08);
}

.thc-mm__img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 8px;
	flex: 0 0 48px;
}

.thc-mm__name {
	flex: 1 1 auto;
	font-size: .92rem;
	line-height: 1.35;
}

.thc-mm__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid #d7dbd5;
	border-radius: 8px;
	overflow: hidden;
	flex: 0 0 auto;
}

.thc-mm__qty button {
	width: 32px;
	height: 34px;
	border: 0;
	background: #f3f5f2;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
	color: #223;
}

.thc-mm__qty button:hover {
	background: var(--thc-primary, #38bdf8);
	color: #fff;
}

.thc-mm__qty input {
	width: 46px;
	height: 34px;
	border: 0;
	text-align: center;
	font-weight: 600;
	-moz-appearance: textfield;
	padding: 0;
}

.thc-mm__qty input::-webkit-outer-spin-button,
.thc-mm__qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.thc-mm__msg {
	margin: 12px 0 0;
	font-weight: 600;
	font-size: .9rem;
	color: #b3541e;
}

.thc-mm.is-complete .thc-mm__msg {
	color: #1f7a1f;
}

.single_add_to_cart_button.disabled,
.single_add_to_cart_button[disabled] {
	opacity: .55;
	cursor: not-allowed;
}

@media (max-width: 480px) {
	.thc-mm__img {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.thc-mm__name {
		font-size: .85rem;
	}
}

.thc-mm__total{margin-left:auto;font-weight:700}
.thc-mm__price{margin-left:.4rem;font-weight:600;opacity:.8}
.thc-mm-from{font-size:.85em;opacity:.7;margin-right:.25rem}
.thc-sidebar-drop{margin:.35rem 0 .5rem}
.thc-sidebar-drop>summary{cursor:pointer;font-size:.85rem;font-weight:600;opacity:.75;list-style:none;padding:.25rem 0}
.thc-sidebar-drop>summary::-webkit-details-marker{display:none}
.thc-sidebar-drop>summary::after{content:" \25BE"}
.thc-sidebar-drop[open]>summary::after{content:" \25B4"}
