.ahan-qty-control {
	display: grid;
	grid-template-columns: 30px 34px 30px;
	align-items: stretch;
	width: 94px;
	min-width: 94px;
	height: 34px;
	overflow: hidden;
	border: 1px solid var(--ahan-color-border);
	border-radius: 5px;
	background: #fff;
	box-sizing: border-box;
}

.ahan-qty-control__button,
.ahan-qty-control__input {
	min-width: 0;
	border: 0;
	background: #fff;
	color: var(--ahan-color-text);
	font-family: var(--ahan-font-family);
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	box-sizing: border-box;
}

.ahan-qty-control__button {
	padding: 0;
	cursor: pointer;
}

.ahan-qty-control__button:hover,
.ahan-qty-control__button:focus-visible {
	background: #eef4fb;
	color: var(--ahan-color-brand-blue);
}

.ahan-qty-control__button:disabled,
.ahan-qty-control__input:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.ahan-qty-control__input {
	padding: 0 2px;
	border-inline: 1px solid var(--ahan-color-border);
	appearance: textfield;
}

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

@media (max-width: 767px) {
	.ahan-qty-control {
		grid-template-columns: 27px 30px 27px;
		width: 84px;
		min-width: 84px;
		height: 33px;
	}

	.ahan-qty-control__button,
	.ahan-qty-control__input {
		font-size: 0.82rem;
	}
}
