/****************** CSS du magasin Version 3.0 23/04/2025  **********************/


              

:root {
            --primary-color: #891a38;
            --orange-color: #f97316;
            --text-color: #ffffff;
            --light-color: #ffffff;
            --dark-color: #1e293b;
            --mauve-color: #891a38;
            --transition-speed: 0.3s;
}

h2 {
  vertical-align: center;
  text-align: center;
}

html, body {
  margin: 0;
  height: 100%;
  background-color: #C95A04;
  color: white;
}

* {
    font-family: "Century Gothic Paneuropean", sans-serif;
    box-sizing: border-box;
    font-size: 17px;

        
}

.para-mala {
        margin: 1em 0 2em 0;
}
.link-menu-small {
  color:#ffffff;
}


.link-mala {
  color:#80106F;
  text-decoration: none;
}
.link-mala:hover  {
  font-weight: bold;
  text-decoration: underline;
} 

.titre_para {
  font-size: clamp(16px, 5vw, 32px);
  color: rgb(112, 25, 153);
  
}
.titre_para2 {
  font-size: clamp(16px, 5vw, 32px);
  color: rgb(112, 25, 153);
  text-align: right;
}
.titre_para3 {
  font-size: clamp(16px, 5vw, 20px);
  color: rgb(238, 201, 39);
  text-align:center ;
}

hr {
  color: rgb(112, 25, 153);
  border-top: 1px solid;
  width:70%;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

  

.acceuil2{
    padding-top: 80px;
    padding-left: 0px;
}







/********************************** DEBUT Barre de navigation principale  NEW***********************************************/
        /* Header et Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--light-color);
            background: linear-gradient(to left, #f46b45, #eea849);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            xxpadding: 1rem;
            padding-right: 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .logo img {
            width: 210px;
            min-width: 210px;
            height: auto;
            margin-right: 10px;
        }

        .rech_small {
                display: none;
            }

        .plus_small.nav-item {
                display: none;
            }
        /* Navigation principale */
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            margin: 0 0.5rem;
            white-space: nowrap;
        }

        .nav-link {
            display: block;
	    padding: 3px;
            color: var(--text-color);
            text-decoration: none;
            #font-weight: 500;
            font-weight: 300;
            transition: color var(--transition-speed);
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        /* Sous-menus */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 230px;
	    background-color: rgba(112, 25, 153, 0.89);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all var(--transition-speed);
            z-index: 100;
            border-radius: 15px;
	    padding: 3px;
        }

        .nav-item:hover .sub-menu,
        .sub-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .sub-menu-item {
            list-style: none;
        }

        .sub-menu-link {
            display: block;
	    padding: 2px 2rem 2px 1rem;
            color: var(--text-color);
            text-decoration: none;
            transition: background-color var(--transition-speed);
	    font-size: 16px;
        }

        .sub-menu-link:hover {
            background-color: rgba(0, 0, 0, 0.05);
            color: var(--orange-color);
        }

        /* Indicateur de sous-menu */
        .has-children > a::after {
            content: "\f107";
            font-family: "FontAwesome";
            font-weight: 900;
            margin-left: 0.5rem;
        }

        /* Burger Menu */
        .burger-menu {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }

        .burger-line {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-color);
            position: absolute;
            transition: all var(--transition-speed);
        }

        .burger-line:nth-child(1) {
            top: 0;
        }

        .burger-line:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .burger-line:nth-child(3) {
            bottom: 0;
        }

        /* Burger Menu Actif */
        .burger-menu.active .burger-line:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Media Queries */
        @media (max-width: 1010px) {
            .burger-menu {
                display: block;
            }

            .nav-container {
                position: fixed;
                top: 0;
                right: -300px;
                width: 280px;
                height: 100vh;
                background-color: var(--mauve-color);
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                transition: right var(--transition-speed);
                z-index: 1000;
                padding-top: 80px;
                overflow-y: auto;
            }

            .nav-container.active {
                right: 0;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
            }

            .nav-item {
                margin: 0;
                
            }

            .nav-link {
                padding: 1rem;
                border-top: 1px solid rgba(227, 223, 231, 0.849);
            }

	    .nav-link:hover {
            	color: var(--orange-color);
        	}

            .sub-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                padding-left: 1rem;
                background-color: rgba(0, 0, 0, 0.02);
                border-radius: 0;
            }
	     .sub-menu-link {
            	padding: 5px 2rem 5px 1rem;
        	}
             .sub-menu-link:hover {
		color: var(--orange-color);
        	}

            .sub-menu.active {
                display: block;
            }

            .has-children > a::after {
                float: right;
                content: "\f107";
                transition: transform var(--transition-speed);
            }

            .has-children.active > a::after {
                transform: rotate(180deg);
            }

            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            .rech_large.nav-item {
                display: none;
            }
            .actu.nav-item {
                display: none;
            }
            .plus_small.nav-item {
                display: block;
            }
            .rech_small {
                display: block;
            }
            .overlay.active {
                display: block;
            }
	    .acceuil2 {
    		 padding-top: 20px;
		}

        }

	.hr_small {
		width: 100%;
 		border: none;
  		height: 1px;
  		background-color: white;
	}
	.bouton_rech {
    		border-radius: 25px;
    		border: 1px solid rgb(112, 25, 153);
    		width: 95%;
    		height: 30px;
    		justify-content: center;
    		margin-left: 20px;
    		font-weight: bold;
	}

/********************************** FIN Barre de navigation principale  NEW***********************************************/

/********************************** Menu défilant***********************************************/
.gallery-container {
      position: relative;
      width: 95%;
      margin: auto;
      overflow: hidden;
    }

    .gallery2 {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery2 img {
      width: 200px;
      height: auto;
      margin-right: 10px;
    }

    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(137, 26, 56, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 1;
    }

    .left-btn {
      left: 0;
    }

    .right-btn {
      right: 0;
    }

/********************************** FIN Menu défilant***********************************************/

/*************************** MENU HISTORIQUE  Accueil / etc... *****************************/

.acceuil a{
   font-size: 25px;
}
.acceuil2 a{
   font-size: 20px;
}

.c_titre2 {
  display: inline-block;
}
.les_categories{
    padding-top: 80px;
    padding-left: 20px;
}
.categorie{
    padding-left: 20px;
    font-size: clamp(15px, 5vw, 20px);
}
.nbr_article_trouve {
    padding: 20px;
    font-size: 20px;
}






/*************************** MENU DES OPTIONS EN PLUS frangrance, lampe, etc....*****************************/
/* Style pour le conteneur du menu */
.menu_opt {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  border-left: 20px;
  width: 95%;
  margin: auto;
  scrollbar-color: red orange;
  scrollbar-width: thin;
  gab: 10px;
cursor: grab;
}

.menu_opt a {
    display: inline-block;
    padding: 7px 15px;
    color: white;
    background-color: #80106F; /* Couleur de fond */
    font-size: 18px;
    text-decoration: none; /* Supprime le soulignement */
    border-radius: 30px; /* Coins arrondis */
    border: 1px solid #ccc; /* Bordure légère */
    transition: background 0.3s, color 0.3s; /* Effet au survol */
    text-align: center;
    margin: 3px; 
}
.menu_opt a:hover {
    background-color: #ddd;
    color: #000;
}

.descr_opt {
  padding: 20px;
 }

/* Style pour l'ascenseur - pour les navigateurs WebKit/Blink */
.menu_opt::-webkit-scrollbar {
  width: 3px;
  height: 5px;
  background: transparent;
  scrollbar-color: rgb(125, 16, 214) green;
  scrollbar-width: thin;
  padding: 20px;
cursor: grab;
  
}

.menu_opt::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}

.menu_opt::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}
.menu_opt::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
cursor: grab;
}



/************************************   PAGE INTRO ************************************************************/
.image-container {
  position: relative;
  height: 500px;
}

.image-container::after {
  content: '';
  background: url('/bin/maga/images/intro_shop.jpg') no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  opacity: 0.8;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 1;   
}

.content_t {
  text-align: center;
  color: white;
  font-size: 30px;
  text-shadow: 2px 2px 4px #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 5;   
}
.content_t .t1 {
  font-size: 40px;
  font-weight: bold;
}
.content_t .second-line {
  font-size: clamp(15px, 5vw, 25px);
  margin-top: 20px;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  background: url('/images/magasin/statues.jpg') no-repeat center center; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.circle-image2 {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  }

.text_intro {
  color: white;
  padding: 8px 12px;
  margin-top: 70px;
  text-align: center;
  font-size: clamp(16px, 5vw, 60px);	
}

.yy:hover img { 
  opacity: .5;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}




/************************************   LES PRODUITS ************************************************************/
/* Conteneur principal des articles */

.article-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Min 250px pour éviter trop de réduction */
  gap: 10px;
  padding: 10px;
  max-width: 2200px;
  margin: auto;
  }

/* Toujours au moins 2 colonnes, même sur les écrans très petits */
@media (max-width: 800px) {
    .article-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes fixes même sur les petits écrans */
    }
}


        /* Style des articles */
        .article {
            background: #C95A04;
	    border: 1px solid rgb(255, 255, 255);
            padding: 10px;
            border-radius: 8px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.2s;
        }

        .article:hover {
            transform: scale(1.02);
            box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Images : elles doivent rester entièrement visibles */
        .article img {
            width: 100%;
            max-height: 250px;
            object-fit: contain; /* Assure que l’image est entièrement visible */
            border-radius: 8px;
            cursor: pointer;
            background-color: #C95A04; /* Ajout d’un fond blanc pour éviter les coupures */
        }

        /* Effet zoom au survol */
        .article img:hover {
		opacity: 0.7;
        }

        .price {
    font-weight: bold;
    font-size: 20px;
    color: rgb(112, 25, 153);
	}

 .destock {
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    color: rgb(137,26,56);
}
       
        /* Bouton charger plus */
        #load-more {
            display: block;
            margin: 20px auto;
            padding: 10px 20px;
            font-size: 16px;
            background-color: #80106F;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }

        #load-more:hover {
            background-color: #0056b3;
        }


.vendu {
  position: relative;
  top: -50px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(40deg);
  color: red;
  font-size: 25px;
  font-weight: bold;
  background-color: white;
  padding: 10px;
  border: 2px solid red;
  text-align: center;
  xheight: 60px; /* Définit la hauteur à 50 pixels */
  width: 120px;
}
.icon {
  width: 30px;
  height: 30px;
}




/******************* Détail du produit ***********************************/

/* Section d'introduction */
.intro-section {
    text-align: left;
    margin-bottom: 10px;
    max-width: 800px;
}

.intro-section h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.intro-section p {
    font-size: 18px;
    color: #666;
}


/* Conteneur principal */
.product-container {
    display: flex;
    flex-wrap: wrap;
    background: #C95A04;
    border: 1px solid rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
  
}
/* Galerie d'images */
.image-gallery {
    flex: 1;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}
.image-gallery2 {
    overflow: hidden;
    border-radius: 8px;
	}

/* Image principale */
.main-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    object-fit: cover;
}

/* Miniatures */
.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Texte sur produit  prix,ref, etc...*/
.product-details {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.ttt {
	display: block;
	}

.description {
    margin: 15px 0;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-gallery {
        width: 100%;
    }

    .ttt {
	display: none;
	}

    .product-details {
        width: 100%;
        text-align: left;
        align-items: center;
    }

}


/* Effet de zoom uniquement pour les grands écrans */
@media screen and (min-width: 768px) {
    .image-gallery2:hover img {
        transform: scale(2.5);
	cursor: zoom-in;
    }
}

/******************* FIN Détail du produit ***********************************/

/* CSS */
#load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}


#vers_le_haut {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    /* Ajoutez d'autres styles comme la couleur de fond, la couleur du texte, etc. */
}
#retour_arriere {
  position: fixed;
  bottom: 10px;
  right: 50px;
  cursor: pointer;
  display: none;
  /* Ajoutez d'autres styles comme la couleur de fond, la couleur du texte, etc. */
}




/********************************************* Article ************************************************/
.container_article{
	
 	margin-top: 30px;
        padding: 2rem;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
}

.img_article_center {
  max-width: 100%; /* Largeur maximale pour s'adapter à la carte */
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

/********************************************* POur la 3D ************************************************/
model-viewer {
  width: 100%;
  height: 800px;
  }


/********************************************* Message de fin  et autres....************************************************/
  .message_fin {
    display: none;
    margin-left: 20px;
    padding-bottom: 80px;
}

  .message_fin img {
    float: left; 
    margin-right: 15px;
    width: 150px;
 }

 .message_pas_trouve img {
  float: left; 
  margin-right: 15px;
  width: 150px;
}

 xvideo {
      width: 300px;
    }
.vv {
        max-width: 100%;
  	height: auto;
        }


 .container_iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}




/********************************************* FOOTER ************************************************/
.container{
	max-width: 1170px;
	margin:auto;
}
.row_footer{
	display: flex;
	flex-wrap: wrap;
}
.footer{
    background: url('bord_footer2.png') repeat-x;
	  background-color:rgb(112, 25, 153);
    padding: 50px 0;
}


.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}

.footer-col ul li a{
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	color: #bbbbbb;
	display: block;
  transition: all 0.3s ease;
  display:inline-block;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
    }
}


/********************************************* Diapo ************************************************/
.slideshow-container {
  position: relative;
  margin: auto;
  height: 500px;
  overflow: hidden;
}

.mySlides {
  display: none;
  height: 500px;
  position: relative;
  animation-name: fade;
  animation-duration: 1s;
}

.mySlides img {
  vertical-align: middle;
  height: 500px; 
  opacity: 0.9;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.text_d {
  color: white;
  font-size: 40px;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%,50%);
  text-shadow: 2px 2px 4px #000000;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: white;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot-container {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.zzactive {
  background-color: #ff0000;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(112,25,153,0.6);
}

@keyframes fade {
  from {opacity: 0.4} 
  to {opacity: 1}
}

@media only screen and (max-width: 600px) {
  .text {
    font-size: 12px;
    bottom: 30px;
  }
  .dot {
    height: 12px;
    width: 12px;
  }
}



/********************************************* Gallerie mise en avant  ************************************************/
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-gap: 20px;
  padding: 20px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: filter 0.3s;
}
.gallery .gallery-item a { /* Lien englobant l'image et le texte */
  top: 50%;
  left: 50%;

}

.gallery .gallery-item:nth-child(3n+1) {
  grid-row: span 2;
}

.gallery .gallery-item:nth-child(4n+2) {
  grid-column: span 2;
}

.gallery .gallery-item:hover img {
  filter: brightness(1.2);
}

/* Styles CSS pour le texte centré au milieu de l'image */
.gallery .gallery-item .image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.2em;
  text-align: center;
  border: 1px solid white;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(128, 0, 128, 0.7);
}

    /* Styles CSS pour l'image en plein écran */
    .full-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(85, 34, 48, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .full-screen img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(73, 4, 94, 0.295);
    }

    .full-screen.show {
      opacity: 1;
      visibility: visible;
    }


/********************************************* bouton à droite  ************************************************/
.fixed-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 500;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.btn-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-phone {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.btn-phone:hover {
    background: linear-gradient(135deg, #45a049, #3e8e41);
}

.btn-facebook {
    background: linear-gradient(135deg, #1877F2, #166FE5);
}

.btn-facebook:hover {
    background: linear-gradient(135deg, #166FE5, #1464D8);
}

.btn-instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #C13584, #833AB4);
}

/* Animation d'apparition */
.btn-contact {
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

.btn-contact:nth-child(1) {
    animation-delay: 0.1s;
}

.btn-contact:nth-child(2) {
    animation-delay: 0.2s;
}

.btn-contact:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-buttons {
        right: 15px;
        gap: 12px;
    }
    
    .btn-contact {
        width: 50px;
        height: 50px;
    }
    
    .btn-contact svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .fixed-buttons {
        right: 10px;
        gap: 10px;
    }
    
    .btn-contact {
        width: 45px;
        height: 45px;
    }
    
    .btn-contact svg {
        width: 16px;
        height: 16px;
    }
}

.no-fixed-buttons .fixed-buttons {
    display: none !important;
}

