/* ============================================================
   COOKIE CONSENT BANNER — site-wide
   ============================================================ */
.bm-cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	max-width: 620px;
	margin: 0 auto;
	background: #1b1e23;
	color: #d7d9de;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
	padding: 20px 22px;
	font-family: 'Inter', system-ui, sans-serif;
	transform: translateY(140%);
	opacity: 0;
	transition: transform .35s ease, opacity .35s ease;
}
.bm-cookie-banner.is-visible {
	transform: translateY(0);
	opacity: 1;
}
.bm-cookie-inner p {
	margin: 0 0 16px;
	font-size: 13.5px;
	line-height: 1.6;
}
.bm-cookie-inner a {
	color: #fff;
	text-decoration: underline;
}
.bm-cookie-inner a:hover {
	color: #E1251B;
}
.bm-cookie-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.bm-cookie-actions button {
	height: 40px;
	padding: 0 18px;
	border-radius: 8px;
	font-family: 'Archivo', sans-serif;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	border: 0;
	transition: background .15s ease, color .15s ease;
}
.bm-cookie-decline {
	background: transparent;
	color: #d7d9de;
	border: 1.5px solid #454851 !important;
}
.bm-cookie-decline:hover {
	border-color: #6b6e78 !important;
	color: #fff;
}
.bm-cookie-accept {
	background: #E1251B;
	color: #fff;
}
.bm-cookie-accept:hover {
	background: #B81E15;
}

@media (max-width: 560px) {
	.bm-cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 18px;
	}
	.bm-cookie-actions {
		justify-content: stretch;
	}
	.bm-cookie-actions button {
		flex: 1;
	}
}
