.cea-radio-float {
	position: fixed;
	bottom: 20px;
	z-index: 9990;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--cea-accent, #82350f);
	color: #fff;
	font: 600 1rem/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.cea-radio-float--right { right: 20px; }
.cea-radio-float--left { left: 20px; }
.cea-radio-float:hover,
.cea-radio-float:focus-visible {
	background: var(--cea-accent-dark, #66290b);
	color: #fff;
}
.cea-radio-float__icon { font-size: 0.85em; }

.cea-radio-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 6px;
	background: var(--cea-accent, #82350f);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}
.cea-radio-button:hover,
.cea-radio-button:focus-visible {
	background: var(--cea-accent-dark, #66290b);
	color: #fff;
}

.cea-radio-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(20, 10, 4, 0.7);
}
.cea-radio-box {
	position: relative;
	width: 100%;
	max-width: 440px;
	height: min(560px, 90vh);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.cea-radio-box iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.cea-radio-close {
	position: absolute;
	top: 6px;
	right: 6px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(43, 26, 14, 0.85);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}
.cea-radio-close:hover { background: #2b1a0e; }

@media (max-width: 480px) {
	.cea-radio-float { bottom: 14px; padding: 10px 16px; }
	.cea-radio-float--right { right: 14px; }
	.cea-radio-float--left { left: 14px; }
}

.cea-radio-hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	margin: 28px 0 0;
	padding: 20px 24px;
	border-radius: 8px;
	border-left: 6px solid #c9a35a;
	background: #2b1a0e;
	color: #f0e2c0;
}
.cea-radio-hero[hidden] { display: none; }
.cea-radio-hero__text { display: flex; flex-direction: column; gap: 2px; }
.cea-radio-hero__text strong { color: #fff; font-size: 1.25rem; }
.cea-radio-hero__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 999px;
	background: #c9a35a;
	color: #2b1a0e;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.cea-radio-hero__button:hover,
.cea-radio-hero__button:focus-visible { background: #e0bb72; color: #2b1a0e; }
