/* ShoutingNow cookie consent — bottom-left banner */

.sn-cookie-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 99999;
	width: min(360px, calc(100vw - 40px));
	background: var(--color-brand-blue, #1800ac);
	color: var(--color-brand-white, #ffffff);
	border-radius: 12px;
	padding: 20px 20px 16px;
	box-shadow: 0 12px 40px rgba(24, 0, 172, 0.35);
	font-family: Inter, system-ui, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.sn-cookie-consent.hidden {
	display: none;
}

.sn-cookie-consent__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	padding: 4px;
	line-height: 0;
	border-radius: 4px;
}

.sn-cookie-consent__close:hover {
	color: #ffffff;
}

.sn-cookie-consent__close:focus-visible {
	outline: 2px solid var(--color-brand-yellow, #fed700);
	outline-offset: 2px;
}

.sn-cookie-consent__message {
	margin: 0 24px 16px 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	text-align: center;
}

.sn-cookie-consent__message a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sn-cookie-consent__message a:hover {
	color: var(--color-brand-yellow-light, #fdff60);
}

.sn-cookie-consent__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 12px;
}

.sn-cookie-consent__btn {
	min-height: 44px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	border: none;
	transition: opacity 150ms ease, transform 150ms ease;
}

.sn-cookie-consent__btn:hover {
	opacity: 0.92;
}

.sn-cookie-consent__btn:focus-visible {
	outline: 2px solid var(--color-brand-yellow, #fed700);
	outline-offset: 2px;
}

.sn-cookie-consent__btn--accept {
	background: #22c55e;
	color: #ffffff;
}

.sn-cookie-consent__btn--reject {
	background: #ffffff;
	color: var(--color-brand-charcoal, #1c201f);
}

.sn-cookie-consent__brand {
	margin: 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	text-align: center;
}

.sn-cookie-consent__brand strong {
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
	.sn-cookie-consent {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: auto;
	}
}
