.wc-product-share-buttons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.wc-product-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.wc-product-share-facebook {
    background-color: #3b5998;
}

.wc-product-share-linkedin {
    background-color: #0077b5;
}

.wc-product-share-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.wc-product-share-whatsapp {
    background-color: #25D366;
}

.wc-product-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}