
  .voyant-banner {
        position: relative;
        background-size: cover;
        background-position: center;
        height: 250px;
        display: flex;
        align-items: center;
        padding-left: 150px;
    }

    .voyant-photo-container {
        position: absolute;
        left: 20px;
        bottom: -50px;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #7ba389;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
		margin-bottom: 12px;
    }

    .voyant-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fullscreen-content {
        padding-top: 0px;
    }


    .voyant-info-blocks {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .voyant-info-block {
        background-color: #fdfdfd;
        border-radius: 10px;
        height: 165px;
        width: 90px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 5px;
        flex: 1;
        margin: 0 10px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
	
	
	h3 {
    font-family: "BluuNext", sans-serif;
    font-size: 20px !important;
    margin-top: 5px !important;
    font-weight: 700;
    font-style: normal;
    line-height: 1.25em;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 10px !important;

   }	
   
   	h5 {
    font-family: "BluuNext", sans-serif;
	font-size: 18px !important;
	margin-top: 5px !important;
    font-weight: 700;
    font-style: normal;
    line-height: 1.25em;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 0.7em;
}
    
    .review-rating {
        display: flex;
        justify-content: center;
        margin: 5px 0;
    }

    .star {
        font-size: 16px;
        color: #a85161;
        margin: 0 2px;
    }

    .star.filled {
        color: #C72C48;
    }
    
	.sparkle-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
  }

  .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: gold;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle-animation 1.5s infinite;
  }

  @keyframes sparkle-animation {
    0%, 100% {
      opacity: 0;
      transform: scale(0.5) translateY(-20px);
    }
    50% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .reviews-container {
    display: block; /* Show reviews initially */
    opacity: 0; /* Start with zero opacity for fade-in effect */
    transition: opacity 1s ease-in-out;
}
  
    .review-details {
        text-align: center;
        font-size: 14px;
        color: #666;
        margin-top: 5px;
    }

    .play-button-container {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }

    .play-button img {
        width: 50px;
        height: 37px;
        margin-top: 1px;
    }

    /* Taille spécifique pour le GIF de la vidéo */
    .video-button img {
        width: 50px; /* Réduire la largeur du GIF vidéo */
        height: 37px; /* Réduire la hauteur du GIF vidéo */
        margin-top: 1px;
    }
	
    .audio-player, .video-player {
        display: none;
    }
	
	/* Masquer la croix de fermeture du thème */
    .theme-modal .close {
    display: none !important; /* Utilisation de !important pour surcharger les styles du thème */
    }
	
	.reviews-grid {
    margin-right: 75px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
    justify-content: space-evenly;
    margin-left: 75px;
}

.review-block {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex-basis: calc(23.333% - 20px); /* 3 colonnes */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.review-meta {
    margin-top: 10px;
}

.review-rating {
    margin-bottom: 5px;
}

.review-pseudo {
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.star {
    font-size: 16px;
    color: #cacaca;
}

.star.filled {
    color: #C72C48;
}

/* Style pour la pagination */
.pagination {
    margin-top: 20px;
    text-align: center;
	margin-bottom: 75px;
}

.pagination a {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    text-decoration: none;
    border-radius: 5px;
    color: #333;
    transition: background-color 0.3s;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination .current-page {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #C72C48;
    color: white;
    border-radius: 5px;
}

.voyant-description {
    background-color: #ffffff; /* Couleur de fond douce pour contraster */
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Léger effet d'ombre */
}

.voyant-description h2 {
    font-family: 'Georgia', serif; /* Typographie élégante */
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
	margin-top: 20px;
    position: relative;
	font-weight: bold;
}

.voyant-description h2:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #C72C48;
    margin: 10px auto 0;
}

.voyant-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify; /* Justifier le texte pour une lecture plus agréable */
    margin-bottom: 20px;
}

.play-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.play-button img, .video-button img {
    margin-left: 5px;
    cursor: pointer;
    width: 50px;  /* Taille des icônes */
    height: 37px;
}

.voyant-description .widget-area-publicite {
    margin-top: 40px;
}

.widget-area-publicite {
    text-align: center;
}
.voyant-description p {
    white-space: pre-wrap; /* Respecte les sauts de ligne et espaces multiples */
    word-wrap: break-word; /* Force la coupure des mots longs si nécessaire */
}

.description-full {
    display: none; /* Masquer la description complète par défaut */
}

.description-short {
    display: inline; /* Afficher la description courte par défaut */
}

.ellipsis {
    display: inline; /* Ajout des points de suspension après la description courte */
}

.toggle-description {
    display: inline-block;
    margin-top: 10px;
    background-color: #C72C48;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.toggle-description:hover {
    background-color: #a53a45;
}


.voyant-pseudo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px !important;
    gap: 10px;
}

.voyant-pseudo {
    font-size: 22px !important;
    color: #7ba389;
    font-weight: bold;
    margin-right: auto; /* Align pseudo to the left */
}

.voyant-status-button {
    padding: 5px 10px;
    font-size: 19px;
    border-radius: 5px;
    cursor: not-allowed;
    color: #fff;
    border: none;
    background-color: #7ba389; /* Customize based on status */
    margin-left: auto; /* Push button to the right */
    display: inline-flex;
    align-items: center;
}

.status-available { background-color: #4CAF50; }
.status-busy { background-color: #FFA500; }
.status-on-pause { background-color: #1E90FF; }
.status-unavailable { background-color: #FF0000; }
.status-unknown { background-color: #808080; }



.voyant-status-button {
  margin-bottom: 0.5em;
}
.consultation-timer {
  font-size: 0.9em;
  margin: 0.5em 0;
  color: #f26d21;
}

#favorite-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-top: 5px; /* Ajuster l'espacement autour du bouton */
    display: inline-block;
}

.favorite-heart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.favorite-heart-icon:hover {
    transform: scale(1.1);
}

/* Media query pour tablettes et mobiles */
@media (max-width: 768px) {
    .voyant-info-blocks {
        flex-direction: column; /* Passe les blocs en colonne */
        align-items: center;
    }
    
    .voyant-info-block {
        width: 80%; /* Prend la majorité de la largeur sur mobile */
        margin: 10px 0; /* Espacement entre les blocs */
    }

    .voyant-photo-container {
        width: 130px;
        height: 130px;
        left: 50%;
        transform: translateX(-50%); /* Centre la photo sur mobile */
    }

    .voyant-photo {
        object-fit: cover;
    }
}

/* Media query pour très petits écrans (par exemple, mobiles de petite taille) */
@media (max-width: 480px) {
    .voyant-info-blocks {
        flex-direction: column; /* Empile les blocs */
    }
    
    .voyant-info-block {
        width: 100%; /* Utilise toute la largeur */
        margin: 5px 0; /* Espacement plus petit entre les blocs */
    }

    .voyant-description h2 {
        font-size: 24px; /* Réduire la taille du titre */
    }
    
    .voyant-description p {
        font-size: 14px; /* Réduire la taille du texte */
    }
    
    .voyant-photo-container {
        width: 130px;
        height: 130px;
    }
}

/* Styles et animations des boutons de statut */
:root {
    --border-size: 5px;
    --border-radius: 50px;
    --background: #ffffff;
    font-family: "Arial black", sans-serif;
}

@keyframes rotateBackground {
    to { --border-angle-1: 360deg; }
}
@keyframes rotateBackground2 {
    to { --border-angle-2: -270deg; }
}
@keyframes rotateBackground3 {
    to { --border-angle-3: 540deg; }
}

button.status-available, 
button.status-busy, 
button.status-on-pause, 
button.status-unavailable {
    margin-left: 15px; /* Augmenter la marge entre le pseudo et le bouton */
    --border-angle-1: 0deg;
    --border-angle-2: 90deg;
    --border-angle-3: 180deg;
    color: inherit;
    font-size: 19px;
	margin-top: 20px;
    border: 0;
    padding: var(--border-size);
    display: flex;
    width: max-content;
    border-radius: var(--border-radius);
    background-color: transparent;
    animation: rotateBackground 3s linear infinite,
               rotateBackground2 8s linear infinite,
               rotateBackground3 13s linear infinite;
}

button.status-available {
    --custom-color: #7ba389;
    background-image: conic-gradient(
        from var(--border-angle-1) at 10% 15%, transparent, var(--custom-color) 10%, transparent 30%, transparent
    ),
    conic-gradient(
        from var(--border-angle-2) at 70% 60%, transparent, var(--custom-color) 10%, transparent 60%, transparent
    ),
    conic-gradient(
        from var(--border-angle-3) at 50% 20%, transparent, var(--custom-color) 10%, transparent 50%, transparent
    );
    color: #7ba389;
}
button.status-busy {
    --custom-color: #ffa500;
    background-image: conic-gradient(
        from var(--border-angle-1) at 10% 15%, transparent, var(--custom-color) 10%, transparent 30%, transparent
    ),
    conic-gradient(
        from var(--border-angle-2) at 70% 60%, transparent, var(--custom-color) 10%, transparent 60%, transparent
    ),
    conic-gradient(
        from var(--border-angle-3) at 50% 20%, transparent, var(--custom-color) 10%, transparent 50%, transparent
    );
    color: #ffa500;
}
button.status-on-pause {
    --custom-color: #00b9ae;
    background-image: conic-gradient(
        from var(--border-angle-1) at 10% 15%, transparent, var(--custom-color) 10%, transparent 30%, transparent
    ),
    conic-gradient(
        from var(--border-angle-2) at 70% 60%, transparent, var(--custom-color) 10%, transparent 60%, transparent
    ),
    conic-gradient(
        from var(--border-angle-3) at 50% 20%, transparent, var(--custom-color) 10%, transparent 50%, transparent
    );
    color: #00b9ae;
}
button.status-unavailable {
    --custom-color: #c72c48;
    background-image: conic-gradient(
        from var(--border-angle-1) at 10% 15%, transparent, var(--custom-color) 10%, transparent 30%, transparent
    ),
    conic-gradient(
        from var(--border-angle-2) at 70% 60%, transparent, var(--custom-color) 10%, transparent 60%, transparent
    ),
    conic-gradient(
        from var(--border-angle-3) at 50% 20%, transparent, var(--custom-color) 10%, transparent 50%, transparent
    );
    color: #c72c48;
}

button div {
    background: var(--background);
    padding: 0.2em 10px;
    border-radius: calc(var(--border-radius) - var(--border-size));
}

.voyant-status-button .fa-phone {
    color: white; /* Ajustez la couleur en fonction du statut */
    font-size: 23px;
}
.status-available .fa-phone { color: #7ba389; }
.status-busy .fa-phone { color: #ffa500; }
.status-on-pause .fa-phone { color: #00b9ae; }
.status-unavailable .fa-phone { color: #c72c48; }

}
.reviews-section .review-rating .star {
  font-size: 1.2em;     /* Ajustez si besoin */
}
.reviews-section .review-rating .star.filled {
  color: #a85161;       /* bordeau ! */
}
.reviews-section .review-rating .star.empty {
  color: #f1c40f;          /* Gris clair pour les vides */
}

.review-response {
  background: #f7f7f7;
  border-left: 4px solid #a85161;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  font-size: 14px;
}
.response-content {
  margin-top: 0.5rem;
  color: #2d3748;
}
.response-date {
  font-size: 0.85em;
  color: #718096;
  margin-top: 0.25rem;
}

/* S’assurer que seuls les paragraphes courts/longs sont visibles */
.text-full, .text-full-response {
  margin-top: .5rem;
}
.text-short, .text-short-response {
  margin-top: .5rem;
}
.read-more, .read-less,
.read-more-response, .read-less-response {
  color: #3182ce;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
.read-more:hover, .read-less:hover,
.read-more-response:hover, .read-less-response:hover {
  text-decoration: underline;
}

/* Grille de base */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Pour tablettes medium (600px–900px) : 2 colonnes */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Pour petits écrans - 600px 1 colonne */
@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-block {
    padding: .75rem;
  }
  .review-content,
  .review-response {
    font-size: 0.95em;
  }
  .review-meta {
    flex-direction: column;
    gap: .25rem;
  }
  .review-meta .review-rating {
    margin-bottom: .5rem;
  }
}

/* Pour très petits écrans 400px), bouton « Lire plus » plus compact */
@media (max-width: 400px) {
  .read-more,
  .read-less,
  .read-more-response,
  .read-less-response {
    font-size: 0.85em;
  }
}

.voyant-specialites.modern {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voyant-specialites.modern header h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #c72c48;
    margin-top: 10px;
    font-family: 'Poly';
}

.voyant-specialites.modern .specialty-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.voyant-specialites.modern .specialty-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #f3f4f6;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.voyant-specialites.modern .specialty-badge img {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.voyant-specialites.modern .specialty-badge:hover {
  background-color: #e5e7eb;
  transform: translateY(-2px);
}


/* Planning profil public */

.availability-wrapper {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.availability-grid {
  border-collapse: collapse;
  width: 100%;
  min-width: 800px; /* pour forcer un scroll horizontal si écran plus petit */
}

.availability-grid th, .availability-grid td {
    padding: 0;
    border: 1px solid #f0f0f0;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 0.75rem;
    line-height: 32px;
    border-color: #ccc;
}

.availability-grid thead th {
  position: sticky;
  top: 0;
  background: #fafafa !important;
  z-index: 2;
  font-weight: 500;
  color: #555;
  border-color: #ccc !important;
}

.availability-grid th.date-col, .availability-grid td.date-col {
    position: sticky;
    left: 0;
    background: #fafafa;
    z-index: 1;
    font-weight: 500;
    color: #333333;
    width: 100px;
    text-align: left;
    padding-left: 8px;
    border-color: #ccc;
}

.availability-grid td.available {
    background: #7ba389c9 !important;
    border-color: #ccc;
}

.availability-grid td.unavailable {
    background: #fdfdfd !important;
    border-color: #ccc;
}

.availability-legend {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  margin-top: 8px;
}

.availability-legend .item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.availability-legend .box {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
}
.availability-legend .box.available   { background: #7ba389 !important; }
.availability-legend .box.unavailable { background: #fdfdfd; }


.voyant-availability h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #c72c48 !important;
    margin-top: 10px;
    font-family: 'Poly';
}


.voyant-availability {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

