/* Cookie Banner Styles */
.cookie-banner {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	width: 90%;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	padding: 1.5rem;
	z-index: 9999;
	animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.cookie-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.cookie-message {
	flex: 1;
	min-width: 250px;
}

.cookie-message p {
	margin: 0 0 0.5rem 0;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.cookie-message a {
	color: #7ebf2e;
	text-decoration: none;
	font-weight: 500;
}

.cookie-message a:hover {
	text-decoration: underline;
}

.cookie-link {
	display: inline-block;
	font-size: 13px;
	margin-top: 0.25rem;
}

.cookie-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.cookie-btn {
	padding: 0.65rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-accept {
	background: #7ebf2e;
	color: #fff;
}

.cookie-accept:hover {
	background: #6da826;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(126, 191, 46, 0.3);
}

.cookie-close {
	background: transparent;
	color: #999;
	padding: 0.5rem;
	font-size: 24px;
	line-height: 1;
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.cookie-close:hover {
	background: #f5f5f5;
	color: #666;
}

/* Мобильная адаптация */
@media (max-width: 576px) {
	.cookie-banner {
		bottom: 1rem;
		width: 95%;
		padding: 1.25rem;
	}

	.cookie-content {
		flex-direction: column;
		gap: 1rem;
	}

	.cookie-actions {
		width: 100%;
		justify-content: space-between;
	}

	.cookie-accept {
		flex: 1;
	}
}