/**
 * "Email me the itinerary PDF" popup styles.
 */

body.tour-pdf-popup-open {
	overflow: hidden;
}

.tour-pdf-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, 0.7 );
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.tour-pdf-popup-overlay.is-open {
	display: flex;
}

.tour-pdf-popup {
	position: relative;
	background: #ffffff;
	border-radius: 8px;
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px 32px;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.2 );
	box-sizing: border-box;
}

.tour-pdf-popup-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 32px;
	height: 32px;
	line-height: 1;
	font-size: 26px;
	color: #999999;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.tour-pdf-popup-close:hover {
	color: #333333;
}

.tour-pdf-popup-title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	color: #2b2b2b;
}

.tour-pdf-popup-description {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #6b6b6b;
}

.tour-pdf-popup-field {
	margin-bottom: 14px;
}

.tour-pdf-popup-input {
	display: block;
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.4;
	color: #2b2b2b;
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.tour-pdf-popup-input:focus {
	outline: none;
	border-color: #7a3e20;
}

.tour-pdf-popup-input.has-error {
	border-color: #e0533d;
}

.tour-pdf-popup-message {
	display: none;
	margin-bottom: 14px;
	padding: 10px 12px;
	font-size: 13px;
	line-height: 1.5;
	border-radius: 4px;
}

.tour-pdf-popup-message.is-success {
	display: block;
	color: #2e7d32;
	background: #eaf6ec;
	border: 1px solid #c5e6cb;
}

.tour-pdf-popup-message.is-error {
	display: block;
	color: #c0392b;
	background: #fdecea;
	border: 1px solid #f5c6c2;
}

.tour-pdf-popup-actions {
	display: flex;
	gap: 10px;
}

.tour-pdf-popup-submit,
.tour-pdf-popup-cancel {
	flex: 1;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.tour-pdf-popup-submit {
	background-color: #7a3e20;
	color: #ffffff;
}

.tour-pdf-popup-submit:hover:not(:disabled) {
	background-color: #5e2f18;
}

.tour-pdf-popup-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.tour-pdf-popup-cancel {
	background-color: #f0f0f0;
	color: #2b2b2b;
}

.tour-pdf-popup-cancel:hover {
	background-color: #e2e2e2;
}

@media ( max-width: 480px ) {
	.tour-pdf-popup {
		padding: 32px 20px;
	}

	.tour-pdf-popup-title {
		font-size: 20px;
	}

	.tour-pdf-popup-actions {
		flex-direction: column-reverse;
	}
}
