.cookie-consent {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1190;
	max-width: min(24rem, calc(100vw - 2rem));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(18, 19, 20, 0.96);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
	color: #e8edf3;
	font-family: var(--font-rajdhani, Rajdhani, sans-serif);
}

.cookie-consent__content {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
}

.cookie-consent__copy {
	flex: 1 1 auto;
	min-width: 0;
}

.cookie-consent__copy strong {
	display: block;
	font-family: var(--font-display, Teko, sans-serif);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cookie-consent__copy p {
	margin: 0.2rem 0 0;
	font-size: 0.9rem;
	color: #a9b4c0;
	line-height: 1.35;
}

.cookie-consent__copy a {
	color: var(--accent, #c4461a);
	text-decoration: none;
}

.cookie-consent__copy a:hover {
	color: var(--accent-glow, #ff6030);
	text-decoration: underline;
}

.cookie-consent__actions {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 0 0 auto;
}

.cookie-consent__btn {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	background: transparent;
	color: #e8edf3;
	padding: 0.35rem 0.65rem;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.cookie-consent__btn--primary {
	border-color: #c4461a;
	background: #c4461a;
	color: #fff;
}

.cookie-consent__btn:hover {
	filter: brightness(1.08);
}

@media (max-width: 640px) {
	.cookie-consent {
		left: 1rem;
		right: 1rem;
		max-width: none;
	}

	.cookie-consent__content {
		flex-wrap: wrap;
	}

	.cookie-consent__actions {
		flex-direction: row;
		width: 100%;
	}

	.cookie-consent__btn {
		flex: 1 1 auto;
	}
}
