/* Cookie Consent Banner - GDPR */
.cyl-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: #282a2d;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 2rem;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cyl-cookie-banner--visible {
	display: flex;
}

.cyl-cookie-banner__text {
	color: #9e9e9e;
	font-size: 0.875rem;
	line-height: 1.5;
	max-width: 600px;
}

.cyl-cookie-banner__text a {
	color: #00d4ff;
	text-decoration: underline;
}

.cyl-cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.cyl-cookie-btn {
	padding: 0.625rem 1.5rem;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--oswald, 'Oswald', sans-serif);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: background-color 0.3s ease;
}

.cyl-cookie-btn--accept {
	background: #00d4ff;
	color: #1a1c1e;
}

.cyl-cookie-btn--accept:hover {
	background: #00b8d9;
}

.cyl-cookie-btn--necessary {
	background: transparent;
	color: #9e9e9e;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cyl-cookie-btn--necessary:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

/* Footer legal links */
.cyl-legal-links a:hover {
	color: #00d4ff !important;
}

@media (max-width: 600px) {
	.cyl-cookie-banner {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}
	.cyl-cookie-banner__actions {
		width: 100%;
	}
	.cyl-cookie-btn {
		flex: 1;
	}
}
