/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SMOUSE STUDIO — COOKIE CONSENT BANNER (frosted glass)
   Built + controlled by consent.js. Matches the site's type/colours, but the
   bar uses a blurred "frosted glass" backdrop instead of a solid background.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.smouse-consent {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 99999;
	max-width: 60rem;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.85rem 1.25rem;
	padding: 0.9rem 1.25rem;

	/* frosted glass */
	background: rgba(28, 28, 28, 0.509);
	-webkit-backdrop-filter: blur(14px) saturate(125%);
	backdrop-filter: blur(14px) saturate(125%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.85rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);

	transition: opacity 0.3s ease, transform 0.3s ease;
}
/* fallback if backdrop-filter isn't supported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.smouse-consent { background: rgba(18, 18, 18, 0.92); }
}

.smouse-consent.is-hidden {
	opacity: 0;
	transform: translateY(1rem);
	pointer-events: none;
}

.smouse-consent__text {
	flex: 1 1 20rem;
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.82rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}
.smouse-consent__text a { color: #E35300; text-decoration: underline; }

.smouse-consent__actions {
	flex: 0 0 auto;
	display: flex;
	gap: 0.6rem;
}

.smouse-consent__btn {
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 0.62rem;
	padding: 0.5rem 1.15rem;
	border-radius: 3rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.smouse-consent__btn--accept {
	background: #E35300;
	color: #FFFFFF;
	box-shadow: 0 0 0.75rem 0 #662310;
}
.smouse-consent__btn--accept:hover { background: #C74522; }
.smouse-consent__btn--reject {
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.3);
}
.smouse-consent__btn--reject:hover { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.6); }
