/*
==================================================
12-checkout.css
Checkout page form, payment options, coupon, mini cart items
==================================================
*/

.checkout-layout {
	grid-template-columns: 1fr 390px;
	align-items: start;
}

.checkout-form {
	display: grid;
	gap: 22px;
}

.payment-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 16px;
}

.payment-options label {
	padding: 14px;
	border: 1px solid #e3d4bf;
	border-radius: 16px;
	background-color: #fffaf3;
	font-weight: 800;
	color: #5b351d;
}

.coupon-box {
	padding: 16px 0;
	border-bottom: 1px solid #e3d4bf;
	margin-bottom: 8px;
}

.coupon-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	margin-top: 8px;
}

.coupon-row button {
	border: none;
	border-radius: 14px;
	background-color: #5b351d;
	color: #ffffff;
	padding: 0 16px;
	font-weight: 900;
}

.checkout-mini-item {
	display: grid;
	grid-template-columns: 62px 1fr;
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #e3d4bf;
}

.checkout-mini-item img {
	width: 62px;
	height: 56px;
	border-radius: 12px;
	object-fit: cover;
}

.checkout-mini-item h3 {
	color: #5b351d;
	font-size: 14px;
	line-height: 1.25;
}