/* Visuel affichage liste agents*/

.email-agent-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-family: Georgia, serif;
}

.hai-status-icon-short {
  height: 30px;
  vertical-align: middle;
  margin-bottom: 5px;
}


.email-consult-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd6c8;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 0 10px #d4d2d2;
  font-family: 'Georgia', serif;
  margin: 20px auto;
  gap: 20px;
  max-width: 1000px;
  order: 0; /* Initial order */
  transition: order 0.5s ease;
}

.email-photo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e6c075;
  box-shadow: 0 0 6px #f2e7d7;
}

.email-info {
  flex: 1;
}

.email-info h4 {
    margin: 0 0 6px;
    font-size: 20px !important;
    font-family: 'Times';
}

.email-specialties {
  font-size: 17px;
  color: #4d463c;
  margin-bottom: 8px;
}

.email-signature {
  font-style: italic;
  color: #7a5a3c;
  font-size: 17px;
  margin-bottom: 10px;
}

.email-details {
    font-size: 17px;
    font-family: 'Poly';
    color: #258fde;
	margin-bottom: 10px;
}

.email-details-avis {
    font-size: 17px;
    font-family: time;
    font-weight: bold;
    color: #dd2e44;
    margin-bottom: 10px;
}

.email-action {
  text-align: right;
  min-width: 160px;
}

.email-rating {
    font-size: 17px;
    color: #be4678;
    margin-bottom: 8px;
    font-family: time;
}

.email-price {
    font-size: 18px;
    font-family: times;
	font-weight: bold;
    color: #704d29;
    margin-bottom: 10px;
}


.email-button {
    background: #ffffff;
    color: #b5995a !important;
    text-decoration: none;
    padding: 10px 14px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
    font-family: 'Poly';
	font-size: 18px;
    border: 2px solid #b5995a;
}

.email-button:hover {
  background: #9f345f;
  color: #fff !important;
}

.hai-availability-legend {
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: Georgia, serif;
  color: #5a3e1b;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.hai-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hai-legend-icon {
  height: 26px;
  margin-bottom: 12px;
}


@media (max-width: 768px) {
  .email-consult-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .email-action {
    text-align: center;
    margin-top: 12px;
  }
}

/* ------------------------------- */
/* Style compteur études (existant + patch image) */
/* ------------------------------- */

.hai-etudes-count-new {
    text-align: center;
    padding: 0px 10px;
    background: #fff;
    font-family: time;
    margin: 20px auto;
    display: block;
}

/* .hai-star = conteneur animé */
.hai-star {
  /* l’ancien font-size servait à grossir l’emoji.
     Avec une image, on contrôle la taille sur .hai-star-img : */
  margin-bottom: 5px;
  display: inline-block;
  line-height: 0;
  animation: hai-shooting 2s ease-out infinite;
}

/* Image à la place de l’emoji */
.hai-star-img {
  width: 48px;            /* ajuste la taille ici */
  height: 48px;           /* garde un carré propre */
  display: block;
  object-fit: contain;
}

/* Texte */
.hai-already {
  font-size: 20px;
  font-family: time;
  color: #222;
  font-weight: 500;
  margin-bottom: 10px;
}

.hai-number {
  font-size: 20px;
  font-family: time;
  color: #0c1239;
  font-weight: 700;
  margin-bottom: 10px;
}

.hai-text {
  font-size: 18px;
  color: #222;
  line-height: 1.5;
  font-family: time;
}

/* Animation subtile */
@keyframes hai-shooting {
  0%   { transform: translateX(0) rotate(0deg); opacity: 1; }
  70%  { transform: translateX(10px) rotate(10deg); opacity: 0.6; }
  100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

/* Accessibilité : désactiver l’anim si l’utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
  .hai-star { animation: none; }
}

/* Option responsive si tu veux réduire un peu sur mobile */
@media (max-width: 480px) {
  .hai-star-img { width: 40px; height: 40px; }
  .hai-already, .hai-number, .hai-text { font-size: 18px; }
}



/* Corrige l'alignement du nom + icône */
.email-agent-title{
  display: inline-flex;        /* évite de prendre toute la ligne */
  align-items: center;
  gap: 8px;
}

/* L’icône ne pousse plus le texte vers le bas */
.hai-status-icon-short{
  height: 26px;                /* ou garde 30px si tu veux */
  vertical-align: middle;
  margin-bottom: 0;            /* <- important */
}

/* Mobile : centre réellement le bloc titre */
@media (max-width: 768px){
  .email-info h4{
    width: 100%;
    display: flex;             /* h4 devient conteneur flex */
    justify-content: center;   /* centre le nom */
    text-align: center;        /* fallback */
  }
  .email-agent-title{
    justify-content: center;   /* centre le contenu (nom + icône) */
    width: 100%;
  }
}
