/**
 * Responsive & Mobile Overrides for Popup Creator for Elementor
 */

/* Mobile & Touch Viewport Handling */
@media (max-width: 767px) {
	.oep-popup {
		padding: 10px;
	}

	.oep-popup-container {
		padding: 10px;
	}

	.oep-popup-dialog {
		width: 95% !important;
		max-height: 92dvh;
		padding: 20px 16px;
	}

	/* Ensure minimum 44px accessible touch target for close button */
	.oep-popup-close {
		width: 44px;
		height: 44px;
		top: 8px;
		right: 8px;
		font-size: 24px;
	}

	/* Reset custom horizontal / vertical offsets on small screens */
	.oep-position-top-left .oep-popup-container,
	.oep-position-top-right .oep-popup-container,
	.oep-position-bottom-left .oep-popup-container,
	.oep-position-bottom-right .oep-popup-container {
		align-items: center;
		justify-content: center;
	}
}

/* Tablet Viewport Handling */
@media (min-width: 768px) and (max-width: 1024px) {
	.oep-popup-container {
		padding: 15px;
	}
}

/* iOS Safari Viewport and Scrolling Fix */
@supports (-webkit-touch-callout: none) {
	.oep-popup {
		height: -webkit-fill-available;
	}
}

/* Print Styles */
@media print {
	.oep-popup {
		display: none !important;
	}
}
