.estrium-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.72);
	padding: 16px;
}

.estrium-overlay[hidden] {
	display: none;
}

.estrium-overlay__panel {
	background: #fff;
	border-radius: 12px;
	max-width: 420px;
	width: 100%;
	padding: 32px 28px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.estrium-overlay__panel h2 {
	margin: 0 0 12px;
	font-size: 22px;
	color: #0f172a;
}

.estrium-overlay__panel p {
	margin: 0 0 24px;
	color: #475569;
	line-height: 1.6;
}

.estrium-overlay__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.estrium-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 150ms ease, background-color 150ms ease;
}

.estrium-btn--primary {
	background: #0891b2;
	color: #fff;
}

.estrium-btn--primary:hover {
	background: #0e7490;
}

.estrium-btn--ghost {
	background: transparent;
	border-color: #cbd5e1;
	color: #475569;
}

.estrium-btn--ghost:hover {
	background: #f1f5f9;
}

body.estrium-lock-scroll {
	overflow: hidden;
}

.estrium-cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 99999;
	max-width: 720px;
	margin: 0 auto;
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 12px;
	padding: 20px 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.estrium-cookie-banner[hidden] {
	display: none;
}

.estrium-cookie-banner p {
	margin: 0;
	flex: 1 1 320px;
	font-size: 14px;
	line-height: 1.6;
}

.estrium-cookie-banner a {
	color: #67e8f9;
}

.estrium-cookie-banner__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.estrium-cookie-banner .estrium-btn--ghost {
	border-color: #475569;
	color: #e2e8f0;
}

.estrium-cookie-banner .estrium-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
	.estrium-cookie-banner {
		flex-direction: column;
		align-items: stretch;
	}
	.estrium-cookie-banner__actions {
		justify-content: stretch;
	}
	.estrium-cookie-banner__actions .estrium-btn {
		flex: 1;
	}
}
