/* 1. Conteneur principal - Reste toujours à 0 pour laisser le bouton visible */
#eet-cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	pointer-events: none; /* Ne bloque pas le clic sur le site */
}

/* 2. La bannière (Panel) - C'est elle qui bouge */
.eet-cookie-panel {
	position: relative;
	background: #ffffff;
	padding: 30px 30px 30px 80px; /* Plus de padding à gauche pour la barre */
	box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
	border-top: 4px solid #EDE6D8;
	font-family: sans-serif;
	transform: translateY(100%); /* Cachée par défaut */
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto; /* Active les clics sur les boutons */
}

/* ÉTAT OUVERT */
#eet-cookie-wrapper.is-open .eet-cookie-panel {
	transform: translateY(0);
}

/* 3. La barre verticale (L'illusion du marque-page) */
.eet-cookie-ribbon-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px; /* Aligné avec ton bouton */
	width: 45px; /* Même largeur que ton bouton */
	background: #E3D8C4;
	z-index: 1;
}

/* 4. Le signet (Bouton Cookie) - Attaché au sommet du panel */
#eet-cookie-wrapper button#eet-cookie-bookmark.eet-style-bookmark {
	background: #EDE6D8 !important;
	padding: 10px 0 0 0 !important;
	text-transform: none !important;
	display: flex !important;
	border-radius: 5px 5px 0 0 !important;
	width: 45px !important;
	height: 70px !important;
	line-height: normal !important;
	position: absolute;
	top: -60px; /* Dépasse du panel */
	left: 20px;
	border: none;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	clip-path: polygon(0 14%, 50% 28%, 100% 14%, 100% 100%, 0 100%);
	box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, background 0.3s ease;
	outline: none;
	z-index: 10;
}

#eet-cookie-wrapper button#eet-cookie-bookmark.eet-style-bookmark:hover {
	background: #E3D8C4 !important;
	transform: translateY(-5px);
}

.eet-icon-cookie {
	position: relative;
	top: 15px;
	fill: #8B5A2B;
}

/* 5. Tes boutons (Inchangés) */
.eet-cookie-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 5;
}

.eet-cookie-actions button {
	border-radius: 4px !important;
	font-weight: 600 !important;
}

.eet-cookie-header, .eet-cookie-panel p, .eet-cookie-footer {
	position: relative;
	z-index: 5;
}

#eet-cookie-wrapper.is-open button#eet-cookie-bookmark.eet-style-bookmark {
	background: #E3D8C4 !important;
}