/* "Empty cart" secondary action, shown under the primary "Proceed to checkout" button.
   Deliberately low-emphasis (soft rose outline, transparent fill) so it never competes
   with the checkout CTA. */
.mp-empty-cart {
	margin-top: 0.75em;
	text-align: center;
}

.mp-empty-cart__button {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: transparent;
	color: #9b2c2c;
	border: 1px solid #e3b7b7;
	border-radius: 6px;
	padding: 0.65em 1em;
	font: inherit;
	font-size: 0.95em;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.mp-empty-cart__button:hover,
.mp-empty-cart__button:focus {
	background: #f7e9e9;
	border-color: #d49a9a;
	color: #7d1d1d;
}

.mp-empty-cart__button[disabled] {
	opacity: .6;
	cursor: default;
}
