/* Laundry Delivery — Booking Form UI */
.ld-booking {
	--ld-navy: #1d2d50;
	--ld-navy-dark: #15233f;
	--ld-teal: #2cb67d;
	--ld-purple: #1d2d50;
	--ld-purple-dark: #15233f;
	--ld-purple-light: #eef2f8;
	--ld-border: #e2e8f0;
	--ld-text: #111827;
	--ld-muted: #64748b;
	--ld-radius: 14px;
	--ld-shadow: 0 8px 30px rgba(29, 45, 80, 0.08);
	max-width: 1040px;
	margin: 0 auto;
	padding: 24px 16px 48px;
	font-family: inherit;
	color: var(--ld-text);
}

.ld-booking__topbar {
	margin-bottom: 24px;
}

.ld-booking__heading {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
}

.ld-booking__subheading {
	margin: 8px 0 0;
	color: var(--ld-muted);
	font-size: 15px;
}

.ld-booking__back {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--ld-purple);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ld-booking__back:hover {
	color: var(--ld-purple-dark);
	text-decoration: underline;
}

.ld-plan-banner {
	background: linear-gradient(135deg, var(--ld-purple-light), #fff);
	border: 1px solid #ddd6fe;
}

.ld-plan-banner__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ld-plan-banner__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ld-purple);
}

.ld-plan-banner__title {
	font-size: 20px;
	color: var(--ld-text);
}

.ld-plan-banner__meta {
	font-size: 14px;
	color: var(--ld-muted);
}

.ld-plan-grid--compact {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ld-plan-card--subscription .ld-plan-card__inner {
	min-height: 120px;
}

.ld-booking--schedule .ld-progress__item {
	flex: 1;
}

/* Progress stepper */
.ld-progress {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin-bottom: 32px;
}

.ld-progress__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	text-align: center;
	color: var(--ld-muted);
}

.ld-progress__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #d8d8e3;
	background: #fff;
	font-weight: 700;
	z-index: 2;
}

.ld-progress__item--active .ld-progress__icon {
	border-color: var(--ld-purple);
	background: var(--ld-purple);
	color: #fff;
}

.ld-progress__item--done .ld-progress__icon {
	border-color: var(--ld-purple);
	background: var(--ld-purple);
	color: #fff;
}

.ld-progress__item--done .ld-progress__num::before {
	content: "✓";
}

.ld-progress__item--done .ld-progress__num {
	font-size: 0;
}

.ld-progress__label {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
}

.ld-progress__item--active .ld-progress__label,
.ld-progress__item--done .ld-progress__label {
	color: var(--ld-purple);
}

.ld-progress__line {
	position: absolute;
	top: 18px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: #ececf2;
	z-index: 1;
}

.ld-progress__item:last-child .ld-progress__line {
	display: none;
}

.ld-progress__item--active .ld-progress__line,
.ld-progress__item--done .ld-progress__line {
	background: var(--ld-purple);
}

/* Layout */
.ld-booking__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 24px;
	align-items: start;
}

.ld-booking__message {
	padding: 14px 18px;
	border-radius: 10px;
	margin-bottom: 20px;
	font-weight: 500;
}

.ld-booking__message--error {
	background: #fff2f2;
	border: 1px solid #ffb3b3;
	color: #a12828;
}

.ld-booking__message--info {
	background: #f3efff;
	border: 1px solid #c9b8ff;
	color: #4a36b1;
}

.ld-field__error {
	margin: 8px 0 0;
	color: #c62828;
	font-size: 13px;
	font-weight: 600;
}

.ld-input--error {
	border-color: #e53935 !important;
	box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
}

.ld-input--checking {
	opacity: 0.75;
}

/* Plan cards — Step 1 */
.ld-plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.ld-plan-grid--services {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 820px) {
	.ld-plan-grid--services {
		grid-template-columns: 1fr;
	}
}

.ld-plan-card {
	display: block;
	cursor: pointer;
	position: relative;
}

.ld-plan-card input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.ld-plan-card__inner {
	position: relative;
	height: 100%;
	padding: 24px;
	border: 2px solid var(--ld-border);
	border-radius: var(--ld-radius);
	background: #fff;
	box-shadow: var(--ld-shadow);
	transition: border-color 0.2s, transform 0.2s;
}

.ld-plan-card input:checked + .ld-plan-card__inner {
	border-color: var(--ld-purple);
	box-shadow: 0 0 0 1px var(--ld-purple), var(--ld-shadow);
}

.ld-plan-card__radio {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 22px;
	height: 22px;
	border: 2px solid #c9c9d6;
	border-radius: 50%;
}

.ld-plan-card input:checked + .ld-plan-card__inner .ld-plan-card__radio {
	border-color: var(--ld-purple);
	background: radial-gradient(circle, var(--ld-purple) 45%, transparent 48%);
}

.ld-plan-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--ld-purple-light);
	color: var(--ld-purple);
	font-size: 12px;
	font-weight: 700;
}

.ld-plan-card__title {
	margin: 0 0 10px;
	padding-left: 34px;
	font-size: 22px;
}

.ld-plan-card__price {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 800;
	color: var(--ld-purple);
}

.ld-plan-card__desc {
	margin: 0 0 14px;
	color: var(--ld-muted);
	font-size: 14px;
	line-height: 1.5;
}

.ld-plan-card__features {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ld-plan-card__features li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.4;
}

.ld-plan-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--ld-purple);
	font-weight: 700;
}

.ld-booking-package-panel,
.ld-booking-billing-panel {
	margin-top: 18px;
}

.ld-plan-grid--packages {
	margin-top: 4px;
}

.ld-billing-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ld-billing-option {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	background: #fff;
	cursor: pointer;
}

.ld-billing-option:has(input:checked) {
	border-color: var(--ld-purple);
	box-shadow: 0 0 0 1px var(--ld-purple);
}

.ld-billing-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ld-billing-option__label {
	font-weight: 700;
	color: var(--ld-text);
}

.ld-billing-option__price {
	font-size: 18px;
	font-weight: 700;
	color: var(--ld-purple);
}

@media (max-width: 640px) {
	.ld-billing-options {
		grid-template-columns: 1fr;
	}
}

/* Detail cards — Step 2 & 3 */
.ld-detail-card {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	padding: 22px;
	margin-bottom: 18px;
	box-shadow: var(--ld-shadow);
}

.ld-detail-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.ld-detail-card__head h3 {
	margin: 0;
	font-size: 18px;
}

.ld-detail-card__icon {
	font-size: 20px;
}

.ld-field--inline {
	margin-top: 12px;
}

.ld-field--inline label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
}

.ld-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d3d3de;
	border-radius: 10px;
	font-size: 15px;
	box-sizing: border-box;
	font-family: inherit;
	resize: vertical;
}

.ld-input:focus {
	border-color: var(--ld-purple);
	outline: none;
	box-shadow: 0 0 0 3px rgba(108, 76, 255, 0.15);
}

/* Date carousel */
.ld-date-carousel-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ld-date-carousel {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 6px 2px 10px;
	flex: 1;
	scrollbar-width: thin;
}

.ld-carousel-btn {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: 1px solid var(--ld-border);
	border-radius: 50%;
	background: #fff;
	color: var(--ld-purple);
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}

.ld-date-chip {
	flex: 0 0 auto;
	min-width: 72px;
	padding: 12px 10px;
	border: 2px solid var(--ld-border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s, background 0.2s;
}

.ld-date-chip__day {
	display: block;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.1;
}

.ld-date-chip__week {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--ld-muted);
}

.ld-date-chip--active {
	border-color: var(--ld-purple);
	background: var(--ld-purple-light);
}

.ld-date-chip--active .ld-date-chip__week {
	color: var(--ld-purple);
}

/* Time slots */
.ld-time-slots {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.ld-time-slot {
	padding: 14px 12px;
	border: 2px solid var(--ld-border);
	border-radius: 12px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.ld-time-slot--active {
	border-color: var(--ld-purple);
	background: var(--ld-purple-light);
	color: var(--ld-purple-dark);
}

.ld-time-slot--full,
.ld-time-slot:disabled {
	border-color: #f1d5d5;
	background: #fff5f5;
	color: #b45309;
	cursor: not-allowed;
	opacity: 0.85;
}

.ld-time-slot--full:hover,
.ld-time-slot:disabled:hover {
	border-color: #f1d5d5;
	background: #fff5f5;
}

.ld-slots-placeholder {
	margin: 0;
	padding: 16px;
	color: var(--ld-muted);
	font-size: 14px;
	text-align: center;
	background: #fafafa;
	border-radius: 12px;
	border: 1px dashed var(--ld-border);
}

.ld-date-carousel .ld-slots-placeholder {
	min-width: 100%;
}

/* Sidebar */
.ld-sidebar-card {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	padding: 22px;
	box-shadow: var(--ld-shadow);
	position: sticky;
	top: 24px;
}

.ld-sidebar-card h3 {
	margin: 0 0 14px;
	font-size: 18px;
}

.ld-sidebar-card__notes {
	margin: 0 0 20px;
	padding-left: 18px;
	color: var(--ld-muted);
	font-size: 14px;
	line-height: 1.6;
}

.ld-sidebar-card__notes li {
	margin-bottom: 8px;
}

.ld-summary-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	font-size: 15px;
}

.ld-summary-dl {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 10px 16px;
	margin: 0;
}

.ld-summary-dl dt {
	font-weight: 600;
	margin: 0;
}

.ld-summary-dl dd {
	margin: 0;
	color: var(--ld-muted);
}

/* Payment */
.ld-payment-options {
	display: grid;
	gap: 10px;
}

.ld-payment-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 2px solid var(--ld-border);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.2s;
}

.ld-payment-option:has(input:checked) {
	border-color: var(--ld-purple);
	background: var(--ld-purple-light);
}

.ld-payment-option input {
	accent-color: var(--ld-purple);
	width: 18px;
	height: 18px;
}

/* Buttons */
.ld-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	font-family: inherit;
	transition: background 0.2s, opacity 0.2s;
}

.ld-btn--primary {
	background: var(--ld-purple);
	color: #fff;
}

.ld-btn--primary:hover {
	background: var(--ld-purple-dark);
	color: #fff;
}

.ld-btn--primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.ld-btn--block {
	width: 100%;
}

.ld-btn--link {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 8px;
	background: transparent;
	color: var(--ld-muted);
	font-size: 14px;
	font-weight: 600;
}

.ld-booking-notice {
	padding: 16px;
	background: #fff8e6;
	border: 1px solid #f0d58b;
	border-radius: 10px;
}

.ld-saved-address-note {
	margin: 0 0 12px;
	padding: 10px 12px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	color: #166534;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
	.ld-booking__layout {
		grid-template-columns: 1fr;
	}

	.ld-sidebar-card {
		position: static;
	}

	.ld-progress__label {
		font-size: 11px;
	}
}

@media (max-width: 600px) {
	.ld-plan-grid,
	.ld-time-slots {
		grid-template-columns: 1fr;
	}

	.ld-progress {
		gap: 4px;
	}

	.ld-progress__icon {
		width: 30px;
		height: 30px;
		font-size: 13px;
	}

	.ld-progress__line {
		top: 15px;
	}
}

/* GARA-style booking shell */
.ld-booking__shell {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--ld-shadow);
}

.ld-booking--loading .ld-booking__body,
.ld-booking--loading .ld-booking__footer {
	display: none;
}

.ld-booking [hidden] {
	display: none !important;
}

.ld-booking__brandbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	background: var(--ld-navy);
	color: #fff;
}

.ld-booking__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 18px;
}

.ld-booking__step-meta {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
}

.ld-booking__progressbar {
	height: 4px;
	background: #e8edf5;
}

.ld-booking__progressbar-fill {
	height: 100%;
	background: var(--ld-teal);
	transition: width 0.25s ease;
}

.ld-booking__loader {
	display: none !important;
}

.ld-booking__loader-card {
	display: none !important;
}

@keyframes ld-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.ld-booking__body {
	padding: 24px 22px 8px;
}

.ld-booking__title {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 800;
}

.ld-booking__subtitle {
	margin: 0 0 20px;
	color: var(--ld-muted);
	font-size: 15px;
}

.ld-booking__section-title {
	margin: 28px 0 8px;
	font-size: 22px;
	font-weight: 800;
}

.ld-booking__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 22px 22px;
	border-top: 1px solid var(--ld-border);
	background: #fafbfd;
}

.ld-booking__footer-summary {
	font-size: 15px;
	color: var(--ld-text);
}

.ld-booking__footer-actions {
	display: flex;
	gap: 10px;
	margin-left: auto;
}

.ld-btn--ghost {
	background: transparent;
	border: 1px solid var(--ld-border);
	color: var(--ld-text);
}

.ld-billing-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	padding: 4px;
	margin-bottom: 20px;
	border: 1px solid var(--ld-border);
	border-radius: 999px;
	background: #eef2f8;
}

.ld-service-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	border: 1px solid var(--ld-border);
	border-radius: 14px;
	background: #f7f9fc;
}

.ld-service-tabs::-webkit-scrollbar {
	display: none;
}

.ld-service-tab {
	flex: 1 0 auto;
	min-width: max-content;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: transparent;
	font-size: 14px;
	font-weight: 700;
	color: var(--ld-muted);
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ld-service-tab:hover:not(.ld-service-tab--active) {
	color: var(--ld-navy);
	background: rgba(255, 255, 255, 0.7);
}

.ld-service-tab--active {
	color: var(--ld-navy);
	background: #fff;
	border-color: var(--ld-border);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.ld-service-tab:focus-visible {
	outline: 2px solid var(--ld-primary);
	outline-offset: 2px;
}

.ld-service-inputs {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ld-booking .ld-billing-toggle__btn {
	padding: 12px 16px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	font-size: 14px;
	font-weight: 700;
	color: var(--ld-muted);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ld-booking .ld-billing-toggle__btn:hover:not(.ld-billing-toggle__btn--active) {
	color: var(--ld-navy);
	background: rgba(255, 255, 255, 0.72);
}

.ld-booking .ld-billing-toggle__btn--active,
.ld-booking .ld-billing-toggle__btn.ld-billing-toggle__btn--active {
	background: var(--ld-navy) !important;
	border-color: var(--ld-navy) !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(29, 45, 80, 0.18);
}

.ld-booking .ld-billing-toggle__btn:not(.ld-billing-toggle__btn--active) {
	background: transparent !important;
	color: var(--ld-muted) !important;
	border-color: transparent !important;
	box-shadow: none;
}

.ld-booking .ld-billing-toggle__btn:focus-visible {
	outline: 2px solid var(--ld-navy);
	outline-offset: 2px;
}

.ld-package-list {
	display: grid;
	gap: 14px;
}

.ld-booking .ld-package-list.ld-package-list--scrollable,
.ld-booking .ld-package-list:has(> .ld-package-card:nth-child(5)) {
	max-height: 420px !important;
	overflow-y: scroll !important;
	padding-right: 6px;
	scrollbar-gutter: stable;
}

.ld-booking .ld-billing-toggle.ld-billing-toggle--one-time {
	grid-template-columns: 1fr !important;
}

.ld-package-card {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px;
	border: 2px solid var(--ld-border);
	border-radius: 16px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ld-package-card--active {
	border-color: var(--ld-navy);
	box-shadow: 0 0 0 1px var(--ld-navy);
}

.ld-package-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #eef4ff;
	font-size: 24px;
}

.ld-package-card__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.ld-package-card__name {
	font-size: 17px;
}

.ld-package-card__price {
	font-size: 16px;
	font-weight: 800;
	color: var(--ld-navy);
}

.ld-package-card__desc {
	font-size: 13px;
	color: var(--ld-muted);
}

.ld-package-card--unavailable {
	opacity: 0.55;
}

.ld-package-card__features {
	margin: 2px 0 0;
	padding-left: 18px;
	font-size: 13px;
	color: var(--ld-muted);
}

.ld-package-card__qty {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ld-qty-btn {
	width: 34px;
	height: 34px;
	border: 1px solid var(--ld-border);
	border-radius: 10px;
	background: #fff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}

.ld-qty-value {
	min-width: 18px;
	text-align: center;
	font-weight: 700;
}

.ld-schedule-section {
	margin-bottom: 18px;
}

.ld-time-slots--inline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ld-time-slots--inline .ld-time-slot {
	flex: 1 1 140px;
}

.ld-date-carousel {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 4px 2px 12px;
	scrollbar-width: thin;
}

.ld-date-chip--active {
	border-color: var(--ld-navy);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--ld-navy);
}

.ld-time-slot--active {
	border-color: var(--ld-navy);
	background: var(--ld-navy);
	color: #fff;
}

.ld-field__hint--info {
	margin-top: 10px;
	font-size: 13px;
	color: var(--ld-muted);
}

.ld-schedule-summary {
	margin: 18px 0 0;
	font-size: 15px;
	color: var(--ld-muted);
}

.ld-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.ld-form-grid__full {
	grid-column: 1 / -1;
}

.ld-form-grid label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
}

.ld-skeleton--chip {
	flex: 0 0 72px;
	height: 72px;
	border-radius: 12px;
	background: linear-gradient(90deg, #f1f5f9 25%, #e8edf5 50%, #f1f5f9 75%);
	background-size: 200% 100%;
	animation: ld-shimmer 1.2s infinite;
}

.ld-plan-card input:checked + .ld-plan-card__inner {
	border-color: var(--ld-navy);
	box-shadow: 0 0 0 1px var(--ld-navy), var(--ld-shadow);
}

.ld-plan-card input:checked + .ld-plan-card__inner .ld-plan-card__radio {
	border-color: var(--ld-navy);
	background: radial-gradient(circle, var(--ld-navy) 45%, transparent 48%);
}

.ld-btn--primary {
	background: var(--ld-navy);
}

.ld-btn--primary:hover {
	background: var(--ld-navy-dark);
}

@media (max-width: 700px) {
	.ld-booking__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.ld-booking__footer-actions {
		width: 100%;
		margin-left: 0;
	}

	.ld-booking__footer-actions .ld-btn {
		flex: 1;
	}

	.ld-form-grid {
		grid-template-columns: 1fr;
	}

	.ld-package-card {
		grid-template-columns: 48px 1fr;
	}

	.ld-package-card__qty {
		grid-column: 1 / -1;
		justify-content: flex-end;
	}
}

/* Booking popup mode */
.ld-booking-wrap--step {
	max-width: 1040px;
	margin: 0 auto;
}

.ld-booking-wrap--popup {
	display: block;
}

.ld-booking-wrap--align-left {
	text-align: left;
}

.ld-booking-wrap--align-center {
	text-align: center;
}

.ld-booking-wrap--align-right {
	text-align: right;
}

.ld-booking-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 999px;
	cursor: pointer;
}

.ld-booking-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
}

.ld-booking-modal[hidden] {
	display: none !important;
}

.ld-booking-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.62);
	backdrop-filter: blur(2px);
}

.ld-booking-modal__dialog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(1040px, 100%);
	max-height: min(92vh, 900px);
	overflow: hidden;
	border-radius: 18px;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.ld-booking--in-modal {
	max-width: none;
	margin: 0;
	padding: 0;
}

.ld-booking--in-modal .ld-booking__shell {
	border: none;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	max-height: min(92vh, 900px);
}

.ld-booking--in-modal .ld-booking__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 20px 22px 8px;
	-webkit-overflow-scrolling: touch;
}

.ld-booking--in-modal .ld-booking__footer {
	flex-shrink: 0;
}

.ld-booking__close {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	margin-left: 8px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	background: transparent;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.ld-booking__close:hover,
.ld-booking__close:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.45);
	outline: none;
}

body.ld-booking-modal-open {
	overflow: hidden;
}

@media (max-width: 700px) {
	.ld-booking-modal {
		padding: 0;
		align-items: stretch;
	}

	.ld-booking-modal__dialog {
		width: 100%;
		max-height: 100vh;
		border-radius: 0;
	}

	.ld-booking--in-modal .ld-booking__shell {
		max-height: 100vh;
	}

	.ld-booking-trigger {
		width: 100%;
	}
}
