/* Run Florist checkout styles. */
.rf-checkout { max-width: 1080px; margin: 0 auto; }

.rf-test-banner {
	background: #fff6e5;
	border: 2px dashed #b98a00;
	color: #6b5200;
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 22px;
	font-weight: 600;
}
.rf-fill-test {
	margin-left: 10px;
	background: #131313;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 6px 12px;
	cursor: pointer;
}

.rf-co-product {
	display: flex;
	gap: 24px;
	align-items: center;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(19,19,19,0.08);
	padding: 18px 22px;
	margin-bottom: 28px;
}
.rf-co-product img { width: 160px; height: 160px; object-fit: contain; }
.rf-co-product h2 { margin: 0 0 6px; }
.rf-co-price { color: #9A2828; font-weight: 800; font-size: 22px; margin: 0 0 8px; }
.rf-co-bundle { color: #131313; font-weight: 700; font-size: 14px; margin: 0 0 6px; }

.rf-co-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}
@media (max-width: 860px) { .rf-co-grid { grid-template-columns: 1fr; } }

.rf-co-section {
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(19,19,19,0.08);
	padding: 22px;
}
.rf-co-section h3 { margin: 0 0 14px; }

.rf-checkout input, .rf-checkout select, .rf-checkout textarea {
	width: 100%;
	padding: 11px 14px;
	margin-bottom: 12px;
	border: 2px solid #d9d4ca;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	background: #ffffff;
	color: #131313;
}
.rf-checkout input:focus, .rf-checkout select:focus, .rf-checkout textarea:focus {
	outline: none;
	border-color: #9A2828;
}
.rf-row { display: flex; gap: 10px; }
.rf-row input { flex: 1 1 0; min-width: 0; }

.rf-note { font-size: 13px; color: #666; margin: 2px 0 10px; }
.rf-hidden { display: none !important; }

.rf-drafts { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.rf-draft {
	background: #f3efe7;
	border: 1px solid #d9d4ca;
	color: #131313;
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.rf-draft:hover { background: #9A2828; color: #ffffff; border-color: #9A2828; }

.rf-totals {
	border-top: 2px solid #eee7db;
	margin-top: 8px;
	padding-top: 12px;
	margin-bottom: 14px;
}
.rf-totals div { display: flex; justify-content: space-between; padding: 4px 0; }
.rf-total-line { font-weight: 800; font-size: 18px; border-top: 1px solid #eee7db; margin-top: 6px; padding-top: 10px !important; }
.rf-total-line span:last-child { color: #9A2828; }

.rf-place-order {
	width: 100%;
	background: #9A2828;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 16px;
	font-size: 18px;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}
.rf-place-order:hover { background: #7c1f1f; }
.rf-place-order:disabled { background: #c9b8b8; cursor: not-allowed; }
.rf-co-error { color: #9A2828; font-weight: 600; margin-top: 10px; min-height: 1.4em; }

.rf-co-success {
	text-align: center;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(19,19,19,0.08);
	padding: 48px 24px;
}
.rf-co-check {
	width: 74px;
	height: 74px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #1a7a1a;
	color: #ffffff;
	font-size: 40px;
	line-height: 74px;
}
.rf-co-success a { color: #9A2828; font-weight: 700; }

/* Heads-Up opt-in at checkout */
.rf-headsup-opt {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: #555555;
	cursor: pointer;
}
.rf-headsup-opt input[type="checkbox"] {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: #9A2828;
}
