  .whatsapp-button {
    
    right: 24px;
    bottom: 24px;
    z-index: 9999;
 width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 18px;
    border-radius: 999px;

    background: #25d366;
    color: white;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }

  .whatsapp-button svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
  }

  .whatsapp-button:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }

  .whatsapp-button:focus-visible {
    outline: 3px solid #111;
    outline-offset: 3px;
  }

  @media (max-width: 600px) {
    .whatsapp-button {
      right: 16px;
      bottom: 16px;
      width: 58px;
      height: 58px;
      padding: 0;
      justify-content: center;
    }

    .whatsapp-button span {
      display: none;
    }

    .whatsapp-button svg {
      width: 31px;
      height: 31px;
    }}

 .gal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.miniature {
  /*  width: 180px;
    height: 120px;*/
    object-fit: cover;
    cursor: zoom-in;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.miniature:hover {
    transform: scale(1.05);
}

/* Fond sombre couvrant tout l'écran */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;

    align-items: center;
    justify-content: center;

    padding: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: zoom-out;
}

/* Classe ajoutée par JavaScript */
.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;

    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);

    cursor: default;
}