.tpb-booking-widget {
	max-width: 900px;
	margin: 0 auto;
	font-family: inherit;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
	box-sizing: border-box;
}
.tpb-booking-widget *,
.tpb-booking-widget *::before,
.tpb-booking-widget *::after {
	box-sizing: border-box;
}

/* Two-column layout: preferences on the left, details + send on the right */
.tpb-columns {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 32px;
	align-items: start;
}
.tpb-col-right {
	position: sticky;
	top: 16px;
}

@media (max-width: 720px) {
	.tpb-booking-widget {
		padding: 16px;
		border-radius: 8px;
	}
	.tpb-columns {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.tpb-col-right {
		position: static;
	}
}

.tpb-booking-widget .tpb-field {
	margin-bottom: 22px;
}
.tpb-booking-widget label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 15px;
}
.tpb-booking-widget select,
.tpb-booking-widget input[type="text"],
.tpb-booking-widget input[type="tel"],
.tpb-booking-widget input[type="email"],
.tpb-booking-widget textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px; /* 16px prevents iOS Safari auto-zoom on focus */
	box-sizing: border-box;
	margin-bottom: 10px;
	-webkit-appearance: none;
	appearance: none;
}
.tpb-package-desc {
	color: #666;
	font-size: 13px;
	margin-top: 6px;
}
.tpb-hint {
	font-size: 13px;
	color: #1b5fd8;
	background: #f4f8ff;
	border: 1px solid #dbe6fb;
	padding: 8px 10px;
	border-radius: 6px;
	margin: 0 0 10px;
	min-height: 16px;
}
.tpb-pax-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	flex-wrap: wrap;
}
.tpb-pax-label {
	flex: 1;
	font-size: 14px;
	min-width: 120px;
}
.tpb-pax-input {
	width: 64px !important;
	padding: 8px 4px !important;
	text-align: center;
	font-size: 16px !important;
	margin-bottom: 0 !important;
}
.tpb-pax-price {
	width: 110px;
	text-align: right;
	color: #666;
	font-size: 13px;
}
.tpb-tier-group {
	margin-top: 10px;
	padding: 10px 12px;
	background: #fafafa;
	border-radius: 6px;
}
.tpb-tier-title {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
	color: #333;
}
.tpb-total-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f4f8ff;
	border: 1px solid #dbe6fb;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 16px;
	flex-wrap: wrap;
	gap: 6px;
}
.tpb-total-box strong {
	font-size: 22px;
	color: #1b5fd8;
}
.tpb-submit-btn {
	width: 100%;
	background: #25D366;
	color: #fff;
	border: none;
	padding: 16px 18px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
}
.tpb-submit-btn:hover {
	background: #1ebe5b;
}
.tpb-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.tpb-error-msg {
	color: #b32d2e;
	font-size: 13px;
	margin-top: 10px;
}
.tpb-success-msg {
	color: #1a7a34;
	font-size: 14px;
	margin-top: 10px;
	background: #eafaf0;
	border: 1px solid #cdf0da;
	padding: 12px;
	border-radius: 6px;
}
.tpb-no-packages {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	background: #fafafa;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	color: #666;
	text-align: center;
}
