/* RESET SIMPLE */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #5a4a3f; /* plus doux et élégant */
    background-color: #ffffff;
}

/* HEADER */
header {
    background: #333;
    color: white;
    text-align: left;
    padding: 20px;
}

/* HEADER FLEX */
.header {
    display: flex;
    align-items: center;      /* centre verticalement sur la ligne */
    justify-content: left;  /* centre horizontalement dans le header */
    gap: 50px;                /* espace entre logo et titre */
    padding: 20px;
	background: #fff;
}

/* Logo et titre */
.logo {
    height: 100px;
}

h1 {
    font-size: 75px;
    color: #A5835E;
    margin: 5px;
}
h6 {
	font-size: 75px;
    color: #A5835E;
    margin: 5px;
}
h7 {
	font-size: 75px;
    color: #A5835E;
    margin: 5px;
}

/* MOBILE */
@media (max-width: 768px) 
{
    .header {
        flex-direction: column;  /* empile logo au-dessus du titre */
		gap: 5px;
    }

    .logo {
        height: 150px;
    }

    h1 {
        font-size: 35px;
    }
	h2 {
    color: #A5835E;
    font-size: 80px;
	}

	h3 {
    color: #A5835E;
	}
}


/* MENU */
.navbar {
    background: #f39184;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 20px;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
		padding: 1px 20px;
    }
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    display: block;
    padding: 8px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.menu a:hover {
    background: #D95251;
	
}

/* BOUTON HAMBURGER */
.menu-toggle {
    display: none; /* caché sur PC */
    font-size: 25px;
    cursor: pointer;
    color: white;
	height:35px;
	
}
.menu-toggle.open .hamburger {
    transform: rotate(180deg);
    transition: transform 0.3s;
}
/* STRUCTURE */
.container {
    display: flex;
    padding: 20px;
}

main {
    flex: 3;
    padding: 20px;
}

aside {
    flex: 1;
    background: #f2f2f2;
    padding: 20px;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
}

/* MEDIA QUERIES POUR SMARTPHONE */
@media (max-width: 768px) {

   
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 18px;
    }
   

    /* HEADER ET CONTENU */
    .container {
        flex-direction: column;
    }

    aside {
        margin-top: 10px;
    }

    /* MENU RESPONSIVE */
    .menu {
        flex-direction: column;
        display: none; /* caché par défaut sur mobile */
        width: 100%;
    }

    .menu li {
        width: 100%;
        margin: 0;
    }

    .menu a {
        padding: 12px 20px;
        border-top: 1px solid #444;
    }

    .menu-toggle {
        display: block; /* visible sur mobile */
        align-self: flex-start;
    }

}







/* Titre principal */
.main-title {
    text-align: center;
    font-size: 16pt;
    color: #FFF;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
	background-color:black;
}
.main-title2 {
    text-align: center;
    font-size: 16pt;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
	background-color:#F39184;
}

/* Container principal : flex wrap pour plusieurs blocs */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Chaque bloc */
.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0;
    color: #A5835E;
    font-family: 'Poppins', sans-serif;
	font-size : 12pt;
}

@media (max-width: 768px) {
    .card {
     margin: 0 auto;
	width:250px;
    }
	.card img {
    object-fit: cover;
	}
}
.number-input {
    display: flex;
    align-items: center;
    justify-content: center; /* centre les boutons + input entre eux */
    margin: 10px auto; /* centre le bloc horizontalement */
}

.number-input input {
    width: 60px;
    text-align: center;
    font-size: 16px;
}

.number-input button {
    width: 35px;
    height: 35px;
    border: none;
    background-color: #F39184;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.number-input button:hover {
    background-color: #c00000;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.message {
    margin-top: 10px;
    font-size: 14px;
}
.card form {
    display: flex;
    flex-direction: column;
    align-items: center; /* centre tous les éléments */
	gap:10px;
	margin-top:15px;
	margin-bottom:10px;
}
.btn-panier {
    background: linear-gradient(135deg, #F39184, #c00000);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #c00000, #c00000);
}

/* Click (effet pression) */
.btn-panier:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}










.btn-panier2 {
    background: linear-gradient(135deg, #a5835e, #f39184);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #f39184, #f39184);
}

/* Click (effet pression) */
.btn-panier2:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier2 {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier2:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}


.links2:link {color: #f39184;}
.links2:visited {color: #f39184;}
.links2:hover {color: red;}


.btn-panier3 {
    background: linear-gradient(135deg, #a5835e, #f39184);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #f39184, #f39184);
}

/* Click (effet pression) */
.btn-panier3:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier3 {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier3:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}







/* Chaque bloc */
.cardd {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cardd:hover {
    transform: translateY(-5px);
}

.cardd img {
    width: 100px;
}

.cardd h3 {
    margin: 15px 0;
    color: #A5835E;
    font-family: 'Poppins', sans-serif;
	font-size : 12pt;
}

@media (max-width: 768px) {
    .cardd {
        width: 90%;
    }
}


.carddd {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
	padding-left:10px;
	font-size : 10pt;
}

.carddd:hover {
    transform: translateY(-5px);
}

.carddd img {
    width: 100px;
}

.carddd h3 {
    margin: 10px 0;
    color: #A5835E;
    font-family: 'Poppins', sans-serif;
	font-size : 12pt;
}

@media (max-width: 768px) {
    .carddd {
        width: 90%;
    }
}

/* lien favoris */
.link-favoris {
    background: #A5835E;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
}

/* lien danger (supprimer) */
.link-danger {
    color: red;
    text-decoration: underline;
}



.btn-panier-favoris {
    background: linear-gradient(135deg, #fff, #Fff);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier-favoris:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #a9b3ab, #a9b3ab);
	color: white;
}

/* Click (effet pression) */
.btn-panier-favoris:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier-favoris {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier-favoris:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-panier5 {
    background: linear-gradient(135deg, #Fff, #fff);
    color: #c00000;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100px;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier5:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #c00000, #c00000);
	color:#fff;
}

/* Click (effet pression) */
.btn-panier5:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier5 {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier5:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}





.btn-panier-favoris6 {
    background: linear-gradient(135deg, #fff, #Fff);
    color: #a5835e;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier-favoris6:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #c00000, #f39184);
	color: white;
}

/* Click (effet pression) */
.btn-panier-favoris6:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier-favoris6 {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier-favoris6:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Conteneur */
.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
}

/* Label */
.input-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

/* Input */
.input-group input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus (quand on clique dedans) */
.input-group input:focus {
    border-color: #A5835E;
    box-shadow: 0 0 5px rgba(165, 131, 94, 0.5);
}

/* Hover (PC) */
.input-group input:hover {
    border-color: #A5835E;
}

/* Mobile : plus confortable */
@media (max-width: 600px) {
    .input-group input {
        font-size: 18px;
        padding: 15px;
    }
}


/* Conteneur */
.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
}

/* Label */
.input-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

/* Textarea */
.input-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 15px; /* un peu moins arrondi que input */
    font-size: 16px;
    outline: none;
    resize: vertical; /* redimensionnement uniquement vertical */
    min-height: 120px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

/* Variante petit input */
.small-input input {
    width: 60px; /* petit champ */
    text-align: center;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 18px;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus */
.small-input input:focus {
    border-color: #A5835E;
    box-shadow: 0 0 5px rgba(165, 131, 94, 0.5);
}

/* Hover */
.small-input input:hover {
    border-color: #A5835E;
}

/* Mobile */
@media (max-width: 600px) {
    .small-input input {
        width: 70px;
        font-size: 20px;
        padding: 15px;
    }
}

.g-recaptcha.btn-submit {
    background: linear-gradient(135deg, #fff, #fff);
    color: black;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	font-family: 'Poppins', sans-serif;
}

/* Hover */
.g-recaptcha.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	color:#F39184;
}

/* Click */
.g-recaptcha.btn-submit:active {
    transform: scale(0.97);
}

/* Désactivé */
.g-recaptcha.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-s {
    background: linear-gradient(135deg, #fff, #fff);
    color: black;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	font-family: 'Poppins', sans-serif;
}

/* Hover */
.btn-s:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	color:#F39184;
}

/* Click */
.btn-s:active {
    transform: scale(0.97);
}

/* Désactivé */
.btn-s:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Conteneur (optionnel) */
.select-container {
    max-width: 400px;
    margin: 10px 0;
}

/* Style du select */
select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    font-size: 14px;
    color: black;
    border: 1px solid lightgray;
    border-radius: 8px;
    background-color: #fff;
    appearance: none; /* enlève le style natif */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Effet au survol */
select:hover {
    border-color: lightgray;
}

/* Effet au focus */
select:focus {
    outline: none;
    border-color: lightgray;
    box-shadow: 0 0 5px rgba(165, 131, 94, 0.3);
}

/* Ajout d'une flèche personnalisée */
.select-container {
    position: relative;
}

.select-container::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 10px;
    color: black;
}

.btn-achat {
    display: inline-block;
    width: 80%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

/* Hover */
.btn-achat:hover {
    background: linear-gradient(135deg, #333, #000);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Click */
.btn-achat:active {
    transform: scale(0.97);
    box-shadow: none;
}
.btn-panier {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-panier:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.btn-achat {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
    70% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
.btn-disabled {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: #ccc;
    color: #666;
    border-radius: 10px;
    border: none;
    cursor: not-allowed;
}
.separator-luxe {
    height: 1px;
    background: linear-gradient(to right, transparent, #a5835d, transparent);
    margin: 25px 0;
}




.btn-bouton-lien {
    display: inline-block;
    width: 200px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

/* Hover */
.btn-bouton-lien:hover {
    background: linear-gradient(135deg, #333, #000);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Click */
.btn-bouton-lien:active {
    transform: scale(0.97);
    box-shadow: none;
}

@media (max-width: 768px) {
	.btn-bouton-lien {
    display: inline-block;
    width: 250px;
    padding: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
	}

	/* Hover */
	.btn-bouton-lien:hover {
		background: linear-gradient(135deg, #333, #000);
		transform: translateY(-2px);
		box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	}
	.btn-bouton-lien:active {
    transform: scale(0.97);
    box-shadow: none;
	}
}







.btn-bouton-lien-retour {
    display: inline-block;
    padding: 4px 8px; /* moins haut + moins large */
    font-size: 14px; /* texte plus petit */
    font-weight: 500;
    color: #ddd;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

/* Hover */
.btn-bouton-lien-retour:hover {
    background: linear-gradient(135deg, #333, #000);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* Click */
.btn-bouton-lien-retour:active {
    transform: scale(0.97);
    box-shadow: none;
}



.bump {
    transform: scale(1.3);
    transition: 0.2s;
}

.fotorama__img {
    object-fit: contain !important;
    object-position: center !important;
    margin: auto !important;
}
.fotorama__stage__frame {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fotorama {
    margin: 0 auto;
    max-width: 100%;
}

.back-btn {
    text-align: center;
    margin-bottom: 20px;
}

#img {
    text-align: center;
}

.galerie {
    max-width: 500px;
    margin: auto;
}

.main-image img {
    width: 100%;
    border-radius: 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.7;
    transition: 0.2s;
}

.thumbnails img:hover {
    opacity: 1;
}

.thumbnails img {
    cursor: pointer;
}
.thumbnails img.active {
    border: 2px solid #000;
}











/* Mobile uniquement */
@media (max-width: 768px) {

    .mobile-buy-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
		box-shadow: 0 -3px 10px rgba(0,0,0,0.08);
    }

    .mobile-buy-bar .price {
        font-size: 18px;
        font-weight: 600;
        color: #111;
    }

    .mobile-buy-bar .btn-achat {
        padding: 10px 16px;
        font-size: 14px;
        background: #111;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}



#popup-box {
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  padding: 30px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  color: #eee;
  border: 1px solid rgba(255,255,255,0.08);
  animation: fadeIn 0.4s ease;
}

#popup-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#popup-box p {
  color: #bbb;
}

#popup-box strong {
  color: #fff;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #444, transparent);
  margin: 20px 0;
}
.popup-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.popup-buttons button {
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

/* Accepter = vert premium */
#accept-cookies {
  background: linear-gradient(135deg, #28a745, #34d058);
  color: white;
  box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40,167,69,0.6);
}

/* Refuser = discret mais propre */
#refuse-cookies {
  background: transparent;
  color: #aaa;
  border: 1px solid #444;
}

#refuse-cookies:hover {
  background: #222;
  color: #fff;
}

#popup-overlay {
  backdrop-filter: blur(6px);
}

.info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #3498db;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
}
.description {
    white-space: pre-line;
}

