#cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #F3EDD6;
	color: #000;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(101,79,86,0.2);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
	font-size: 14px;
	pointer-events: none;
	display: inline-block;
	white-space: nowrap;
	max-width: 100%;
}

#cookie-banner.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.cookie-content {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cookie-text > a {
  color: #5A4352;
  text-decoration: underline;	
	font-weight: bold;
}

.cookie-text > a:hover {
  color: #33282B;
}

.cookie-text {
  white-space: nowrap;
}	
	
#cookie-banner button {
	background: #654F56;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	white-space: nowrap;
}

#cookie-banner button:hover {
	background: #5A4352;
}

@media (max-width: 768px) {
	#cookie-banner {
		white-space: normal;
		width: calc(100% - 40px);
	}

	.cookie-content {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-text {
		white-space: normal;
	}
	
	#cookie-banner button {
		width: 100%;
		margin-top: 10px;
	}
}