/* ── CCH Consent: cookie banner + iframe gating ─────────────────── */

/* Banner: fixed to bottom, dark ink background, accent CTA */
.cch-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #1e2330;
	color: #ffffff;
	padding: 1.25rem 1.5rem;
	font-family: Comfortaa, 'Trebuchet MS', sans-serif;
	font-size: 0.9rem;
	line-height: 1.5;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cch-consent-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.cch-consent-text {
	flex: 1;
	min-width: 280px;
}
.cch-consent-text strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}
.cch-consent-text p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}
.cch-consent-text a {
	color: #f5a623;
	text-decoration: underline;
}
.cch-consent-text a:hover {
	text-decoration: none;
}

.cch-consent-actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

.cch-consent-btn {
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.65rem 1.4rem;
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease;
}
.cch-consent-btn:hover {
	background: #fff;
	color: #1e2330;
}
.cch-consent-btn.cch-consent-accept {
	background: #f5a623;
	border-color: #f5a623;
	color: #1e2330;
}
.cch-consent-btn.cch-consent-accept:hover {
	background: #fff;
	border-color: #fff;
	color: #1e2330;
}

/* Iframe wrapper + placeholder when consent not granted */
.cch-consent-wrapper {
	position: relative;
}

.cch-consent-placeholder {
	background: #f5f0e8;
	border: 1px dashed #ccc;
	padding: 2.5rem 1.5rem;
	text-align: center;
	font-family: Comfortaa, 'Trebuchet MS', sans-serif;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.cch-placeholder-title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e2330;
}
.cch-placeholder-text {
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
	color: #666;
	max-width: 400px;
}

.cch-load-iframe {
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.65rem 1.4rem;
	border: 1px solid #1e2330;
	background: #1e2330;
	color: #fff;
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease;
}
.cch-load-iframe:hover {
	background: #fff;
	color: #1e2330;
}

/* Mobile: stack banner content vertically */
@media (max-width: 640px) {
	.cch-consent-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
	}
	.cch-consent-actions {
		width: 100%;
	}
	.cch-consent-btn {
		flex: 1;
	}
}
