/*
Theme Name: Lavilla Child GDPR
Theme URI: https://maestrel.com/
Description:  Lavilla Child GDPR
Version: 1.1
Author: Maestrel / Aymeric de Pas
Author URI: https://maestrel.com/
Template: lavilla
Text Domain: lavilla-child
*/


#cookie-consent-banner {
	position: fixed;
	bottom: 30px;
	right: 30px;
	max-width: 340px;
	background: #fff;
	padding: 24px 18px;
    z-index: 10001; 
	text-align: center;
	box-shadow: 0 2px 16px rgba(0,0,0,0.15);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 16px;
	font-family: Lato, sans-serif;
	font-size: 16px;
	transition: all 0.3s;
}

/* Boutons */
#cookie-consent-banner button {
	background: rgb(16, 37, 66);
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 6px;
	margin-right: 8px;
	font-size: 1em;
	cursor: pointer;
	font-family: inherit;
	font-weight: 600;
	transition: background 0.2s;
}
#cookie-consent-banner button:last-child {
	margin-right: 0;
}
#cookie-consent-banner button:hover {
	background: rgb(163, 185, 201);
}

/* --- MOBILE --- */
@media (max-width: 600px) {
	#cookie-consent-banner {
		left: 50%;
		right: auto;
		bottom: 16px;
		transform: translateX(-50%);
		max-width: 95vw;
		width: 95vw;
		padding: 14px 8px;
		font-size: 14px;
		border-radius: 10px;
		box-shadow: 0 1px 8px rgba(0,0,0,0.10);
	}
	#cookie-consent-banner button {
		width: 48%;
		font-size: 1em;
		padding: 9px 0;
		margin-right: 2%;
	}
	#cookie-consent-banner div {
		display: flex;
		justify-content: center;
		gap: 0;
	}
	#cookie-consent-banner button:last-child {
		margin-right: 0;
	}
}


