/* STYLE PERSONNALISÉ POUR MISE EN ÉVIDENCE LES PIERRES &LES AIMANTS */

  .boutiques-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  .boutique-highlight {
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;                 /* <-- alignement horizontal */
    flex-direction: column;        /* <-- texte sous l’image */
    align-items: center;           /* <-- centre horizontal */
    justify-content: center;       /* <-- centre vertical */
    text-align: center;            /* <-- centre le texte */
  }

  .boutique-highlight img {
    width: 70px;                   /* <-- taille uniforme */
    height: 70px;
    object-fit: contain;           /* <-- évite la déformation */
    margin-bottom: 15px;
  }

  .boutique-highlight h1 {
    color: #fff !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0 !important;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .boutique-highlight:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }