/* COOKIE BANNER */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2a2a2a;
	color: #fff;
	padding: 16px 28px;
	display: flex;
	align-items: center;
	gap: 24px;
	z-index: 9998;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
	flex-wrap: wrap;
}

.cookie-banner.hidden {
	display: none;
}

.cookie-banner p {
	flex: 1;
	font-size: 0.88rem;
	line-height: 1.5;
	min-width: 200px;
	color: #ddd;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 9px 22px;
	border: none;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s ease;
	background: #14b8a6;
	color: #fff;
}

.cookie-btn:hover {
	background: #0d9488;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.cookie-banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: flex-end;
	}
}
