.cookie-banner {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%) translateY(140%);
	z-index: 9999;
	width: calc(100% - 32px);
	max-width: 760px;
	background-color: #161616;
	border: 1px solid #3c3c3c;
	border-radius: 14px;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 22px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.5s ease;
}

.cookie-banner.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.cookie-banner__text {
	color: #adadad;
	font-family: "SF Pro Display";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
}

.cookie-banner__text a {
	color: #e0e0e0;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.4s ease;
}

.cookie-banner__text a:hover {
	color: white;
}

.cookie-banner__btn {
	flex-shrink: 0;
	cursor: pointer;
	height: 44px;
	padding: 0 26px;
	color: black;
	border: none;
	border-radius: 8px;
	background-color: white;
	font-family: "SF Pro Display";
	font-size: 16px;
	font-weight: 600;
	transition:
		color 0.6s ease,
		border 0.6s ease,
		background-color 0.6s ease;
}

.cookie-banner__btn:hover {
	color: white;
	background-color: #202020;
	border: 0.5px solid white;
}

@media (max-width: 600px) {
	.cookie-banner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		bottom: 12px;
		padding: 18px;
	}
	.cookie-banner__btn {
		width: 100%;
	}
}
