/* Tour Booking Popup Styles */
html:not(.glightbox-open) {
	scrollbar-gutter: stable;
}

a,
button {
	outline: none;
}

/* Overlay base */
#tour-booking-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(25, 35, 26, .5);
	z-index: 99999;
	opacity: 0;
	transition: opacity .3s ease;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

/* Popup modal */
#tour-booking-popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.97);
	background: #fff;
	color: #19231a;
	border-radius: 6px;
	padding: 0;
	max-width: 640px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(25, 35, 26, .18), 0 0 0 1px rgba(25, 35, 26, .05);
	transition: transform .3s ease, opacity .3s ease;
	opacity: 0;
}

/* Header section */
.tour-popup-header {
	background: #33673b;
	padding: 24px 32px 20px;
	position: relative;
}

.tour-popup-header h2 {
	margin: 0 0 4px;
	font-size: 22px;
	color: #fff;
	font-family: Roboto Slab, serif;
	font-weight: 700;
}

.tour-popup-header p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, .7);
	font-family: Manrope, sans-serif;
}

/* Close button */
#tour-popup-close {
	position: absolute;
	top: 14px;
	right: 18px;
	background: rgba(255, 255, 255, .15);
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
	line-height: 1;
}

#tour-popup-close:hover {
	background: rgba(255, 255, 255, .3);
}

/* Body section */
#tour-popup-body {
	padding: 24px 32px 28px;
	overflow-y: auto;
	max-height: calc(90vh - 150px);
}

/* Overlay states */
#tour-booking-overlay.active {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

#tour-booking-overlay.show {
	opacity: 1 !important;
}

#tour-booking-overlay.show #tour-booking-popup {
	transform: translate(-50%, -50%) scale(1) !important;
	opacity: 1 !important;
}

body.popup-open {
	overflow: hidden !important;
}

/* Scrollbar styling */
#tour-popup-body::-webkit-scrollbar {
	width: 5px;
}

#tour-popup-body::-webkit-scrollbar-track {
	background: transparent;
}

#tour-popup-body::-webkit-scrollbar-thumb {
	background: #d4d0c4;
	border-radius: 3px;
}

/* Form styling */
#tour-booking-popup .wpcf7-form {
	font-family: Manrope, sans-serif;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 16px;
}

#tour-booking-popup .wpcf7-form p {
	margin: 0 0 0;
}

/* Full width for specific fields */
#tour-popup-body .wpcf7-form>p:nth-of-type(3),
/* Интересующие туры */
#tour-popup-body .wpcf7-form>p:nth-of-type(6),
/* Комментарии */
#tour-popup-body .wpcf7-form>p:nth-of-type(7),
/* Контакты */
#tour-popup-body .wpcf7-form>p:nth-of-type(8),
/* Согласие */
#tour-popup-body .wpcf7-form .wpcf7-response-output {
	grid-column: 1 / -1 !important;
}

#tour-booking-popup .wpcf7-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #19231a;
	margin-bottom: 4px;
}

/* Input fields */
#tour-booking-popup .wpcf7-form input[type="text"],
#tour-booking-popup .wpcf7-form input[type="email"],
#tour-booking-popup .wpcf7-form input[type="tel"],
#tour-booking-popup .wpcf7-form input[type="number"],
#tour-booking-popup .wpcf7-form select,
#tour-booking-popup .wpcf7-form textarea {
	width: 100%;
	padding: 10px 14px;
	background: #fafaf6;
	border: 1.5px solid #d4d0c4;
	border-radius: 6px;
	color: #19231a;
	font-size: 14px;
	font-family: Manrope, sans-serif;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
	outline: none;
}

#tour-booking-popup .wpcf7-form input:focus,
#tour-booking-popup .wpcf7-form select:focus,
#tour-booking-popup .wpcf7-form textarea:focus {
	border-color: #33673b;
	box-shadow: 0 0 0 3px rgba(51, 103, 59, .08);
}

#tour-booking-popup .wpcf7-form input::placeholder,
#tour-booking-popup .wpcf7-form textarea::placeholder {
	color: #a09d93;
}

#tour-booking-popup .wpcf7-form select {
	cursor: pointer;
}

#tour-booking-popup .wpcf7-form textarea {
	min-height: 72px;
	resize: vertical;
}

#tour-booking-popup .wpcf7-form input[type="number"] {
	max-width: 110px;
}

/* Checkboxes */
#tour-booking-popup .wpcf7-form .wpcf7-checkbox {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 8px 16px;
	margin-top: 0;
}

#tour-booking-popup .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
	margin: 0 !important;
	display: block;
}

#tour-booking-popup .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
	font-size: 13.5px;
	color: #2c3e2d;
	line-height: 1.4;
	margin-bottom: 0;
}

#tour-booking-popup .wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
	width: 17px;
	min-width: 17px;
	height: 17px;
	accent-color: #33673b;
	cursor: pointer;
	margin-top: 1px;
}

/* Acceptance checkbox */
#tour-booking-popup .wpcf7-form .wpcf7-acceptance {
	margin: 0;
	grid-column: 1 / -1;
}

#tour-booking-popup p:has([type="submit"]) {
	position: relative;
	margin: 0;
	grid-column: 1 / -1;

	.wpcf7-spinner {
		position: absolute;
		top: 35%;
		right: 0;
	}
}

#tour-booking-popup .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0 !important;
}

#tour-booking-popup .wpcf7-form .wpcf7-acceptance label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: #6b6b5e;
	font-weight: 400;
	margin-bottom: 0;
}

#tour-booking-popup .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
	width: 16px;
	min-width: 16px;
	height: 16px;
	accent-color: #33673b;
	cursor: pointer;
}

#tour-booking-popup .wpcf7-form .wpcf7-acceptance a {
	color: #33673b;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Submit button */
#tour-booking-popup .wpcf7-form input[type="submit"] {
	background: #33673b;
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	font-family: Manrope, sans-serif;
	cursor: pointer;
	transition: background .2s, transform .15s, box-shadow .2s;
	letter-spacing: .3px;
	margin-top: 8px;
	width: 100%;
	grid-column: 1 / -1;
}

#tour-booking-popup .wpcf7-form input[type="submit"]:hover {
	background: #274e2c;
	box-shadow: 0 4px 12px rgba(51, 103, 59, .25);
	transform: translateY(-1px);
}

/* Form messages */
#tour-booking-popup .wpcf7-form .wpcf7-response-output {
	border-radius: 6px !important;
	font-size: 13px;
	padding: 12px 16px !important;
	margin: 10px 0 0 !important;
	border: 1.5px solid #33673b !important;
	background: #f0f7f0;
	color: #19231a;
}

#tour-booking-popup .wpcf7-form .wpcf7-not-valid-tip {
	color: #c0392b;
	font-size: 12px;
	margin-top: 4px;
}

#tour-booking-popup .wpcf7-form .wpcf7-not-valid {
	border-color: #c0392b !important;
}

/* Mobile responsive */
@media (max-width: 600px) {
	#tour-booking-popup {
		width: 100% !important;
		max-width: 100% !important;
		border-radius: 12px 12px 0 0 !important;
		top: auto !important;
		bottom: 0 !important;
		transform: translateX(-50%) translateY(10px) !important;
		max-height: 95vh !important;
	}

	#tour-booking-overlay.show #tour-booking-popup {
		transform: translateX(-50%) translateY(0) !important;
	}

	#tour-popup-body {
		max-height: calc(95vh - 150px) !important;
	}

	#tour-booking-popup .wpcf7-form {
		grid-template-columns: 1fr !important;
	}

	#tour-booking-popup .wpcf7-form .wpcf7-checkbox {
		grid-template-columns: 1fr !important;
	}
}
