/* Scope all styling to WooCommerce quantity wrappers; the cart button is untouched. */
.woocommerce .quantity {
	display: inline-flex;
	align-items: stretch;
	height: 52px;
	margin: 0;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	background: #fff;
	overflow: hidden;
	vertical-align: middle;
}

.woocommerce .quantity .qty {
	width: 58px !important;
	min-width: 58px;
	height: 50px !important;
	margin: 0 !important;
	padding: 0 6px !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	text-align: center;
	font: inherit;
	line-height: 50px;
	-moz-appearance: textfield;
	appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.woocommerce .quantity .anne-qty-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	min-width: 44px;
	height: 50px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #f7f7f7;
	color: #222;
	box-shadow: none;
	font: inherit;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease;
}

.woocommerce .quantity .anne-qty-minus {
	border-right: 1px solid #e4e4e4;
}

.woocommerce .quantity .anne-qty-plus {
	border-left: 1px solid #e4e4e4;
}

.woocommerce .quantity .anne-qty-button:hover:not(:disabled),
.woocommerce .quantity .anne-qty-button:focus-visible {
	background: #ededed;
	color: #000;
}

.woocommerce .quantity .anne-qty-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -3px;
}

.woocommerce .quantity .anne-qty-button:disabled {
	opacity: .38;
	cursor: not-allowed;
}
