@keyframes cookie-slideUpFade {
	0% { transform: translate(-50%, 40px); opacity: 0; }
	100% { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes cookie-slideDownFade {
	0% { transform: translate(-50%, 0); opacity: 1; }
	100% { transform: translate(-50%, 40px); opacity: 0; visibility: hidden; }
}

.cookie-banner {
	position: fixed;
	bottom: 24px;
	left: 50%;
	width: calc(100% - 48px);
	max-width: 1000px;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.6);
	padding: 20px 28px;
	box-sizing: border-box;
	z-index: 9999;
	transform: translateX(-50%);
	opacity: 0;
	animation: cookie-slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
	color: var(--black, #000);
}

.cookie-banner.is-hidden {
	animation: cookie-slideDownFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.cookie-text {
	font-size: 14px;
	color: var(--black, #000);
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

.cookie-text strong {
	color: var(--black, #000);
	font-weight: 500;
}

.cookie-banner .cookie-text a {
	color: #A76833;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.cookie-banner .cookie-text a:hover {
	color: var(--hover, #7f4c2e);
}

.cookie-banner .cookie-btn {
	background: var(--newbtn, rgba(122, 77, 51, 1)) !important;
	background-color: var(--newbtn, rgba(122, 77, 51, 1)) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 99px;
	padding: 12px 36px;
	font-family: Circe, 'Cera Pro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(122, 77, 51, 0.25);
	transition: .3s;
}

.cookie-banner .cookie-btn:hover {
	background: var(--newhover, rgba(158, 99, 65, 1)) !important;
	background-color: var(--newhover, rgba(158, 99, 65, 1)) !important;
}

@media (max-width: 768px) {
	.cookie-banner {
		bottom: 0;
		width: 100%;
		border-radius: 20px 20px 0 0;
		padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
	}

	.cookie-container {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.cookie-text {
		text-align: center;
		font-size: 13px;
	}

	.cookie-banner .cookie-btn {
		width: 100%;
		padding: 14px 24px;
	}
}
