/* =====================================================================
   PLAN CUL — cookie banner ("Contrast Olive")
   Dark near-black card, olive link, coral accept. Flat, no gradients.
   Scoped to #cookie-popup (the DF popup element).
   ===================================================================== */

#cookie-popup {
	position: fixed;
	display: flex;
	align-items: center;
	gap: 16px;
	bottom: 22px;
	left: 22px;
	right: 22px;
	max-width: 560px;
	z-index: 7;
	padding: 16px 18px;
	border-radius: 14px;
	background: #15140f;
	border: 1px solid rgba(236,232,220,.14);
	box-shadow: 0 24px 60px -28px rgba(0,0,0,.85);
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1);
}
#cookie-popup.active { opacity: 1; transform: translateY(0); }

#cookie-popup img { display: none; }

#cookie-popup p {
	flex: 1; margin: 0; padding: 0;
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 12.5px; line-height: 1.5; color: #a7a397;
}
#cookie-popup a {
	color: #c4886a; font-weight: 700; text-decoration: none;
	border-bottom: 1px solid rgba(196,136,106,.45); transition: color .2s, border-color .2s;
}
#cookie-popup a:hover { color: #d89e7e; border-bottom-color: #d89e7e; }

#cookie-popup .accept {
	flex: none; align-self: stretch;
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0 24px; min-height: 44px; border-radius: 100px; cursor: pointer;
	font-family: 'Archivo', system-ui, sans-serif;
	font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
	color: #fff; background: #e2635a;
	box-shadow: 0 10px 24px -12px rgba(226,99,90,.8);
	transition: transform .18s ease, background .18s ease;
}
#cookie-popup .accept:hover,
#cookie-popup .accept:focus { transform: translateY(-1px); background: #c94a40; outline: none; }

body.popup-active #cookie-popup { z-index: 900; }

@media (max-width: 768px) {
	#cookie-popup { bottom: 10px; left: 10px; right: 10px; padding: 14px; gap: 10px; flex-wrap: wrap; }
	#cookie-popup p { min-width: 100%; font-size: 12px; }
	#cookie-popup .accept { width: 100%; min-height: 42px; }
}
@media (max-width: 480px) {
	body.chat-on #cookie-popup { right: 90px; }
}

/*484042.1.508.5.88445ab*/