/**
 * Envoltorio base del popup (T3): overlay + panel + botón cerrar, responsive.
 * Neutro a propósito; el envoltorio de marca "Burdeos & Pergamino" llega en T6.
 * El contenido del popup trae sus propios estilos inline.
 */
#tdt-popup-root {
	position: relative;
	z-index: 100000;
}

.tdt-popup-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba( 0, 0, 0, 0.5 );
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
	z-index: 100000;
}

.tdt-popup-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.tdt-popup-panel {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.3 );
	transform: translateY( 8px );
	transition: transform 0.25s ease;
}

.tdt-popup-overlay.is-open .tdt-popup-panel {
	transform: none;
}

.tdt-popup-close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	padding: 4px 8px;
	z-index: 2;
}

.tdt-popup-content {
	padding: 8px;
}

@media ( max-width: 480px ) {
	.tdt-popup-panel {
		max-width: 100%;
	}
}
