.whatsapp {
    position: fixed;
    bottom: 95px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 9999;

    width: 55px;       /* taille du rond */
    height: 55px;
    background-color: #000;  /* rond noir */
    border-radius: 50%;      /* cercle parfait */
    padding: 5px;            /* optionnel */
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* léger effet */
}

.whatsapp img {
    width: 35px;   /* taille de l'icône à l'intérieur du rond */
    height: 35px;
}

.whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
