/* Frens Tour Booking — booking form styles */
.ftb-booking-form {
	max-width: 360px;
	font-family: inherit;
	color: #1a1a1a;
}

.ftb-booking-form .ftb-form {
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	padding: 20px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ftb-booking-form .ftb-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ftb-booking-form .ftb-field label {
	font-weight: 600;
	font-size: 14px;
	color: #1a1a1a;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0;
}

.ftb-booking-form .ftb-required {
	color: #e02b27;
	font-weight: 700;
}

.ftb-booking-form .ftb-price-tag {
	font-weight: 400;
	color: #555;
	font-size: 13px;
}

.ftb-booking-form .ftb-price-tag .woocommerce-Price-amount {
	font-weight: 500;
}

.ftb-booking-form .ftb-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d4d4d4;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
	color: #1a1a1a;
	box-sizing: border-box;
	line-height: 1.4;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: inherit;
}

.ftb-booking-form .ftb-input::placeholder {
	color: #9a9a9a;
}

.ftb-booking-form .ftb-input:focus {
	outline: none;
	border-color: #f7941d;
	box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.ftb-booking-form .ftb-date-input {
	min-height: 40px;
}

.ftb-booking-form .ftb-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid #ececec;
	margin-top: 4px;
}

.ftb-booking-form .ftb-total-label {
	font-weight: 700;
	font-size: 15px;
	color: #1a1a1a;
}

.ftb-booking-form .ftb-total-amount {
	font-weight: 700;
	font-size: 16px;
	color: #f7941d;
}

.ftb-booking-form .ftb-total-amount .woocommerce-Price-amount {
	color: inherit;
	font-weight: inherit;
}

.ftb-booking-form .ftb-error {
	color: #e02b27;
	font-size: 13px;
	line-height: 1.4;
	min-height: 0;
}

.ftb-booking-form .ftb-error:empty {
	display: none;
}

.ftb-booking-form .ftb-submit {
	width: 100%;
	background: #f7941d;
	color: #ffffff;
	border: none;
	border-radius: 30px;
	padding: 13px 20px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.05s ease;
	text-transform: none;
	letter-spacing: 0;
	font-family: inherit;
}

.ftb-booking-form .ftb-submit:hover {
	background: #e08412;
	color: #ffffff;
}

.ftb-booking-form .ftb-submit:active {
	transform: translateY(1px);
}

.ftb-booking-form .ftb-submit:disabled {
	background: #ddd;
	color: #888;
	cursor: not-allowed;
}

/* Number input — clean up spinner styling slightly */
.ftb-booking-form input[type="number"]::-webkit-inner-spin-button,
.ftb-booking-form input[type="number"]::-webkit-outer-spin-button {
	opacity: 1;
	height: 28px;
}

/* Mobile */
@media (max-width: 480px) {
	.ftb-booking-form {
		max-width: 100%;
	}
	.ftb-booking-form .ftb-form {
		padding: 16px;
	}
}
