/* ============================================================
   Interaktivne +/- kontrole količine u minicartu (.spr-mcs-qty)
   Koristi iste brand boje kao spr-mcs__ blok:
     - Tekst/obrub: #504137 (topla tamno-smeđa)
     - Cijena:      #8a7c70
   ============================================================ */

.spr-mcs-qty {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid #d8cfc2;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	vertical-align: middle;
}

.spr-mcs-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: none;
	background: transparent;
	color: #504137;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.spr-mcs-qty__btn:hover:not(:disabled) {
	background: #504137;
	color: #fff;
}

.spr-mcs-qty__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.spr-mcs-qty__value {
	min-width: 22px;
	text-align: center;
	font-family: Helvetica, -apple-system, "Segoe UI", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #504137;
	user-select: none;
}

.spr-mcs-qty--busy {
	opacity: 0.55;
	pointer-events: none;
}

.spr-mcs-qty__subtotal {
	display: inline-block;
	margin-left: 8px;
	font-family: Helvetica, -apple-system, "Segoe UI", sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	color: #8a7c70;
	vertical-align: middle;
}

.spr-mcs-qty__subtotal .woocommerce-Price-amount {
	color: inherit;
}

@media (max-width: 400px) {
	.spr-mcs-qty__btn {
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
}
