#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 2px solid #00796b;
	box-shadow: 0 -2px 20px rgba(0, 0, 0, .12);
	z-index: 9999;
	padding: 14px 16px;
}

.cookie-banner-inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.cookie-banner-text {
	flex: 1;
	min-width: 180px;
	font-size: .875rem;
	color: #333;
	line-height: 1.5;
	margin: 0;
}

.cookie-banner-link {
	color: #00796b;
	text-decoration: underline;
	white-space: nowrap;
}

.cookie-banner-actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.cookie-btn {
	padding: 8px 18px;
	border: none;
	border-radius: 4px;
	font-size: .875rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	line-height: 1.4;
}

.cookie-btn-primary {
	background: #00796b;
	color: #fff;
}

.cookie-btn-primary:hover {
	background: #00695c;
}

.cookie-btn-secondary {
	background: transparent;
	color: #00796b;
	border: 1.5px solid #00796b;
}

.cookie-btn-secondary:hover {
	background: #f0faf8;
}

@media (max-width: 520px) {
	.cookie-banner-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.cookie-banner-actions {
		flex-direction: column;
	}
	.cookie-btn {
		text-align: center;
	}
}
