/* 
   Estilos base para el botón de WhatsApp. 
   Hereda la posición fixed de Woodmart o la define si no existiera.
*/

.whatsapp-button {
    position: fixed;
    bottom: 110px;
    /* Mantener la altura personalizada */
    right: 20px;
    background-color: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white !important;
}

.whatsapp-button i {
    margin: 0;
}