.product-contact-buttons-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.product-contact-buttons-wrapper .product-whatsapp-button,
.product-contact-buttons-wrapper .product-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 20px 3px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}
.product-contact-buttons-wrapper .product-whatsapp-button {
    background-color: #25D366;
    border: 2px solid #25D366;
}
.product-contact-buttons-wrapper .product-whatsapp-button:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}
.product-contact-buttons-wrapper .product-phone-button {
    background-color: #007bff;
    border: 2px solid #007bff;
}
.product-contact-buttons-wrapper .product-phone-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.product-contact-buttons-wrapper .product-whatsapp-button i,
.product-contact-buttons-wrapper .product-phone-button i {
    margin-right: 8px;
}