/* Variables inyectadas inline desde PHP con los valores de wp_options */
:root {
	--adbd-overlay-bg:     rgba(0, 0, 0, 0.85);
	--adbd-modal-bg:       #ffffff;
	--adbd-modal-color:    #1a1a1a;
	--adbd-modal-radius:   12px;
	--adbd-btn-bg:         #2563eb;
	--adbd-btn-color:      #ffffff;
}

/* ── Overlay ──────────────────────────────────────────────────────── */
#adbd-overlay {
	position:         fixed;
	inset:            0;
	z-index:          2147483647;
	background:       var(--adbd-overlay-bg);
	display:          flex;
	align-items:      center;
	justify-content:  center;
	padding:          1rem;
	box-sizing:       border-box;
	/* sin transición: aparece inmediatamente para evitar que el usuario vea contenido */
}

#adbd-overlay[data-position="top"] {
	align-items: flex-start;
	padding-top: 4rem;
}

#adbd-overlay[data-position="bottom"] {
	align-items: flex-end;
	padding-bottom: 4rem;
}

/* ── Modal box ────────────────────────────────────────────────────── */
#adbd-modal {
	background:    var(--adbd-modal-bg);
	color:         var(--adbd-modal-color);
	border-radius: var(--adbd-modal-radius);
	padding:       2.5rem 2rem;
	max-width:     540px;
	width:         100%;
	box-shadow:    0 24px 64px rgba(0, 0, 0, 0.4);
	text-align:    center;
	box-sizing:    border-box;
}

/* ── Título ───────────────────────────────────────────────────────── */
#adbd-modal-title {
	font-size:   1.5rem;
	font-weight: 700;
	margin:      0 0 1rem;
	line-height: 1.3;
	color:       var(--adbd-modal-color);
}

/* ── Texto ────────────────────────────────────────────────────────── */
#adbd-modal-text {
	font-size:   1rem;
	line-height: 1.6;
	margin:      0 0 1.5rem;
	color:       var(--adbd-modal-color);
	opacity:     0.85;
}

/* ── Imagen ───────────────────────────────────────────────────────── */
#adbd-modal-image {
	max-width:     100%;
	height:        auto;
	border-radius: calc(var(--adbd-modal-radius) * 0.5);
	margin:        0 auto 1.5rem;
	display:       block;
}

/* ── Video ────────────────────────────────────────────────────────── */
#adbd-modal-video-wrap {
	position:       relative;
	width:          100%;
	padding-bottom: 56.25%; /* 16:9 */
	margin-bottom:  1.5rem;
	border-radius:  calc(var(--adbd-modal-radius) * 0.5);
	overflow:       hidden;
}

#adbd-modal-video-wrap iframe {
	position: absolute;
	inset:    0;
	width:    100%;
	height:   100%;
	border:   0;
}

/* ── Botón CTA ────────────────────────────────────────────────────── */
#adbd-modal-cta {
	display:         inline-block;
	background:      var(--adbd-btn-bg);
	color:           var(--adbd-btn-color);
	border:          none;
	border-radius:   calc(var(--adbd-modal-radius) * 0.6);
	padding:         0.8rem 2rem;
	font-size:       1rem;
	font-weight:     600;
	cursor:          pointer;
	transition:      filter 0.15s ease;
	text-decoration: none;
}

#adbd-modal-cta:hover {
	filter: brightness(0.9);
}

#adbd-modal-cta:disabled {
	opacity: 0.6;
	cursor:  not-allowed;
}

/* ── Mensaje de error inline ──────────────────────────────────────── */
#adbd-modal-error {
	margin-top:  1rem;
	font-size:   0.875rem;
	color:       #dc2626;
	font-weight: 500;
	display:     none;
}

#adbd-modal-error.visible {
	display: block;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media ( max-width: 480px ) {
	#adbd-modal {
		padding: 2rem 1.25rem;
	}

	#adbd-modal-title {
		font-size: 1.25rem;
	}

	#adbd-modal-cta {
		width:      100%;
		text-align: center;
	}
}
