/*
 * Bandeau RGPD
 */
.ia-rgpd-banner {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
	background: #fff; border-top: 3px solid var(--ia-accent, #D97A3D);
	box-shadow: 0 -4px 20px rgba(0,0,0,.15);
	padding: 1.25rem;
	font-size: .9rem;
	animation: ia-rgpd-slide-up .35s ease;
}
.ia-rgpd-banner[hidden] { display: none; }
@keyframes ia-rgpd-slide-up {
	from { transform: translateY(100%); }
	to   { transform: translateY(0); }
}
.ia-rgpd-inner {
	max-width: 1200px; margin: 0 auto;
	display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
	justify-content: space-between;
}
.ia-rgpd-text { flex: 1 1 400px; margin: 0; color: var(--ia-texte, #3D342C); }
.ia-rgpd-text p { margin: 0; }
.ia-rgpd-actions {
	display: flex; gap: .75rem; flex-wrap: wrap; align-items: center;
}
.ia-rgpd-link {
	color: var(--ia-texte-soft, #6B5E52);
	text-decoration: underline; font-size: .85rem; margin-right: .5rem;
}

.ia-rgpd-reopen {
	position: fixed; left: 1rem; bottom: 1rem; z-index: 9998;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--ia-bg-alt, #FAF7F3); border: 1px solid var(--ia-border, #D8CFC4);
	font-size: 1.3rem; cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
	transition: transform .2s;
}
.ia-rgpd-reopen:hover { transform: scale(1.1); }

@media (max-width: 600px) {
	.ia-rgpd-inner { flex-direction: column; align-items: stretch; }
	.ia-rgpd-actions { justify-content: flex-end; }
}
