/* Cookie consent banner */

.cookie-consent {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 2000;
	background: #ffffff;
	color: #1a1a1a;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	padding: 16px 20px;
	max-width: 980px;
	margin: 0 auto;
}

.cookie-consent[hidden] {
	display: none !important;
}

.cookie-consent__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
}

.cookie-consent__text {
	flex: 1 1 420px;
	font-size: 14px;
	line-height: 1.45;
}

.cookie-consent__text strong {
	display: inline-block;
	margin-right: 4px;
}

.cookie-consent__link {
	color: #30964e;
	text-decoration: underline;
}

.cookie-consent__link:hover {
	text-decoration: none;
}

.cookie-consent__buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.cookie-consent__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	padding: 10px 18px;
	border-radius: 8px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cookie-consent__btn--primary {
	background: #30964e;
	color: #ffffff;
	border-color: #30964e;
}

.cookie-consent__btn--primary:hover {
	background: #267d40;
	border-color: #267d40;
}

.cookie-consent__btn--secondary {
	background: #ffffff;
	color: #1a1a1a;
	border-color: #d0d0d0;
}

.cookie-consent__btn--secondary:hover {
	background: #f3f5f7;
	border-color: #b8b8b8;
}

@media (max-width: 575px) {
	.cookie-consent {
		left: 8px;
		right: 8px;
		bottom: 8px;
		padding: 14px 14px 16px;
	}

	.cookie-consent__inner {
		gap: 12px;
	}

	.cookie-consent__buttons {
		width: 100%;
	}

	.cookie-consent__btn {
		flex: 1 1 auto;
		min-width: 0;
	}
}
