/**
 * Biltmore Motors — cart & checkout
 * Scoped under body.biltmore-cart-checkout-page
 */

body.biltmore-cart-checkout-page {
	--bcc-bg: #fafafa;
	--bcc-bg-2: #f4f5f7;
	--bcc-bg-3: #ffffff;
	--bcc-text: #0a0b0d;
	--bcc-text-secondary: #5c6370;
	--bcc-text-muted: #8b919a;
	--bcc-border: #e8eaed;
	--bcc-brand: #ff2800;
	--bcc-brand-soft: rgba(255, 40, 0, 0.08);
	--bcc-brand-border: rgba(255, 40, 0, 0.28);
	--bcc-success: #15803d;
	--bcc-success-soft: #ecfdf5;
	--bcc-success-border: #cce8d6;
	--bcc-grad-brand: linear-gradient(135deg, #ff2800 0%, #ff6b35 100%);
	--bcc-radius-sm: 8px;
	--bcc-radius-md: 12px;
	--bcc-radius-lg: 16px;
	--bcc-radius-pill: 999px;
	--bcc-shadow-sm: 0 2px 8px rgba(10, 11, 13, 0.06);
	--bcc-shadow-md: 0 8px 24px rgba(10, 11, 13, 0.08);
}

body.biltmore-cart-checkout-page .autobid-breadcrumbs,
body.biltmore-cart-checkout-page .autobid_header_title_breadcrumbs,
body.biltmore-cart-checkout-page .page-title,
body.biltmore-cart-checkout-page article.type-page > .entry-title {
	display: none !important;
}

body.biltmore-cart-checkout-page #primary.high-padding,
body.biltmore-cart-checkout-page #primary.content-area {
	padding-top: 24px !important;
	padding-bottom: 64px !important;
	background: transparent !important;
}

body.biltmore-cart-checkout-page #primary > .container {
	max-width: 1180px !important;
}

body.biltmore-cart-checkout-page .entry-content > .woocommerce {
	margin-top: 0;
}

/* Steps timeline */
.bcc-steps-holder {
	margin: 0 0 28px;
	padding: 22px 24px;
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg);
	box-shadow: var(--bcc-shadow-sm);
}

.bcc-steps {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.bcc-step {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
}

.bcc-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 18px;
	left: calc(50% + 22px);
	width: calc(100% - 44px);
	height: 2px;
	background: var(--bcc-border);
	z-index: 0;
}

.bcc-step.is-complete:not(:last-child)::after {
	background: linear-gradient(90deg, var(--bcc-success) 0%, rgba(21, 128, 61, 0.35) 100%);
}

.bcc-step.is-current:not(:last-child)::after {
	background: linear-gradient(90deg, var(--bcc-brand) 0%, var(--bcc-border) 100%);
}

.bcc-step-marker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: 10px;
	border-radius: 50%;
	border: 2px solid var(--bcc-border);
	background: var(--bcc-bg-3);
	color: var(--bcc-text-muted);
	font-size: 13px;
	font-weight: 700;
	transition: all 0.2s ease;
}

.bcc-step.is-current .bcc-step-marker {
	border-color: transparent;
	background: var(--bcc-grad-brand);
	color: #fff;
	box-shadow: 0 6px 18px rgba(255, 40, 0, 0.28);
}

.bcc-step.is-complete .bcc-step-marker {
	border-color: var(--bcc-success-border);
	background: var(--bcc-success-soft);
	color: var(--bcc-success);
}

.bcc-step-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bcc-text-muted);
	text-decoration: none;
}

.bcc-step.is-current .bcc-step-label {
	color: var(--bcc-text);
}

.bcc-step.is-complete .bcc-step-label {
	color: var(--bcc-success);
}

a.bcc-step-label:hover {
	color: var(--bcc-brand);
}

/* Page head */
.bcc-page-head {
	margin: 0 0 24px;
}

.bcc-page-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 12px;
	border-radius: var(--bcc-radius-pill);
	background: var(--bcc-brand-soft);
	border: 1px solid var(--bcc-brand-border);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bcc-brand);
}

.bcc-page-title {
	margin: 0 0 8px;
	font-size: clamp(28px, 4vw, 36px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--bcc-text);
}

.bcc-page-lead {
	margin: 0;
	max-width: 640px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--bcc-text-secondary);
}

/* Unified cart card */
.bcc-cart-shell {
	max-width: 720px;
	margin: 0 auto;
}

.bcc-cart-card {
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg);
	box-shadow: var(--bcc-shadow-md);
	overflow: hidden;
}

.bcc-cart-card__header {
	padding: 28px 28px 0;
}

.bcc-cart-card__title {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--bcc-text);
}

.bcc-cart-card__lead {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--bcc-text-secondary);
}

body.biltmore-cart-page .woocommerce-cart-form {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.bcc-cart-items {
	padding: 22px 28px 8px;
}

.bcc-cart-item {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr) auto;
	grid-template-areas:
		"media body remove"
		"media price remove";
	gap: 8px 18px;
	align-items: start;
	padding: 18px 0;
	border-bottom: 1px solid var(--bcc-border);
}

.bcc-cart-item:first-child {
	padding-top: 0;
}

.bcc-cart-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.bcc-cart-item__media {
	grid-area: media;
}

.bcc-cart-item__media a {
	display: block;
	overflow: hidden;
	border-radius: var(--bcc-radius-md);
	border: 1px solid var(--bcc-border);
	background: var(--bcc-bg-2);
}

.bcc-cart-item__image,
.bcc-cart-item__media img {
	display: block;
	width: 100%;
	height: 104px;
	object-fit: cover;
}

.bcc-cart-item__body {
	grid-area: body;
	min-width: 0;
}

.bcc-cart-item__title {
	display: block;
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--bcc-text);
	text-decoration: none;
}

a.bcc-cart-item__title:hover {
	color: var(--bcc-brand);
}

.bcc-cart-item__meta {
	font-size: 13px;
	line-height: 1.5;
	color: var(--bcc-text-secondary);
}

.bcc-cart-item__meta dl {
	margin: 0;
}

.bcc-cart-item__meta dt,
.bcc-cart-item__meta dd {
	display: inline;
	margin: 0;
}

.bcc-cart-item__meta dt {
	font-weight: 600;
	color: var(--bcc-text-muted);
}

.bcc-cart-item__meta dd {
	margin-right: 10px;
}

.bcc-cart-item__price {
	grid-area: price;
	align-self: end;
}

.bcc-cart-item__price-label {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bcc-text-muted);
}

.bcc-cart-item__price .amount,
.bcc-cart-item__price .woocommerce-Price-amount {
	font-size: 20px;
	font-weight: 800;
	color: var(--bcc-text);
}

.bcc-cart-item__remove {
	grid-area: remove;
	justify-self: end;
}

.bcc-cart-item__remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--bcc-border);
	background: var(--bcc-bg-2);
	color: var(--bcc-text-muted) !important;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
}

.bcc-cart-item__remove a.remove:hover {
	border-color: var(--bcc-brand-border);
	background: var(--bcc-brand-soft);
	color: var(--bcc-brand) !important;
}

/* Order summary inside card */
.bcc-cart-summary {
	padding: 22px 28px 28px;
	border-top: 1px solid var(--bcc-border);
	background: linear-gradient(180deg, var(--bcc-bg-2) 0%, var(--bcc-bg-3) 100%);
}

body.biltmore-cart-page .cart-collaterals {
	display: none;
}

body.biltmore-cart-page .bcc-cart-summary .cart_totals {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.biltmore-cart-page .bcc-cart-summary .cart_totals > h2 {
	margin: 0 0 14px;
	padding-bottom: 0;
	border-bottom: 0;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--bcc-text);
}

body.biltmore-cart-page .bcc-cart-summary .cart_totals table.shop_table {
	border: 0 !important;
}

body.biltmore-cart-page .bcc-cart-summary .cart_totals table.shop_table th,
body.biltmore-cart-page .bcc-cart-summary .cart_totals table.shop_table td {
	padding: 10px 0;
	border-top: 1px solid var(--bcc-border) !important;
	font-size: 14px;
	color: var(--bcc-text-secondary);
}

body.biltmore-cart-page .bcc-cart-summary .cart_totals table.shop_table tr:first-child th,
body.biltmore-cart-page .bcc-cart-summary .cart_totals table.shop_table tr:first-child td {
	border-top: 0 !important;
}

body.biltmore-cart-page .bcc-cart-summary .cart_totals .order-total th,
body.biltmore-cart-page .bcc-cart-summary .cart_totals .order-total td {
	padding-top: 14px;
	font-size: 17px;
	font-weight: 800;
	color: var(--bcc-text);
}

body.biltmore-cart-page .bcc-cart-summary .wc-proceed-to-checkout {
	margin-top: 16px;
	padding-top: 0;
}

body.biltmore-cart-page .bcc-cart-summary .wc-proceed-to-checkout .checkout-button,
body.biltmore-cart-page .bcc-cart-summary .wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	padding: 16px 20px !important;
	border: 0 !important;
	border-radius: var(--bcc-radius-md) !important;
	background: var(--bcc-grad-brand) !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-align: center;
	text-decoration: none !important;
	box-shadow: 0 8px 22px rgba(255, 40, 0, 0.24);
}

body.biltmore-cart-page .bcc-cart-summary .wc-proceed-to-checkout .checkout-button:hover,
body.biltmore-cart-page .bcc-cart-summary .wc-proceed-to-checkout a.checkout-button:hover {
	background: linear-gradient(135deg, #e02400 0%, #ff5520 100%) !important;
	color: #fff !important;
}

/* Legacy table rules kept minimal for plugin compatibility */
body.biltmore-cart-page .woocommerce-cart-form .product-quantity,
body.biltmore-cart-page .woocommerce-cart-form .product-subtotal,
body.biltmore-cart-page .woocommerce-cart-form td.actions,
body.biltmore-cart-page .woocommerce-cart-form .coupon {
	display: none !important;
}

/* Empty cart */
body.biltmore-cart-page .wc-empty-cart-message,
body.biltmore-cart-page .cart-empty.woocommerce-info {
	display: none !important;
}

.bcc-empty-state {
	max-width: 640px;
	margin: 0 auto;
	padding: 48px 32px 40px;
	text-align: center;
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg);
	box-shadow: var(--bcc-shadow-md);
}

.bcc-empty-state__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 18px;
	background: var(--bcc-brand-soft);
	border: 1px solid var(--bcc-brand-border);
	color: var(--bcc-brand);
	font-size: 28px;
}

.bcc-empty-state__title {
	margin: 0 0 10px;
	font-size: clamp(24px, 3vw, 30px);
	line-height: 1.2;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: var(--bcc-text);
}

.bcc-empty-state__text {
	margin: 0 auto 24px;
	max-width: 460px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--bcc-text-secondary);
}

.bcc-empty-state__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
}

.bcc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: var(--bcc-radius-md);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bcc-btn-primary {
	background: var(--bcc-grad-brand);
	color: #fff !important;
	box-shadow: 0 8px 22px rgba(255, 40, 0, 0.22);
}

.bcc-btn-primary:hover {
	color: #fff !important;
	transform: translateY(-1px);
}

.bcc-btn-secondary {
	background: var(--bcc-bg-3);
	color: var(--bcc-text) !important;
	border: 1px solid var(--bcc-border);
}

.bcc-btn-secondary:hover {
	border-color: var(--bcc-brand-border);
	background: var(--bcc-brand-soft);
	color: var(--bcc-brand) !important;
}

.bcc-empty-state__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 18px;
}

.bcc-empty-state__trust span {
	display: inline-block;
	padding: 8px 14px;
	border-radius: var(--bcc-radius-pill);
	background: #ecfdf5;
	border: 1px solid #cce8d6;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	color: #2f6b4f;
}

.bcc-empty-state__account {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--bcc-text-muted);
}

.bcc-empty-state__account a {
	color: var(--bcc-brand);
	font-weight: 700;
	text-decoration: none;
}

.bcc-empty-state__account a:hover {
	text-decoration: underline;
}

body.biltmore-cart-page .return-to-shop {
	display: none;
}

/* ============================================================
   Checkout — Biltmore card layout
   ============================================================ */

/* Reset the legacy single-card wrapper */
body.biltmore-checkout-page .woocommerce-checkout {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

/* Two-column grid: form (left) + sticky summary (right) */
body.biltmore-checkout-page .bcc-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	align-items: start;
	gap: 28px;
}

body.biltmore-checkout-page .bcc-checkout-main {
	min-width: 0;
	align-self: start;
}

/* Keep both columns flush to the top */
body.biltmore-checkout-page .bcc-checkout-main > :first-child,
body.biltmore-checkout-page .bcc-checkout-aside > :first-child,
body.biltmore-checkout-page .bcc-checkout-details,
body.biltmore-checkout-page .bcc-checkout-details .col-1,
body.biltmore-checkout-page .bcc-checkout-details .col-1 > :first-child {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* The WooCommerce .col2-set clearfix renders a ::before pseudo-element at the
   very top of the left column. It carries height (a whitespace table box) which
   pushes the "Billing details" card down so it no longer lines up with the
   "Your order" card on the right. We stack the columns ourselves (display:block,
   no floats), so the clearfix is dead weight — remove both pseudos. */
body.biltmore-checkout-page .bcc-checkout-details::before,
body.biltmore-checkout-page .bcc-checkout-details::after {
	display: none !important;
	content: none !important;
}

/* Stack billing / shipping instead of the theme's side-by-side columns */
body.biltmore-checkout-page .bcc-checkout-details,
body.biltmore-checkout-page .bcc-checkout-details .col-1,
body.biltmore-checkout-page .bcc-checkout-details .col-2 {
	display: block;
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Each field group becomes a card */
body.biltmore-checkout-page .woocommerce-billing-fields,
body.biltmore-checkout-page .woocommerce-shipping-fields,
body.biltmore-checkout-page .woocommerce-additional-fields,
body.biltmore-checkout-page .woocommerce-account-fields {
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg);
	box-shadow: var(--bcc-shadow-sm);
	padding: 0 20px 18px;
	margin: 0 0 16px;
	overflow: hidden;
}

/* Drop the always-rendered shipping wrapper when it has no fields */
body.biltmore-checkout-page .woocommerce-shipping-fields:not(:has(*)) {
	display: none;
}

/* WooCommerce renders express-pay / PayPal button containers in the LEFT column
   above billing (hooked to woocommerce_checkout_before_customer_details). They
   have no equivalent on the right, which pushes the billing card down. Collapse
   them when empty and force the billing card flush to the top. */
body.biltmore-checkout-page .woocommerce-pay-buttons,
body.biltmore-checkout-page #paypal-standard-container {
	margin: 0 !important;
	padding: 0 !important;
}

body.biltmore-checkout-page .woocommerce-pay-buttons:empty,
body.biltmore-checkout-page #paypal-standard-container:empty {
	display: none !important;
}

body.biltmore-checkout-page .bcc-checkout-main .woocommerce-billing-fields {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Gradient header band sitting under each card title */
body.biltmore-checkout-page .woocommerce-billing-fields h3,
body.biltmore-checkout-page .woocommerce-shipping-fields h3,
body.biltmore-checkout-page .woocommerce-additional-fields h3,
body.biltmore-checkout-page #order_review_heading {
	margin: 0 -20px 16px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg) var(--bcc-radius-lg) 0 0;
	background: linear-gradient(180deg, var(--bcc-bg-2) 0%, var(--bcc-bg-3) 100%);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--bcc-text);
}

/* "Ship to a different address" toggle keeps its checkbox inline */
body.biltmore-checkout-page #ship-to-different-address,
body.biltmore-checkout-page .bcc-ship-to-different {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 -20px 16px;
	padding: 0 20px 16px;
	border-bottom: 1px solid var(--bcc-border);
}

body.biltmore-checkout-page #ship-to-different-address label,
body.biltmore-checkout-page .bcc-ship-to-different label {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

body.biltmore-checkout-page .bcc-same-as-billing-wrap {
	margin: 0 0 16px;
	padding: 0;
}

body.biltmore-checkout-page .bcc-same-as-billing {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--bcc-text);
	cursor: pointer;
}

body.biltmore-checkout-page .bcc-same-as-billing input {
	margin: 0;
}

body.biltmore-checkout-page .woocommerce-shipping-fields .form-row .optional {
	display: none !important;
}

body.biltmore-checkout-page .bcc-shipping--collapsed .bcc-same-as-billing-wrap {
	display: none;
}

body.biltmore-checkout-page .bcc-shipping--same-as-billing:not(.bcc-shipping--collapsed) .woocommerce-shipping-fields__field-wrapper {
	display: none;
}

body.biltmore-checkout-page .bcc-shipping--empty:not(.bcc-shipping--collapsed) .shipping_address {
	display: block !important;
}

body.biltmore-checkout-page .bcc-shipping--empty.bcc-shipping--collapsed .bcc-address-actions {
	display: none;
}

/* Billing read-only summary + edit toggle */
body.biltmore-checkout-page .bcc-billing-summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

body.biltmore-checkout-page .bcc-billing-summary__rows {
	min-width: 0;
}

body.biltmore-checkout-page .bcc-billing-summary p {
	margin: 0 0 3px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-billing-summary__name {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: var(--bcc-text) !important;
}

body.biltmore-checkout-page .bcc-billing-summary__muted {
	color: var(--bcc-text-muted) !important;
}

body.biltmore-checkout-page .bcc-billing-edit,
body.biltmore-checkout-page .bcc-address-edit.bcc-billing-edit {
	flex: 0 0 auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 12px 22px;
	width: auto;
	min-height: 0;
	border: 0;
	border-radius: var(--bcc-radius-md);
	background: var(--bcc-grad-brand);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	box-shadow: 0 8px 22px rgba(255, 40, 0, 0.24);
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

body.biltmore-checkout-page .bcc-billing-edit:hover,
body.biltmore-checkout-page .bcc-address-edit.bcc-billing-edit:hover {
	background: linear-gradient(135deg, #e02400 0%, #ff5520 100%);
	color: #fff;
	transform: translateY(-1px);
}

body.biltmore-checkout-page .bcc-billing-edit i,
body.biltmore-checkout-page .bcc-address-edit.bcc-billing-edit i,
body.biltmore-checkout-page .bcc-billing-edit__label {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

body.biltmore-checkout-page .bcc-billing-edit i,
body.biltmore-checkout-page .bcc-address-edit.bcc-billing-edit i {
	font-size: 12px;
}

/* Collapsed state: show summary, hide the editable fields */
body.biltmore-checkout-page .bcc-billing--collapsed .woocommerce-billing-fields__field-wrapper,
body.biltmore-checkout-page .bcc-billing--collapsed .bcc-address-actions,
body.biltmore-checkout-page .bcc-shipping--collapsed .bcc-address-actions {
	display: none;
}

body.biltmore-checkout-page .woocommerce-billing-fields:not(.bcc-billing--collapsed) .bcc-billing-summary {
	display: none;
}

body.biltmore-checkout-page .bcc-field-optional {
	font-size: 13px;
	font-weight: 600;
	color: var(--bcc-text-muted);
}

/* Optional shipping summary + collapsed fields */
body.biltmore-checkout-page .bcc-shipping--collapsed .shipping_address {
	display: none;
}

/* WooCommerce hides .shipping_address until "ship to different" is checked — override in optional edit mode */
body.biltmore-checkout-page .woocommerce-shipping-fields.bcc-shipping--optional:not(.bcc-shipping--collapsed) .shipping_address {
	display: block !important;
}

body.biltmore-checkout-page .woocommerce-shipping-fields:not(.bcc-shipping--collapsed) .bcc-shipping-summary {
	display: none;
}

body.biltmore-checkout-page .woocommerce-shipping-fields.bcc-shipping--optional > h3 {
	display: block;
}

body.biltmore-checkout-page .bcc-address-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--bcc-border);
}

body.biltmore-checkout-page .bcc-address-save,
body.biltmore-checkout-page .bcc-address-cancel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 12px 22px;
	min-height: 0;
	border-radius: var(--bcc-radius-md);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

body.biltmore-checkout-page .bcc-address-save {
	border: 0;
	background: var(--bcc-grad-brand);
	color: #fff;
	box-shadow: 0 8px 22px rgba(255, 40, 0, 0.24);
}

body.biltmore-checkout-page .bcc-address-save:hover:not(:disabled) {
	background: linear-gradient(135deg, #e02400 0%, #ff5520 100%);
	color: #fff;
	transform: translateY(-1px);
}

body.biltmore-checkout-page .bcc-address-save:disabled,
body.biltmore-checkout-page .bcc-address-save.bcc-address-save--loading {
	opacity: 0.7;
	cursor: wait;
	transform: none;
}

body.biltmore-checkout-page .bcc-address-cancel {
	border: 1px solid var(--bcc-border);
	background: var(--bcc-bg-2);
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-address-cancel:hover {
	border-color: var(--bcc-border-strong, var(--bcc-border));
	color: var(--bcc-text);
}

body.biltmore-checkout-page .bcc-address-error {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #c0392b;
}

/* Field grid */
body.biltmore-checkout-page .woocommerce-billing-fields__field-wrapper,
body.biltmore-checkout-page .woocommerce-shipping-fields__field-wrapper,
body.biltmore-checkout-page .woocommerce-additional-fields__field-wrapper,
body.biltmore-checkout-page .create-account {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 16px;
}

body.biltmore-checkout-page .woocommerce-billing-fields .form-row,
body.biltmore-checkout-page .woocommerce-shipping-fields .form-row,
body.biltmore-checkout-page .woocommerce-additional-fields .form-row,
body.biltmore-checkout-page .woocommerce-account-fields .form-row {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Deterministic placement so first/last name pair on one row
   (avoids the auto-flow zig-zag) */
body.biltmore-checkout-page .form-row-first {
	grid-column: 1 / 2;
}

body.biltmore-checkout-page .form-row-last {
	grid-column: 2 / 3;
}

body.biltmore-checkout-page .form-row-wide,
body.biltmore-checkout-page .form-row.notes,
body.biltmore-checkout-page #billing_company_field,
body.biltmore-checkout-page #billing_address_1_field,
body.biltmore-checkout-page #billing_address_2_field,
body.biltmore-checkout-page #shipping_company_field,
body.biltmore-checkout-page #shipping_address_1_field,
body.biltmore-checkout-page #shipping_address_2_field {
	grid-column: 1 / -1;
}

body.biltmore-checkout-page .form-row label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 700;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .form-row label .required,
body.biltmore-checkout-page .form-row label .optional {
	color: var(--bcc-text-muted);
	font-weight: 600;
	text-decoration: none;
	border: 0;
}

body.biltmore-checkout-page .form-row input.input-text,
body.biltmore-checkout-page .form-row textarea,
body.biltmore-checkout-page .form-row select,
body.biltmore-checkout-page .select2-container .select2-selection--single {
	width: 100%;
	height: auto;
	min-height: 44px;
	padding: 10px 13px;
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-sm);
	background: var(--bcc-bg-3);
	font-size: 14.5px;
	color: var(--bcc-text);
	box-shadow: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.biltmore-checkout-page .form-row textarea {
	min-height: 88px;
}

body.biltmore-checkout-page .form-row input.input-text:focus,
body.biltmore-checkout-page .form-row textarea:focus,
body.biltmore-checkout-page .form-row select:focus,
body.biltmore-checkout-page .select2-container--open .select2-selection--single {
	outline: 0;
	border-color: var(--bcc-brand-border);
	box-shadow: 0 0 0 3px var(--bcc-brand-soft);
}

body.biltmore-checkout-page .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 24px;
	padding: 0;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .select2-container .select2-selection--single .select2-selection__arrow {
	height: 46px;
}

/* Right column summary card */
body.biltmore-checkout-page .bcc-checkout-aside {
	align-self: start;
	margin-top: 0;
}

body.biltmore-checkout-page .bcc-checkout-summary {
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg);
	box-shadow: var(--bcc-shadow-md);
	padding: 0 20px 20px;
}

/* Cards without a title band keep their top padding */
body.biltmore-checkout-page .woocommerce-account-fields {
	padding-top: 18px;
}

/* Order review table */
body.biltmore-checkout-page .woocommerce-checkout-review-order-table {
	width: 100%;
	border: 0 !important;
	border-collapse: collapse;
	margin: 0 0 18px;
}

body.biltmore-checkout-page .woocommerce-checkout-review-order-table th,
body.biltmore-checkout-page .woocommerce-checkout-review-order-table td {
	padding: 12px 0 !important;
	border: 0 !important;
	border-top: 1px solid var(--bcc-border) !important;
	font-size: 14px;
	color: var(--bcc-text-secondary);
	text-align: left;
}

body.biltmore-checkout-page .woocommerce-checkout-review-order-table td {
	text-align: right;
}

body.biltmore-checkout-page .woocommerce-checkout-review-order-table thead th {
	border-top: 0 !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bcc-text-muted);
}

body.biltmore-checkout-page .woocommerce-checkout-review-order-table .cart_item .product-name {
	font-weight: 700;
	color: var(--bcc-text);
}

/* Order-review line item: thumbnail + Year Make Model, no quantity */
body.biltmore-checkout-page .bcc-review-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

body.biltmore-checkout-page .bcc-review-item__media {
	flex: 0 0 auto;
	width: 56px;
	height: 44px;
	border-radius: var(--bcc-radius-sm);
	overflow: hidden;
	border: 1px solid var(--bcc-border);
	background: var(--bcc-bg-2);
}

body.biltmore-checkout-page .bcc-review-item__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.biltmore-checkout-page .bcc-review-item__name {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--bcc-text);
	text-decoration: none;
}

body.biltmore-checkout-page a.bcc-review-item__name:hover {
	color: var(--bcc-brand);
}

body.biltmore-checkout-page a.bcc-review-item__media {
	display: block;
	cursor: pointer;
}

/* No quantity anywhere on checkout (single-vehicle store) */
body.biltmore-checkout-page .woocommerce-checkout-review-order-table .product-quantity,
body.biltmore-checkout-page .woocommerce-checkout-review-order-table .product-name .quantity {
	display: none !important;
}

body.biltmore-checkout-page .woocommerce-checkout-review-order-table tfoot th,
body.biltmore-checkout-page .woocommerce-checkout-review-order-table tfoot td {
	font-weight: 700;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .woocommerce-checkout-review-order-table tfoot .order-total th,
body.biltmore-checkout-page .woocommerce-checkout-review-order-table tfoot .order-total td {
	padding-top: 14px !important;
	font-size: 17px;
	font-weight: 800;
	color: var(--bcc-text);
}

/* Payment box */
body.biltmore-checkout-page #payment {
	background: #fff8ed;
	border: 1px solid #f5e6cf;
	border-radius: var(--bcc-radius-md);
	padding: 4px 18px 18px;
}

body.biltmore-checkout-page #payment ul.payment_methods {
	border-bottom: 1px solid var(--bcc-border);
	padding: 14px 0;
	margin: 0;
}

body.biltmore-checkout-page #payment ul.payment_methods li {
	margin: 0 0 8px;
	list-style: none;
}

body.biltmore-checkout-page #payment ul.payment_methods li label {
	font-weight: 700;
	color: var(--bcc-text);
}

body.biltmore-checkout-page #payment div.payment_box {
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-sm);
	margin: 8px 0 4px;
	font-size: 13px;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page #payment div.payment_box::before {
	display: none;
}

body.biltmore-checkout-page #payment .place-order {
	padding: 18px 0 0;
}

body.biltmore-checkout-page #place_order {
	display: block;
	width: 100%;
	padding: 16px 24px !important;
	border: 0 !important;
	border-radius: var(--bcc-radius-md) !important;
	background: var(--bcc-grad-brand) !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-shadow: none;
	box-shadow: 0 8px 22px rgba(255, 40, 0, 0.24);
	transition: background 0.15s ease, transform 0.15s ease;
}

body.biltmore-checkout-page #place_order:hover {
	background: linear-gradient(135deg, #e02400 0%, #ff5520 100%) !important;
	transform: translateY(-1px);
}

/* Trust strip under the summary */
body.biltmore-checkout-page .bcc-checkout-trust {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--bcc-border);
}

body.biltmore-checkout-page .bcc-checkout-trust span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-checkout-trust i {
	color: var(--bcc-success);
	font-size: 14px;
	width: 16px;
	text-align: center;
}

/* Login / coupon toggle notices keep brand styling */
body.biltmore-checkout-page .woocommerce-form-login-toggle,
body.biltmore-checkout-page .woocommerce-form-coupon-toggle {
	margin-bottom: 22px;
}

@media (max-width: 991px) {
	body.biltmore-checkout-page .bcc-checkout-grid {
		grid-template-columns: 1fr;
	}

	body.biltmore-checkout-page .bcc-checkout-aside {
		position: static;
	}
}

@media (max-width: 640px) {
	body.biltmore-checkout-page .woocommerce-billing-fields,
	body.biltmore-checkout-page .woocommerce-shipping-fields,
	body.biltmore-checkout-page .woocommerce-additional-fields {
		padding: 0 20px 20px;
	}

	body.biltmore-checkout-page .woocommerce-account-fields {
		padding: 20px;
	}

	body.biltmore-checkout-page .woocommerce-billing-fields__field-wrapper,
	body.biltmore-checkout-page .woocommerce-shipping-fields__field-wrapper,
	body.biltmore-checkout-page .woocommerce-additional-fields__field-wrapper,
	body.biltmore-checkout-page .create-account {
		grid-template-columns: 1fr;
	}

	body.biltmore-checkout-page .form-row-first,
	body.biltmore-checkout-page .form-row-last {
		grid-column: 1 / -1;
	}
}

@media (max-width: 991px) {
	.bcc-steps-holder {
		padding: 18px 16px;
	}

	.bcc-step-label {
		font-size: 10px;
	}
}

@media (max-width: 640px) {
	.bcc-step:not(:last-child)::after {
		top: 16px;
		left: calc(50% + 18px);
		width: calc(100% - 36px);
	}

	.bcc-step-marker {
		width: 32px;
		height: 32px;
		margin-bottom: 8px;
	}

	.bcc-cart-card__header,
	.bcc-cart-items,
	.bcc-cart-summary {
		padding-left: 20px;
		padding-right: 20px;
	}

	.bcc-cart-item {
		grid-template-columns: 96px minmax(0, 1fr) auto;
		gap: 8px 14px;
	}

	.bcc-cart-item__image,
	.bcc-cart-item__media img {
		height: 78px;
	}

	.bcc-cart-item__title {
		font-size: 16px;
	}

	.bcc-cart-item__price .amount,
	.bcc-cart-item__price .woocommerce-Price-amount {
		font-size: 18px;
	}
}

/* ==========================================================================
   Order received / confirmation page
   ========================================================================== */
body.biltmore-checkout-page .bcc-confirm {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Generic confirmation card */
body.biltmore-checkout-page .bcc-confirm-card {
	background: var(--bcc-bg-3);
	border: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg);
	box-shadow: var(--bcc-shadow-md);
	overflow: hidden;
}

body.biltmore-checkout-page .bcc-confirm-card__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 16px 24px;
	border-bottom: 1px solid var(--bcc-border);
	border-radius: var(--bcc-radius-lg) var(--bcc-radius-lg) 0 0;
	background: linear-gradient(180deg, var(--bcc-bg-2) 0%, var(--bcc-bg-3) 100%);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .bcc-confirm-card__title i {
	color: var(--bcc-brand);
	font-size: 15px;
}

body.biltmore-checkout-page .bcc-confirm-card__body {
	padding: 22px 24px;
}

/* Success hero */
body.biltmore-checkout-page .bcc-confirm-hero {
	text-align: center;
	padding: 36px 28px 30px;
}

body.biltmore-checkout-page .bcc-confirm-hero__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--bcc-success-soft);
	border: 1px solid var(--bcc-success-border);
	color: var(--bcc-success);
	font-size: 26px;
}

body.biltmore-checkout-page .bcc-confirm-hero__icon--failed {
	background: var(--bcc-brand-soft);
	border-color: var(--bcc-brand-border);
	color: var(--bcc-brand);
}

body.biltmore-checkout-page .bcc-confirm-hero__icon--muted {
	background: var(--bcc-bg-2);
	border-color: var(--bcc-border);
	color: var(--bcc-text-muted);
}

body.biltmore-checkout-page .bcc-confirm-hero__title {
	margin: 0 0 8px;
	font-size: clamp(22px, 3vw, 27px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .bcc-confirm-hero__text {
	margin: 0 auto;
	max-width: 520px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-confirm-hero__text strong {
	color: var(--bcc-text);
}

/* Meta grid inside the hero */
body.biltmore-checkout-page .bcc-confirm-meta {
	list-style: none;
	margin: 24px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--bcc-border);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 18px 12px;
	text-align: left;
}

body.biltmore-checkout-page .bcc-confirm-meta__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

body.biltmore-checkout-page .bcc-confirm-meta__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bcc-text-muted);
}

body.biltmore-checkout-page .bcc-confirm-meta__value {
	font-size: 15px;
	font-weight: 700;
	color: var(--bcc-text);
	word-break: break-word;
}

/* Payment instructions */
body.biltmore-checkout-page .bcc-confirm-payment {
	font-size: 14px;
	line-height: 1.65;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-confirm-payment > * {
	margin-top: 0;
}

body.biltmore-checkout-page .bcc-confirm-payment h2,
body.biltmore-checkout-page .bcc-confirm-payment h3 {
	font-size: 15px;
	color: var(--bcc-text);
	margin: 0 0 10px;
}

body.biltmore-checkout-page .bcc-confirm-payment ul.order_details,
body.biltmore-checkout-page .bcc-confirm-payment ul.wc-bacs-bank-details {
	list-style: none;
	margin: 0;
	padding: 14px 16px;
	border: 1px solid #f5e6cf;
	border-radius: var(--bcc-radius-md);
	background: #fff8ed;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px 18px;
}

body.biltmore-checkout-page .bcc-confirm-payment ul.order_details li,
body.biltmore-checkout-page .bcc-confirm-payment ul.wc-bacs-bank-details li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 13px;
	color: var(--bcc-text-secondary);
	border: 0;
	padding: 0;
}

body.biltmore-checkout-page .bcc-confirm-payment ul li strong {
	font-size: 14px;
	color: var(--bcc-text);
	font-weight: 700;
}

/* Order items */
body.biltmore-checkout-page .bcc-confirm-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.biltmore-checkout-page .bcc-confirm-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--bcc-border);
}

body.biltmore-checkout-page .bcc-confirm-item:first-child {
	padding-top: 0;
}

body.biltmore-checkout-page .bcc-confirm-item .bcc-review-item__media {
	flex: 0 0 auto;
	width: 72px;
	height: 54px;
	border-radius: var(--bcc-radius-sm);
	overflow: hidden;
	border: 1px solid var(--bcc-border);
	background: var(--bcc-bg-2);
}

body.biltmore-checkout-page .bcc-confirm-item .bcc-review-item__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.biltmore-checkout-page .bcc-confirm-item__info {
	flex: 1 1 auto;
	min-width: 0;
}

body.biltmore-checkout-page .bcc-confirm-item__info .bcc-review-item__name {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--bcc-text);
	text-decoration: none;
}

body.biltmore-checkout-page a.bcc-review-item__name:hover {
	color: var(--bcc-brand);
}

body.biltmore-checkout-page .bcc-confirm-item__meta {
	margin-top: 4px;
	font-size: 12.5px;
	color: var(--bcc-text-muted);
}

body.biltmore-checkout-page .bcc-confirm-item__meta p {
	margin: 0;
}

body.biltmore-checkout-page .bcc-confirm-item__price {
	flex: 0 0 auto;
	font-size: 15px;
	font-weight: 800;
	color: var(--bcc-text);
	white-space: nowrap;
}

/* Totals */
body.biltmore-checkout-page .bcc-confirm-totals {
	margin: 16px 0 0;
}

body.biltmore-checkout-page .bcc-confirm-totals__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	font-size: 14px;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-confirm-totals__row dt {
	margin: 0;
	font-weight: 600;
}

body.biltmore-checkout-page .bcc-confirm-totals__row dd {
	margin: 0;
	font-weight: 700;
	color: var(--bcc-text);
	text-align: right;
}

body.biltmore-checkout-page .bcc-confirm-totals__row--grand {
	margin-top: 6px;
	padding-top: 14px;
	border-top: 1px solid var(--bcc-border);
}

body.biltmore-checkout-page .bcc-confirm-totals__row--grand dt {
	font-size: 16px;
	font-weight: 800;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .bcc-confirm-totals__row--grand dd {
	font-size: 19px;
	font-weight: 800;
}

/* Order note */
body.biltmore-checkout-page .bcc-confirm-note {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: var(--bcc-radius-sm);
	background: var(--bcc-bg-2);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-confirm-note__label {
	display: block;
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bcc-text-muted);
}

/* Addresses */
body.biltmore-checkout-page .bcc-confirm-addresses {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

body.biltmore-checkout-page .bcc-confirm-addresses--two {
	grid-template-columns: 1fr 1fr;
}

body.biltmore-checkout-page .bcc-confirm-address__label {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bcc-text-muted);
}

body.biltmore-checkout-page .bcc-confirm-address address {
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	color: var(--bcc-text);
}

body.biltmore-checkout-page .bcc-confirm-address__line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	font-size: 13.5px;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-confirm-address__line i {
	color: var(--bcc-text-muted);
	font-size: 12px;
	width: 14px;
	text-align: center;
}

/* What happens next */
body.biltmore-checkout-page .bcc-confirm-steps {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

body.biltmore-checkout-page .bcc-confirm-steps li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

body.biltmore-checkout-page .bcc-confirm-steps__num {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bcc-brand-soft);
	border: 1px solid var(--bcc-brand-border);
	color: var(--bcc-brand);
	font-size: 13px;
	font-weight: 800;
}

body.biltmore-checkout-page .bcc-confirm-steps__text {
	font-size: 14px;
	line-height: 1.6;
	color: var(--bcc-text-secondary);
	padding-top: 3px;
}

body.biltmore-checkout-page .bcc-confirm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

body.biltmore-checkout-page .bcc-confirm-actions .bcc-btn {
	flex: 1 1 auto;
}

body.biltmore-checkout-page .bcc-confirm-support {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--bcc-border);
	font-size: 13.5px;
	color: var(--bcc-text-secondary);
}

body.biltmore-checkout-page .bcc-confirm-support i {
	color: var(--bcc-brand);
	font-size: 15px;
}

body.biltmore-checkout-page .bcc-confirm-support a {
	color: var(--bcc-brand);
	font-weight: 700;
	text-decoration: none;
}

body.biltmore-checkout-page .bcc-confirm-support a:hover {
	text-decoration: underline;
}

/* Trust strip on confirmation becomes a horizontal row */
body.biltmore-checkout-page .bcc-confirm-trust {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 26px;
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

@media (max-width: 640px) {
	body.biltmore-checkout-page .bcc-confirm-addresses--two {
		grid-template-columns: 1fr;
	}

	body.biltmore-checkout-page .bcc-confirm-item {
		flex-wrap: wrap;
	}

	body.biltmore-checkout-page .bcc-confirm-item__price {
		width: 100%;
		text-align: right;
	}

	body.biltmore-checkout-page .bcc-confirm-card__body {
		padding: 18px 16px;
	}

	body.biltmore-checkout-page .bcc-confirm-hero {
		padding: 28px 18px 24px;
	}
}
