.cart-page {
	max-width: 900px;
	margin: 0 auto;
}

.cart-table td {
	vertical-align: middle;
}

.cart-row__qty-input {
	width: 64px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 5px 4px;
}

.cart-row__remove {
	background: none;
	border: none;
	color: #b03030;
	font-size: 1rem;
	cursor: pointer;
}

.cart-row__price--request {
	font-weight: 500;
	color: #b9860a;
	background: #fff6e0;
	border-radius: 6px;
	padding: 2px 8px;
	font-size: 0.8rem;
	white-space: nowrap;
}

.cart-summary {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	padding: 16px 20px;
}

.cart-summary__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1rem;
}

.cart-summary__row--muted {
	color: #b9860a;
	font-size: 0.85rem;
	margin-top: 6px;
}

.cart-form {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	padding: 24px;
}

.cart-form__result.is-success {
	color: #2e8b43;
	font-weight: 600;
}

.cart-form__result.is-error {
	color: #b03030;
	font-weight: 600;
}
