/**
 * Customer reservation form — mobile-first styles.
 * Scoped under .bs-reservation-form to avoid Breakdance conflicts.
 * Inherits theme fonts/colors — no hardcoded brand tokens.
 */

@font-face {
	font-family: 'Monomakh';
	src: url('../fonts/monomakh-regular.woff2') format('woff2');
	font-display: swap;
}

/* Hide Breakdance back-to-top button — collides with the sticky cart bar on mobile */
.bde-back-to-top { display: none !important; }

.bs-reservation-form {
	font-size: 16px;
	line-height: 1.5;
	max-width: 100%;
}

/* ─── Two-column layout (form + sidebar) ─────────────────── */

.bs-layout-wrap {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.bs-form-col {
	flex: 1;
	min-width: 0;
	overflow-x: hidden; /* prevent nowrap date chips from expanding the page */
}

/* ─── Step indicator ─────────────────────────────────────── */

.bs-steps {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
}

.bs-step-connector {
	flex: 1;
	height: 2px;
	background: #dee2e6;
	margin: 15px 6px 0;
	transition: background 0.3s;
}

.bs-step-item--done + .bs-step-connector {
	background: #6B4226;
}

.bs-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	cursor: default;
}

.bs-step-item--done {
	cursor: pointer;
}

.bs-step-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #dee2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #aaa;
	background: #fff;
	transition: all 0.25s;
}

.bs-step-label {
	font-size: 11px;
	color: #aaa;
	font-weight: 500;
	white-space: nowrap;
}

.bs-step-item--active .bs-step-num {
	background: #6B4226;
	border-color: #6B4226;
	color: #fff;
}

.bs-step-item--active .bs-step-label {
	color: #6B4226;
	font-weight: 700;
}

.bs-step-item--done .bs-step-num {
	background: #a07850;
	border-color: #a07850;
	color: #fff;
}

.bs-step-item--done .bs-step-label {
	color: #a07850;
}

/* ─── Step panels ────────────────────────────────────────── */

.bs-step-panel {
	animation: bs-slide-in 0.25s ease;
}

/* ─── Step navigation row ────────────────────────────────── */

.bs-step-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
	flex-wrap: wrap; /* basket summary spans full width above the buttons */
}

/* Basket summary inside the step-nav: full-width row with a divider below */
.bs-step-nav .bs-basket-summary {
	width: 100%;
	max-width: none;
	border: none;
	border-bottom: 1px solid rgba(44, 24, 16, 0.12);
	border-radius: 0;
	background: transparent;
	margin: 0 0 10px;
	padding: 0 0 10px;
}

/* Step 1 & 2: fixed Continue/Back bar on mobile when button is below the fold.
   JS sentinel adds/removes .bs-step-nav--visible; step 1 also requires bread selected. */
@media (max-width: 767px) {
	#bs-step-1 .bs-step-nav.bs-step-nav--visible,
	#bs-step-2 .bs-step-nav.bs-step-nav--visible {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 10px 16px max(16px, env(safe-area-inset-bottom));
		background: #fff;
		box-shadow: 0 -4px 12px rgba(44, 24, 16, 0.08);
		z-index: 100;
		margin: 0;
	}

	/* Prevent content hiding behind the fixed bar — step 1 only when bread is chosen */
	#bs-step-1.bs-has-items {
		padding-bottom: 130px;
	}

	/* Step 2 always needs the padding (can't arrive without items) */
	#bs-step-2 {
		padding-bottom: 130px;
	}
}

.bs-back-btn {
	background: none;
	border: none;
	color: #6B4226;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 8px 0;
	font-family: inherit;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
	flex-shrink: 0;
	-webkit-tap-highlight-color: transparent;
}

.bs-back-btn:hover {
	text-decoration-style: solid;
}

.bs-continue-btn {
	display: block;
	width: 100%;
	min-height: 42px;
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	background: #6B4226;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	margin-top: 14px;
	transition: background 0.15s;
	font-family: inherit;
	-webkit-tap-highlight-color: transparent;
}

.bs-continue-btn--inline {
	margin-top: 0;
	flex: 1;
}

.bs-continue-btn:hover {
	background: #4a2d1a;
}

/* ─── Product cards grid ─────────────────────────────────── */
/* Double-ID selector beats Breakdance's #bs-products { display:flex !important } */

#bs-reservation-form #bs-products {
	display: grid !important;
	flex-direction: unset !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 8px;
}

@media (min-width: 640px) {
	#bs-reservation-form #bs-products {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Override Breakdance's width:clamp() on cards so grid controls sizing */
#bs-reservation-form .bs-product-card {
	width: 100% !important;
}

/* Beat Breakdance's image overrides inside the form */
#bs-reservation-form .bs-product-card--bread .bs-card__img-wrap {
	aspect-ratio: 3/2 !important;
	overflow: hidden;
}

#bs-reservation-form .bs-product-card--bread .bs-card__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

/* Pin add-toggle to bottom of card body */
.bs-card__body .bs-add-toggle {
	margin-top: auto;
}

/* Form grid cards: push price+stock+button to bottom as a cluster */
#bs-reservation-form #bs-products:not(.bs-products--list) .bs-product-card--bread .bs-card__price {
	margin-top: auto;
	margin-bottom: 4px;
}

#bs-reservation-form #bs-products:not(.bs-products--list) .bs-product-card--bread .bs-card__body .bs-add-toggle {
	margin-top: 6px !important;
}


/* Add button inside a bs-card — match the card shortcode CTA style */
.bs-card__body .bs-add-initial {
	border: none;
	background: #6B4226;
	color: #fff;
	font-size: 12px;
	padding: 8px 0;
	min-height: unset;
	letter-spacing: 0.02em;
}

.bs-card__body .bs-add-initial:hover:not(:disabled) {
	background: #4F2E16;
	color: #fff;
}

.bs-card__body .bs-add-initial:disabled {
	opacity: 0.4;
	background: #6B4226;
}

.bs-product-card.bs-sold-out {
	opacity: 0.5;
}

/* ─── List layout (row mode) ─────────────────────────────── */

#bs-reservation-form #bs-products.bs-products--list {
	display: flex !important;
	flex-direction: column !important;
	grid-template-columns: unset !important;
	gap: 3px;
}

#bs-reservation-form .bs-products--list .bs-product-card--bread {
	flex-direction: row !important;
	align-items: center;
	padding: 8px 10px;
	gap: 10px;
	overflow: visible;
	box-shadow: none !important;
	border-width: 1px;
}

#bs-reservation-form .bs-products--list .bs-product-card--bread .bs-card__img-wrap {
	width: 52px !important;
	height: 52px !important;
	aspect-ratio: unset !important;
	border-radius: 6px !important;
	flex-shrink: 0;
}

.bs-products--list .bs-card__img-placeholder {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	border-radius: 6px;
}

/* title full-width / price + stock 50-50 / button spans both rows */
.bs-products--list .bs-product-card--bread .bs-card__body {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	grid-template-rows: auto auto;
	grid-template-areas:
		"name  name  btn"
		"price avail btn";
	align-items: center;
	column-gap: 8px;
	row-gap: 3px;
	flex: 1;
	min-width: 0;
	text-align: left;
	padding: 0;
}

.bs-products--list .bs-product-card--bread .bs-card__name {
	grid-area: name;
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	min-width: 0;
}

.bs-products--list .bs-product-card--bread .bs-card__price {
	grid-area: price;
	font-size: 13px;
	margin: 0;
	display: block;
	opacity: 0.75;
}

@media (min-width: 640px) {
	.bs-products--list .bs-product-card--bread .bs-card__name { font-size: 15px; }
	.bs-products--list .bs-product-card--bread .bs-card__price { font-size: 14px; }
}

.bs-products--list .bs-product-card--bread .bs-card__variant {
	display: none;
}

.bs-products--list .bs-product-card--bread .bs-availability-bar {
	grid-area: avail;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.bs-products--list .bs-product-card--bread .bs-card__bar-wrap {
	height: 4px;
	width: 100%;
	overflow: hidden;
}

.bs-products--list .bs-product-card--bread .bs-card__remaining {
	font-size: 10px;
	white-space: nowrap;
	line-height: 1.2;
	margin-bottom: 0;
}

.bs-products--list .bs-product-card--bread .bs-add-toggle {
	grid-area: btn;
	margin-top: 0;
}

.bs-products--list .bs-product-card--bread .bs-add-initial {
	min-height: 32px;
	font-size: 13px;
	padding: 0 10px;
	white-space: nowrap;
}

.bs-products--list .bs-product-card--bread .bs-stepper {
	min-width: 84px;
}

.bs-products--list .bs-product-card--bread .bs-qty-minus,
.bs-products--list .bs-product-card--bread .bs-qty-plus {
	min-height: 32px;
	font-size: 16px;
}

.bs-products--list .bs-product-card--bread .bs-qty-display {
	font-size: 13px;
}

/* ─── Availability progress bar (shared bar-fill colours used by JS) ─ */

.bs-bar-fill {
	height: 100%;
	border-radius: 3px;
	transition: width 0.3s ease, background-color 0.3s ease;
}

.bs-bar-green  { background-color: #28a745; }
.bs-bar-yellow { background-color: #ffc107; }
.bs-bar-red    { background-color: #dc3545; }

/* ─── Add → stepper transform ────────────────────────────── */

.bs-add-toggle {
	margin-top: 8px;
}

.bs-add-initial {
	display: block;
	width: 100%;
	min-height: 38px;
	padding: 0 10px;
	border: 2px solid #6B4226;
	border-radius: 8px;
	background: #fff;
	color: #6B4226;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	-webkit-tap-highlight-color: transparent;
}

.bs-add-initial:hover:not(:disabled) {
	background: #6B4226;
	color: #fff;
}

.bs-add-initial:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.bs-stepper {
	display: flex;
	width: 100%;
	border: 2px solid #6B4226;
	border-radius: 8px;
	overflow: hidden;
}

.bs-qty-minus,
.bs-qty-plus {
	flex: 1;
	min-height: 38px;
	background: #fff;
	border: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	color: #6B4226;
	transition: background 0.15s;
	-webkit-tap-highlight-color: transparent;
}

.bs-qty-minus:hover:not(:disabled),
.bs-qty-plus:hover:not(:disabled) {
	background: #F5E6D3;
}

.bs-qty-minus:disabled,
.bs-qty-plus:disabled {
	color: #ccc;
	cursor: not-allowed;
}

.bs-qty-display {
	flex: 2;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	color: #2C1810;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
	padding: 0 2px;
}

/* ─── Step 3 cart recap (mobile only — appears above the customer fields) ─ */

.bs-step3-cart {
	margin: 0 0 16px;
	padding: 12px 14px;
	background: #FFFBF7;
	border: 2px solid #e8d5b0;
	border-radius: 10px;
}

.bs-step3-cart-list {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bs-step3-cart-item::before {
	content: '\2713\00a0';
	color: #28a745;
	font-weight: 700;
}

@media (min-width: 768px) {
	/* Sidebar covers this on desktop */
	.bs-step3-cart { display: none !important; }
}

/* ─── Basket summary (inside .bs-step-nav on mobile; sidebar handles desktop) */

.bs-basket-summary {
	margin: 8px 0 4px;
	padding: 8px 12px;
	background: #FFFBF7;
	border: 2px solid #6B4226;
	border-radius: 12px;
	max-width: 560px;
}

@media (min-width: 768px) {
	/* Sidebar takes over on desktop — basket summary in nav is not needed */
	.bs-step-nav .bs-basket-summary { display: none !important; }
}

.bs-basket-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #6B4226;
	margin: 0 0 6px;
}

.bs-basket-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bs-cart-date {
	font-size: 13px;
	font-weight: 700;
	color: #6B4226;
	padding-bottom: 6px;
	margin-bottom: 4px;
	border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.bs-basket-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	text-align: left;
}

.bs-basket-item span::before {
	content: '\2713\00a0';
	color: #28a745;
	font-weight: 700;
}

.bs-remove-item {
	flex-shrink: 0;
	background: none;
	border: none;
	color: #bbb;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	padding: 2px 4px;
	font-family: inherit;
	-webkit-tap-highlight-color: transparent;
}

.bs-remove-item:hover {
	color: #dc3545;
}

/* ─── Card selected (in basket) ──────────────────────────── */

.bs-in-basket {
	border-color: #6B4226 !important;
	background: #FFFBF7;
}

/* ─── Conversational step question ──────────────────────── */

.bs-step-question {
	font-size: 18px;
	font-weight: 700;
	color: #2C1810;
	margin: 0 0 14px;
	line-height: 1.3;
}

@media (min-width: 480px) {
	.bs-step-question {
		font-size: 20px;
	}
}

/* ─── Add-more-bread link (top of step 2) ────────────────── */

.bs-add-more-wrap {
	margin-bottom: 12px;
}

.bs-add-more-bread {
	background: none;
	border: none;
	color: #6B4226;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
	-webkit-tap-highlight-color: transparent;
}

.bs-add-more-bread:hover {
	text-decoration-style: solid;
}

/* ─── Addon escape hatch ─────────────────────────────────── */

.bs-addon-escape-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 16px 0 4px;
}

.bs-addon-escape-line {
	flex: 1;
	height: 1px;
	background: #dee2e6;
}

.bs-addon-escape {
	flex-shrink: 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	color: #6B4226;
	padding: 4px 0;
	font-family: inherit;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
	transition: color 0.15s, opacity 0.15s;
	-webkit-tap-highlight-color: transparent;
	white-space: nowrap;
}

.bs-addon-escape:hover {
	color: #4a2d1a;
	opacity: 0.8;
	text-decoration-style: solid;
}

/* ─── Addon section ──────────────────────────────────────── */

.bs-addon-section {
	flex-direction: column;
	gap: 8px;
	margin: 16px 0 4px;
	animation: bs-slide-in 0.3s ease;
}

.bs-addon-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #6B4226;
	opacity: 0.6;
	margin: 0 0 4px;
}

/* ─── Addon card grid (step 2) — matches bread card grid in step 1 */

#bs-reservation-form #bs-addon-section {
	display: grid !important;
	flex-direction: unset !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 8px;
}

@media (min-width: 640px) {
	#bs-reservation-form #bs-addon-section {
		grid-template-columns: repeat(4, 1fr);
	}
}

#bs-reservation-form .bs-product-card--addon .bs-card__img-wrap {
	aspect-ratio: 3/2 !important;
	overflow: hidden;
}

#bs-reservation-form .bs-product-card--addon .bs-card__img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

/* ─── Addon list mode (step 2, addon_layout="list") ─────── */

#bs-reservation-form #bs-addon-section.bs-products--list {
	display: flex !important;
	flex-direction: column !important;
	grid-template-columns: unset !important;
	gap: 3px;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon {
	flex-direction: row !important;
	align-items: center;
	padding: 8px 10px;
	gap: 10px;
	overflow: visible;
	box-shadow: none !important;
	border-width: 1px;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-card__img-wrap {
	width: 52px !important;
	height: 52px !important;
	aspect-ratio: unset !important;
	border-radius: 6px !important;
	flex-shrink: 0;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	grid-template-areas:
		"name btn"
		"price btn";
	align-items: center;
	column-gap: 8px;
	row-gap: 2px;
	flex: 1;
	min-width: 0;
	padding: 0;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-card__name {
	grid-area: name;
	font-size: 14px;
	margin: 0;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-card__price {
	grid-area: price;
	font-size: 13px;
	margin: 0;
	opacity: 0.75;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-card__desc {
	display: none;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-add-toggle {
	grid-area: btn;
	margin-top: 0;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-add-initial {
	min-height: 32px;
	font-size: 13px;
	padding: 0 10px;
	white-space: nowrap;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-stepper {
	min-width: 84px;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-qty-minus,
#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-qty-plus {
	min-height: 32px;
	font-size: 16px;
}

#bs-reservation-form .bs-products--list .bs-product-card--addon .bs-qty-display {
	font-size: 13px;
}

/* ─── Date chips ─────────────────────────────────────────── */

.bs-date-section {
	margin: 12px 0;
	animation: bs-slide-in 0.3s ease;
}

@keyframes bs-slide-in {
	from { opacity: 0; transform: translateY(-10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.bs-date-chips {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 0 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.bs-date-chips::-webkit-scrollbar {
	display: none;
}

.bs-date-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px 12px;
	border: 2px solid #dee2e6;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	min-width: 72px;
	flex-shrink: 0;
	transition: all 0.15s ease;
	-webkit-tap-highlight-color: transparent;
	color: #2C1810 !important;
}

.bs-date-chip:hover {
	border-color: #6B4226;
	background: #F5E6D3;
}

.bs-date-chip.active {
	border-color: #6B4226;
	background: #6B4226;
	color: #fff !important;
}

.bs-chip-day {
	font-size: 14px;
	font-weight: 700;
}

.bs-chip-date {
	font-size: 12px;
	opacity: 0.8;
}

/* ─── Customer fields ────────────────────────────────────── */

.bs-customer-fields {
	margin-top: 12px;
	animation: bs-slide-in 0.3s ease;
}

/* 2-column row for Name + Phone */
.bs-fields-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

@media (max-width: 400px) {
	.bs-fields-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

.bs-field {
	margin-bottom: 10px;
}

.bs-field-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
}

.bs-field-hint {
	font-size: 13px;
	opacity: 0.6;
	margin: 0 0 4px;
}

.bs-input {
	display: block;
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	font-size: 16px; /* prevents iOS zoom */
	font-family: inherit;
	transition: border-color 0.15s;
	box-sizing: border-box;
}

.bs-input:focus {
	outline: none;
	border-color: #6B4226;
	box-shadow: 0 0 0 3px rgba(107, 66, 38, 0.15);
}

.bs-input.bs-invalid {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.bs-textarea {
	resize: vertical;
	min-height: 60px;
}

.bs-field-error {
	display: block;
	font-size: 13px;
	color: #dc3545;
	margin-top: 4px;
	min-height: 18px;
}

/* ─── Submit button ──────────────────────────────────────── */

.bs-submit {
	display: block;
	width: 100%;
	min-height: 44px;
	padding: 10px 24px;
	border: none;
	border-radius: 8px;
	background: #C0392B;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s;
	-webkit-tap-highlight-color: transparent;
}

.bs-submit:hover {
	background: #A93226;
}

.bs-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ─── Sidebar ────────────────────────────────────────────── */

.bs-sidebar {
	display: none;
	width: 220px;
	flex-shrink: 0;
	position: sticky;
	top: 20px;
	border: 2px solid #e8d5b0;
	border-radius: 12px;
	background: #FFFBF7;
	overflow: hidden;
}

@media (min-width: 768px) {
	.bs-sidebar { display: block; }
}

.bs-sidebar-inner {
	padding: 14px 16px;
}

.bs-sidebar-section-title {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #6B4226;
	margin: 0 0 10px;
}

.bs-sidebar-cart-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-height: 36px;
}

.bs-sidebar-cart-item::before {
	content: '\2713\00a0';
	color: #28a745;
	font-weight: 700;
}

.bs-sidebar-empty-msg {
	font-size: 12px;
	color: #aaa;
	font-style: italic;
	line-height: 1.4;
}

.bs-sidebar-divider {
	border: none;
	border-top: 1px solid #e8d5b0;
	margin: 12px 0;
}

.bs-sidebar-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.bs-sidebar-info-row {
	font-size: 12px;
	line-height: 1.4;
	color: #444;
}

.bs-sidebar-info-label {
	font-weight: 700;
	color: #333;
	display: block;
}

.bs-sidebar-map-link {
	color: #6B4226;
	text-decoration: none;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2px;
}

.bs-sidebar-map-link:hover {
	text-decoration-style: solid;
}

/* ─── Success card ───────────────────────────────────────── */

.bs-success-card {
	padding: 24px;
	border: 2px solid #28a745;
	border-radius: 12px;
	background: #f8fff8;
}

.bs-success-card h2 {
	color: #28a745;
	margin: 0 0 12px;
}

.bs-success-summary {
	margin: 12px 0;
}

.bs-success-summary ul {
	list-style: none;
	margin: 10px 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.bs-success-summary li {
	padding: 6px 16px;
	border: 2px solid #6B4226;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #6B4226;
	background: #FFFBF7;
}

.bs-success-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.bs-success-actions a,
.bs-success-actions button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

/* ─── Badge ──────────────────────────────────────────────── */

.bs-badge {
	display: inline-block;
	font-size: inherit;
}

.bs-badge strong {
	font-size: 1.2em;
}

/* ─── Availability counter (hero shortcode) ──────────────── */

.bs-counter {
	display: inline-block;
	font-size: 1.1rem;
	color: #fff;
	background: rgba(44, 24, 16, 0.45);
	padding: 8px 18px;
	border-radius: 50px;
	letter-spacing: 0.02em;
}

.bs-counter__number {
	font-size: 1.5em;
	font-weight: 700;
	color: #F5E6D3;
}

.bs-counter--sold-out {
	background: rgba(192, 57, 43, 0.75);
	font-weight: 600;
}
