/**
 * L'Aire Bête — Bannière consentement cookies (v1.49.67)
 *
 * Style : parchemin clair, bordure bois, charte cohérente avec le reste
 * du site. Bottom-sticky, dismissible via Refuser/Accepter.
 */

.lb-cookie-banner {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999;
	width: min(720px, calc(100vw - 32px));
	background: linear-gradient(180deg, #f4dcae 0%, #e8c789 100%);
	border: 3px solid #6b4220;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
	font-family: Georgia, "Times New Roman", serif;
	color: #3d2410;
	animation: lb-cookie-slide-up 0.4s ease-out;
}

@keyframes lb-cookie-slide-up {
	from { transform: translate(-50%, 120%); opacity: 0; }
	to   { transform: translate(-50%, 0);    opacity: 1; }
}

.lb-cookie-banner__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
}

.lb-cookie-banner__text {
	flex: 1 1 320px;
	min-width: 280px;
}

.lb-cookie-banner__text strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 4px;
}

.lb-cookie-banner__text p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.4;
}

.lb-cookie-banner__link {
	color: #4b3c28;
	text-decoration: underline;
}

.lb-cookie-banner__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.lb-cookie-banner__btn {
	padding: 10px 18px;
	font-family: Cinzel, Georgia, serif;
	font-weight: 700;
	font-size: 0.9rem;
	border: 2px solid #6b4220;
	border-radius: 8px;
	cursor: pointer;
	letter-spacing: 0.03em;
	transition: filter 0.2s ease;
}

.lb-cookie-banner__btn--accept {
	background: #3d2410;
	color: #f4dcae;
}

.lb-cookie-banner__btn--decline {
	background: transparent;
	color: #3d2410;
}

.lb-cookie-banner__btn:hover,
.lb-cookie-banner__btn:focus-visible {
	filter: drop-shadow(0 4px 12px rgba(255, 215, 100, 0.5));
	outline: none;
}

@media (max-width: 600px) {
	.lb-cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
		padding: 14px 16px;
	}
	.lb-cookie-banner__actions {
		justify-content: center;
	}
}
