.lbp-booking-form {
	--lbp-accent: #04c1de;
	--lbp-accent-dark: #03a0ba;
	--lbp-navy: #0a1f33;
	--lbp-navy-alt: #0e2740;
	--lbp-text: #eaf6fa;
	--lbp-text-muted: #9db6c6;
	--lbp-border: rgba(4, 193, 222, 0.28);
	--lbp-radius: 10px;
	max-width: 1000px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--lbp-text);
	box-sizing: border-box;
}

.lbp-booking-form *,
.lbp-booking-form *::before,
.lbp-booking-form *::after {
	box-sizing: border-box;
}

.lbp-section {
	margin-bottom: 2.5rem;
}

.lbp-section-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--lbp-accent);
	display: inline-block;
	color: var(--lbp-text);
}

.lbp-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem;
}

.lbp-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--lbp-border);
	border-radius: var(--lbp-radius);
	overflow: hidden;
	cursor: pointer;
	background: var(--lbp-navy);
	transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lbp-card:hover {
	box-shadow: 0 6px 20px rgba(4, 193, 222, 0.18);
	transform: translateY(-2px);
}

.lbp-card input[type="radio"],
.lbp-card input[type="checkbox"] {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 1.15rem;
	height: 1.15rem;
	accent-color: var(--lbp-accent);
	z-index: 2;
}

.lbp-card:has(input:checked) {
	border-color: var(--lbp-accent);
	box-shadow: 0 0 0 2px var(--lbp-accent);
}

.lbp-card-disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.lbp-card-disabled:hover {
	box-shadow: none;
	transform: none;
}

.lbp-stock-tag {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	padding: 2px 10px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	background: rgba(220, 53, 69, 0.85);
	color: #fff;
}

.lbp-no-availability {
	padding: 2.5rem 1.5rem;
	text-align: center;
	border: 1px solid var(--lbp-border, rgba(4, 193, 222, 0.28));
	border-radius: var(--lbp-radius, 10px);
	background: var(--lbp-navy, #0a1f33);
}

.lbp-no-availability-message {
	margin: 0;
	font-size: 1.05rem;
	color: var(--lbp-text, #eaf6fa);
}

.lbp-card-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: var(--lbp-navy-alt);
	overflow: hidden;
}

.lbp-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lbp-card-image-placeholder {
	background: linear-gradient(135deg, #0e2740, #123048);
}

.lbp-card-body {
	padding: 1rem 1.1rem 1.2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lbp-card-title {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--lbp-text);
}

.lbp-card-desc {
	font-size: 0.875rem;
	color: var(--lbp-text-muted);
	margin-bottom: 0.75rem;
}

.lbp-card-desc p {
	margin: 0 0 0.5em;
}

.lbp-card-price {
	margin-top: auto;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.lbp-price-current {
	font-weight: 700;
	color: var(--lbp-accent);
	font-size: 1.05rem;
}

.lbp-price-old {
	text-decoration: line-through;
	color: var(--lbp-text-muted);
	font-size: 0.9rem;
}

.lbp-price-unit {
	font-size: 0.75rem;
	color: var(--lbp-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.lbp-guest-count {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 220px;
}

.lbp-guest-count label {
	font-weight: 600;
	color: var(--lbp-text);
}

.lbp-guest-count input[type="number"] {
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--lbp-border);
	border-radius: var(--lbp-radius);
	font-size: 1rem;
	background: var(--lbp-navy);
	color: var(--lbp-text);
}

.lbp-field-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
}

.lbp-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.lbp-field-wide {
	grid-column: 1 / -1;
}

.lbp-field label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--lbp-text);
}

.lbp-field input,
.lbp-field textarea {
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--lbp-border);
	border-radius: var(--lbp-radius);
	font-size: 0.95rem;
	font-family: inherit;
	width: 100%;
	background: var(--lbp-navy);
	color: var(--lbp-text);
}

.lbp-field input::placeholder,
.lbp-field textarea::placeholder {
	color: var(--lbp-text-muted);
}

.lbp-field input:focus,
.lbp-field textarea:focus,
.lbp-guest-count input:focus {
	outline: none;
	border-color: var(--lbp-accent);
	box-shadow: 0 0 0 3px rgba(4, 193, 222, 0.25);
}

.lbp-payment-options {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lbp-payment-option {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--lbp-border);
	border-radius: var(--lbp-radius);
	background: var(--lbp-navy);
	color: #fff;
	cursor: pointer;
	font-size: 0.9rem;
	transition: border-color 0.2s ease;
}

.lbp-payment-option:has(input:checked) {
	border-color: var(--lbp-accent);
}

.lbp-payment-option input[type="radio"] {
	accent-color: var(--lbp-accent);
	width: 1.05rem;
	height: 1.05rem;
	flex-shrink: 0;
}

.lbp-summary-balance-due .lbp-summary-value {
	color: #ffb648;
}

.lbp-summary {
	background: var(--lbp-navy);
	border: 1px solid var(--lbp-border);
	border-radius: var(--lbp-radius);
	padding: 1.25rem 1.5rem;
}

.lbp-summary-row[hidden] {
	display: none;
}

.lbp-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px dashed var(--lbp-border);
	font-size: 0.95rem;
	gap: 1rem;
	color: var(--lbp-text);
}

.lbp-summary-row:last-child {
	border-bottom: none;
}

.lbp-summary-addons-list .lbp-summary-row {
	font-size: 0.875rem;
	color: var(--lbp-text-muted);
}

.lbp-summary-grand-total {
	border-top: 2px solid var(--lbp-accent);
	margin-top: 0.5rem;
	padding-top: 0.85rem;
	font-size: 1.15rem;
	font-weight: 700;
}

.lbp-summary-grand-total .lbp-summary-value {
	color: var(--lbp-accent);
}

.lbp-form-message {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: var(--lbp-radius);
	background: rgba(220, 53, 69, 0.15);
	border: 1px solid rgba(220, 53, 69, 0.4);
	color: #ff8f97;
	font-size: 0.9rem;
}

.lbp-submit-btn {
	margin-top: 1.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	background: var(--lbp-accent);
	color: var(--lbp-navy);
	border: none;
	border-radius: var(--lbp-radius);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.lbp-submit-btn:hover {
	background: var(--lbp-accent-dark);
}

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

.lbp-empty {
	color: var(--lbp-text-muted);
	font-style: italic;
}

@media (max-width: 600px) {
	.lbp-card-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.lbp-card-body {
		padding: 0.75rem 0.85rem 1rem;
	}

	.lbp-card-title {
		font-size: 0.95rem;
	}

	.lbp-section-title {
		font-size: 1.1rem;
	}

	.lbp-summary {
		padding: 1rem;
	}

	.lbp-guest-count {
		max-width: none;
		width: 100%;
	}

	.lbp-guest-count input[type="number"] {
		width: 100%;
	}

	.lbp-field-grid {
		grid-template-columns: 1fr;
	}

	.lbp-field input,
	.lbp-field textarea {
		width: 100%;
	}
}
