/* Cookie Consent Banner Styles */

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #FFFFFF;
	box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
	max-width: 100%;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-consent-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-consent-text {
	margin: 0;
	font-size: 0.9em;
	color: #212529;
	line-height: 1.5;
	flex: 1;
	min-width: 250px;
}

.cookie-consent-text a {
	color: #1c2443;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
	color: #e82431;
	text-decoration: none;
}

.cookie-consent-btn {
	background-color: #1c2443;
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	padding: 12px 30px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	white-space: nowrap;
	font-family: 'Roboto', sans-serif;
}

.cookie-consent-btn:hover {
	background-color: #e82431;
	transform: translateY(-1px);
}

.cookie-consent-btn:active {
	transform: translateY(0);
}

.cookie-consent-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(28, 36, 67, 0.3);
}

/* Mobile and Tablet Styles */
@media (max-width: 768px) {
	.cookie-consent {
		padding: 15px;
	}

	.cookie-consent-content {
		flex-direction: column;
		align-items: stretch;
		gap: 15px;
	}

	.cookie-consent-text {
		text-align: center;
		font-size: 0.85em;
		min-width: auto;
	}

	.cookie-consent-btn {
		width: 100%;
		padding: 14px 30px;
	}
}

/* Small Mobile Devices */
@media (max-width: 480px) {
	.cookie-consent {
		padding: 12px;
	}

	.cookie-consent-text {
		font-size: 0.8em;
		line-height: 1.4;
	}

	.cookie-consent-btn {
		padding: 12px 25px;
		font-size: 0.9em;
	}
}
