/**
 * Cohoma single-product quantity control.
 */

body.single-product .summary form.cart .quantity {
	display: grid;
	grid-template-columns: 28px minmax(28px, 1fr) 28px;
	align-items: stretch;
	flex: 0 0 94px;
	width: 94px;
	height: var(--cohoma-purchase-control-height, 40px);
	margin: 0 16px 0 0;
	overflow: hidden;
	border: 2px solid #fcd18d;
	border-radius: calc(var(--cohoma-purchase-control-height, 40px) / 2);
	background: #fff;
	box-sizing: border-box;
}

body.single-product .summary form.cart .quantity .cohoma-product-quantity__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #27364c;
	font: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

body.single-product .summary form.cart .quantity .cohoma-product-quantity__button--minus {
	border-right: 1px solid #fcd18d;
}

body.single-product .summary form.cart .quantity .cohoma-product-quantity__button--plus {
	border-left: 1px solid #fcd18d;
}

body.single-product .summary form.cart .quantity input.qty {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: none;
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	color: #27364c;
	font-size: 14px;
	font-weight: 400;
	line-height: calc(var(--cohoma-purchase-control-height, 40px) - 4px);
	text-align: center;
	-moz-appearance: textfield;
}

body.single-product .summary form.cart .quantity input.qty::-webkit-inner-spin-button,
body.single-product .summary form.cart .quantity input.qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

body.single-product .summary form.cart .quantity .cohoma-product-quantity__button:hover {
	background: #fff7eb;
	color: #612d0f;
}

body.single-product .summary form.cart .quantity .cohoma-product-quantity__button:focus-visible {
	position: relative;
	z-index: 1;
	outline: 2px solid #612d0f;
	outline-offset: -2px;
}

body.single-product .summary form.cart .quantity .cohoma-product-quantity__button:disabled {
	cursor: not-allowed;
	opacity: 0.4;
}
