.edosan-cart-editor {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
}

.edosan-cart-editor__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid #666;
	border-radius: 4px;
	background: #000;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.edosan-cart-editor__button:hover:not(:disabled),
.edosan-cart-editor__button:focus-visible {
	border-color: #b41616;
	background: #b41616;
	color: #fff;
}

.edosan-cart-editor__button:disabled {
	opacity: .35;
	cursor: not-allowed;
}

.edosan-cart-editor__quantity {
	min-width: 22px;
	color: #fff;
	font-weight: 700;
	text-align: center;
}

.edosan-cart-editor__remove {
	margin-left: 4px;
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: #d92d2d;
	font-size: 12px;
	cursor: pointer;
}

.edosan-cart-editor__remove:hover,
.edosan-cart-editor__remove:focus-visible {
	color: #fff;
}

.edosan-cart-editor.is-loading {
	opacity: .55;
	pointer-events: none;
}

@media (max-width: 480px) {
	.edosan-cart-editor {
		flex-wrap: wrap;
	}
}
