/**
 * Quantity Control Styles
 */

.seecommerce-quantity-control {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}

.quantity-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: #f5f5f5;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.quantity-btn:hover:not(:disabled) {
	background: #e0e0e0;
	color: #0073aa;
}

.quantity-btn:active:not(:disabled) {
	background: #d5d5d5;
}

.quantity-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.quantity-input {
	width: 50px;
	height: 36px;
	border: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	-moz-appearance: textfield;
}

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

.quantity-input:focus {
	outline: none;
	background: #f9f9f9;
}

.quantity-input:disabled {
	background: #f5f5f5;
	color: #999;
	cursor: not-allowed;
}

/* Compact variant */
.quantity-control-compact .seecommerce-quantity-control {
	transform: scale(0.9);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.quantity-btn {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}

	.quantity-input {
		width: 45px;
		height: 32px;
		font-size: 13px;
	}
}
