.bpg-booking {
	margin: 1.5em 0;
	max-width: 640px;
}

.bpg-section-title {
	margin: 1.2em 0 0.6em;
	font-size: 1.1em;
}

.bpg-packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}

.bpg-package-card {
	position: relative;
	display: block;
	border: 2px solid #ddd;
	border-radius: 8px;
	padding: 14px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bpg-package-card:hover {
	border-color: #f7941d;
}

.bpg-package-card input[type="radio"] {
	position: absolute;
	top: 14px;
	right: 14px;
}

.bpg-package-card.is-selected {
	border-color: #f7941d;
	box-shadow: 0 0 0 1px #f7941d;
}

.bpg-package-name {
	display: block;
	font-weight: 700;
	margin-bottom: 4px;
}

.bpg-package-price {
	display: block;
	color: #f7941d;
	font-weight: 700;
	margin-bottom: 8px;
}

.bpg-package-price small {
	color: #666;
	font-weight: 400;
}

.bpg-package-includes {
	margin: 0;
	padding-left: 1.1em;
	font-size: 0.9em;
	color: #444;
}

.bpg-field-row {
	margin: 14px 0;
}

.bpg-field-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}

.bpg-field-row input,
.bpg-field-row select {
	width: 100%;
	max-width: 320px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.bpg-hint {
	font-size: 0.85em;
	color: #666;
	margin: 4px 0 0;
}

.bpg-slot-status {
	font-size: 0.85em;
	margin: 6px 0 0;
}

.bpg-slot-status.is-error {
	color: #c0392b;
}

.bpg-addons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bpg-addon {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
}

.bpg-addon-price {
	color: #666;
	font-size: 0.9em;
}

.bpg-total {
	margin-top: 1em;
	padding: 12px;
	background: #f7f7f7;
	border-radius: 6px;
	font-size: 1.15em;
	font-weight: 700;
}

.bpg-total:empty {
	display: none;
}
