/* Cookie Consent Banner Styles */

.epea-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1a1a1a;
	color: #ffffff;
	padding: 1.5rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 9998;
	animation: slideUp 0.3s ease-in-out;
	font-family: inherit;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.epea-cookie-consent.hidden {
	display: none;
}

.epea-cookie-consent__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.epea-cookie-consent__message {
	flex: 1;
	min-width: 250px;
}

.epea-cookie-consent__title {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	padding: 0;
	line-height: 1.2;
}

.epea-cookie-consent__text {
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.5;
	color: #e0e0e0;
}

.epea-cookie-consent__link {
	color: #ffffff;
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.2s ease;
}

.epea-cookie-consent__link:hover {
	color: #b3b3b3;
}

.epea-cookie-consent__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	min-width: 250px;
}

.epea-cookie-consent__button {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	font-family: inherit;
}

.epea-cookie-consent__button--accept {
	background-color: #ffffff;
	color: #1a1a1a;
}

.epea-cookie-consent__button--accept:hover {
	background-color: #e0e0e0;
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.epea-cookie-consent__button--accept:active {
	transform: translateY(0);
}

.epea-cookie-consent__button--reject {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.epea-cookie-consent__button--reject:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.epea-cookie-consent__button--reject:active {
	transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.epea-cookie-consent {
		padding: 1rem;
	}

	.epea-cookie-consent__content {
		flex-direction: column;
		gap: 1rem;
	}

	.epea-cookie-consent__message {
		width: 100%;
	}

	.epea-cookie-consent__title {
		font-size: 1rem;
	}

	.epea-cookie-consent__text {
		font-size: 0.85rem;
	}

	.epea-cookie-consent__actions {
		width: 100%;
		justify-content: stretch;
	}

	.epea-cookie-consent__button {
		flex: 1;
		padding: 0.75rem 1rem;
	}
}

/* Accessibility: Focus states */
.epea-cookie-consent__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.epea-cookie-consent__link:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}
