/* ============================================================
   FRONTEND styles  –  build/style-index.css
   Loaded on every page that contains the Oudio Modal Block
   ============================================================ */

/* ── Overlay backdrop ─────────────────────────────────────── */
.oudio-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 99998;
	background: var(--oudio-overlay-color, rgba(0, 0, 0, 0.5));
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--oudio-anim-duration, 380ms) cubic-bezier(0.4, 0, 0.2, 1);
}

.oudio-modal-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* ── Modal panel ──────────────────────────────────────────── */
.oudio-modal-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	width: var(--oudio-modal-width-desktop, 480px);
	background: #fff;
	box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
	transform: translateX(100%);
	transition: transform var(--oudio-anim-duration, 380ms) cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.oudio-modal-panel.is-open {
	transform: translateX(0);
}

/* ── Close button — immer rechts oben INNEN im Panel ── */
.oudio-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	left: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #fff;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(4px);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
	padding: 0;
	line-height: 1;
	z-index: 10;
}

.oudio-modal-close:hover {
	background: #111;
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.oudio-modal-close svg {
	display: block;
	flex-shrink: 0;
}

/* ── iFrame ───────────────────────────────────────────────── */
.oudio-modal-iframe-wrap {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.oudio-modal-iframe-wrap iframe {
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ── Tablet (≤ 1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
	.oudio-modal-panel {
		width: var(--oudio-modal-width-tablet, 420px);
	}


}

/* ── Mobile (≤ 767px) ────────────────────────────────────── */
@media (max-width: 767px) {
	.oudio-modal-panel {
		width: var(--oudio-modal-width-mobile, 100vw);
	}


}

/* ── Body scroll lock ─────────────────────────────────────── */
body.oudio-modal-open {
	overflow: hidden;
}
