#mb-cookie-banner {
	position: fixed;
	left: 20px;
	bottom: -400px;
	z-index: 9999;
	width: 340px;
	max-width: calc(100vw - 40px);
	background: #fbfaf7;
	border: 1px solid #ddd9d1;
	border-left: 3px solid #9e321f;
	border-radius: 6px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
	padding: 20px;
	transition: bottom 0.3s ease;
}

#mb-cookie-banner.is-visible {
	bottom: 20px;
}

.mb-cookie-inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mb-cookie-text {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 0.88rem;
	line-height: 1.5;
	color: #171717;
	margin: 0;
}

.mb-cookie-text a {
	color: #9e321f;
	text-decoration: underline;
}

.mb-cookie-actions {
	display: flex;
	gap: 8px;
}

.mb-cookie-btn {
	flex: 1;
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.95rem;
	padding: 9px 14px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #9e321f;
	transition: background 0.2s ease, color 0.2s ease;
}

#mb-cookie-accept {
	background: #9e321f;
	color: #fff;
}

#mb-cookie-accept:hover {
	background: #7d2818;
}

#mb-cookie-refuse {
	background: transparent;
	color: #9e321f;
}

#mb-cookie-refuse:hover {
	background: #f2f0ec;
}

@media (max-width: 480px) {
	#mb-cookie-banner {
		left: 12px;
		right: 12px;
		width: auto;
		max-width: none;
	}
	#mb-cookie-banner.is-visible {
		bottom: 12px;
	}
}
