@charset "utf-8";
/* CSS Document */
.quantity-form {
	display: flex;
	align-items: center;
	gap: 10px; 
}

.quantity-spinner {
	max-width: 102px;
	display: flex;
	border: 1px solid #ddd;
	border-radius: 4px;  
	overflow: hidden;    
}

.quantity-spinner .btn-qty {
	width: 30px;
	height: 30px;
	background-color: #f7f7f7; 
	border: none;
	cursor: pointer;
	font-size: 1.3rem; 
	font-weight: 600;
	color: #555;
	line-height: 1; 
	transition: background-color 0.2s ease;
}

.quantity-spinner .btn-qty:hover {
	background-color: #eee; 
}

.quantity-spinner .amount {
	width: 40px; 
	height: 30px;
	text-align: center;
	font-weight: normal;
	border: none; 
	border-left: 1px solid #ddd; 
	border-right: 1px solid #ddd; 
	padding: 5px;
	box-sizing: border-box; 
	-webkit-appearance: none;
	margin: 0;
	-moz-appearance: textfield;
}
.quantity-spinner .amount:focus {
	outline: none;
	box-shadow: none;
}
