/* ======== CUSTOM COMPTE / HEADER ========
   Téléphone - Compte - Liste de souhaits
   Alignement moteur de recherche et panier (desktop)
   ====================================== */

/* Alignement global icône + texte */
#top-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* espace entre icône et texte */
  transition: color 0.3s ease;
}

/* ======== Téléphone ======== */
#top-links .fa-phone {
  font-size: 20px !important;
  color: #555;
}
#top-links li:first-child span {
  font-size: 15px !important;
  font-weight: 600;
  color: #000;
}

/* ======== Compte ======== */
#top-links .fa-user {
  font-size: 18px !important;
  color: #555;
}
#top-links .dropdown > a span {
  font-size: 15px !important;
  font-weight: 500;
  color: #111;
}

/* ======== Liste de souhaits ======== */
#wishlist-total .fa-heart {
  font-size: 18px !important;
  color: #555;
}
#wishlist-total span {
  font-size: 15px !important;
  font-weight: 400;
  color: #333;
  background: #f8f9fa;
  padding: 3px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* ======== Espacement entre les éléments ======== */
#top-links li {
  margin-left: 12px;
}

/* ======== Effets hover ======== */
#top-links a:hover i {
  color: #007bff;
}
#top-links a span {
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
#top-links a:hover span {
  border-bottom: 2px solid #007bff;
}
#wishlist-total:hover span {
  background: #007bff;
  color: #fff;
}

/* ======== Version mobile ======== */
@media (max-width: 768px) {
  #top-links .fa-phone,
  #top-links .fa-user,
  #wishlist-total .fa-heart {
    font-size: 22px !important;
  }
  #top-links li span,
  #wishlist-total span {
    font-size: 16px !important;
  }
}

/* ======== Alignement recherche + panier (PC uniquement) ======== */
@media (min-width: 992px) {
  .header-align-fix {
    display: flex;
    align-items: center;
  }

  .header-align-fix > div {
    display: flex;
    align-items: center;
  }

  #me_search .form-control.input-lg {
    height: 46px;
    line-height: 46px;
  }

  #cart .btn-lg {
    height: 46px;
    line-height: 46px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
  }
}
