.soha-booking-card {
	background: var(--color-white);
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.soha-booking-form {
	margin-bottom: unset !important;
}

.soha-booking-alert h2 {
	margin-bottom: 25px;
	color: var(--color-main);
}

.soha-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.soha-field {
	margin-bottom: 20px;
}

.soha-field label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-black);
	margin-bottom: 8px;
}

.soha-input {
	display: flex;
	align-items: center;
	height: 45px;
	border: 1px solid #dbe1ea;
	border-radius: 16px;
	padding: 0 16px;
}

.soha-input i {
	color: #94a3b8;
	margin-right: 10px;
}

.soha-input input {
	width: 100%;
	padding: unset !important;
	border: none !important;
	box-shadow: none !important;
	outline: none;
	background: none;
	margin-bottom: unset;
	font-size: 15px;
}

.soha-field textarea {
	width: 100%;
	height: 100px;
	border: 1px solid #dbe1ea;
	border-radius: 16px;
	padding: 15px;
	resize: none;
	outline: none;
}

.soha-passenger-wrap {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	background: #f8fafc;
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 20px;
}

.soha-passenger-item {
	background: var(--color-white);
	border-radius: 16px;
	padding: 18px;
	border: 1px solid #edf2f7;
}

.soha-passenger-top {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
}

.soha-passenger-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-main);
}

.soha-passenger-icon.child {
	background: #fff7ed;
	color: var(--color-phu);
}

.soha-passenger-item h4 {
	color: var(--color-black);
	font-weight: 500;
	margin: 0;
	font-size: 16px;
}

.soha-passenger-item span {
	color: var(--color-phu);
	font-size: 14px;
}

.soha-counter {
	display: flex;
	align-items: center;
	gap: 15px;
}

.soha-counter button {
	width: 40px;
	height: 30px;
	border: 1px solid var(--color-main);;
	background: var(--color-white);
	border-radius: 12px;
	cursor: pointer;
	padding: unset;
	margin-bottom: unset;
	margin-right: unset;
}

.soha-counter strong {
	color: var(--color-black);
	font-weight: 500;
	font-size: 22px;
}

.soha-total-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background: #f8fafc;
	border-radius: 20px;
	padding: 20px;
	margin-top: 20px;
}

.soha-total-title {
	font-weight: 600;
	color: var(--color-black);
	margin-bottom: 8px;
}

.soha-total-price {
	font-size: 30px;
	font-weight: 600;
	color: var(--color-phu);
	line-height: 1;
}

.soha-total-note {
	margin-top: 8px;
	font-size: 14px;
	color: var(--color-black);
}

.soha-book-btn {
	background: var(--color-main);
	color: var(--color-white);
	border: none;
	border-radius: 16px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(13, 92, 171, .2);
}

@media(max-width:768px) {
	.soha-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.soha-passenger-wrap {
		grid-template-columns: 1fr;
	}

	.soha-booking-alert h2 {
		margin-bottom: 10px;
		font-size: 18px;
	}

	.soha-field label {
		font-size: 12px;
	}

	.soha-total-box {
		flex-direction: column;
		text-align: center;
	}

	.soha-passenger-top {
		display: block;
	}

	.soha-book-btn {
		width: 100%;
		justify-content: center;
		padding: 10px 5px;
	}

	.soha-total-price {
		font-size: 30px;
	}
}

/* Popup */
.soha-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.soha-popup-overlay.active {
	display: flex;
}

.soha-popup {
	background: var(--color-white);
	width: 100%;
	max-width: 700px;
	border-radius: 24px;
	padding: 30px;
	position: relative;
}

.soha-popup-close {
	position: absolute;
	right: 20px;
	top: 20px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}

.soha-popup h2 {
	color: var(--color-main);
	text-align: center;
	margin-bottom: 10px;
}

.soha-popup p {
	color: var(--color-black);
	font-weight: 500;
	text-align: center;
}

.soha-popup-info {
	border-radius: 20px;
}

.soha-popup-info .row {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.soha-popup-info .row:last-child {
	border-bottom: none;
}

.soha-popup-info .total {
	font-size: 21px;
	font-weight: 700;
	color: var(--color-phu);
}

.soha-popup-actions {
	display: flex;
	gap: 20px;
}

.soha-popup-actions button {
	flex: 1;
	height: 50px;
	border-radius: 14px;
	cursor: pointer;
}

.soha-popup-back {
	background: var(--color-white);
	border: 1px solid #ddd;
}

.soha-popup-confirm {
	background: var(--color-main);
	color: var(--color-white);
	border: none;
}

.popup-note-title {
	font-weight: 600;
	color: #666;
	margin-bottom: 10px;
}

.popup-note {
	line-height: 1.6;
	color: #222;
	word-break: break-word;
}

.soha-popup-info .row .popup-tour {
	color: var(--color-black);
	font-weight: 500;
}

.btn-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-loading i {
	font-size: 16px;
}

@media(max-width:768px) {
	.soha-popup {
		padding: 20px 15px;
		max-height: 90vh;
	}

	.soha-popup h2 {
		font-size: 19px;
		line-height: 1.4;
	}

	.soha-popup p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.soha-popup-info .row {
		gap: 5px;
		padding: 10px;
	}

	.soha-popup-info .row span {
		font-size: 12px;
		font-weight: 600;
		color: var(--color-black);
	}

	.soha-popup-info .row strong {
		font-size: 14px;
		word-break: break-word;
	}

	.soha-popup-info .total {
		font-size: 18px;
	}

	.popup-note-title {
		font-size: 13px;
	}

	.popup-note {
		font-size: 14px;
		line-height: 1.6;
	}

	.soha-popup-actions {
		flex-direction: column;
		gap: 10px;
	}

	.soha-popup-actions button {
		width: 100%;
	}

	.soha-popup-close {
		right: -8%;
		top: 5px;
		font-size: 18px;
	}
}