.tt5-product-social-share .social-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-right:8px;
    transition: transform 0.2s ease;
}

.tt5-product-social-share .social-icon:hover {
    transform: scale(1.1);
}

/* Colori di default (puoi personalizzare) */
.tt5-product-social-share .social-icon.facebook { background: #1877f2;color:#FFF;}
.tt5-product-social-share .social-icon.x { background: #000;color:#FFF;}
.tt5-product-social-share .social-icon.pinterest { background: #e60023;color:#FFF;}
.tt5-product-social-share .social-icon.linkedin { background: #0077b5;color:#FFF;}
.tt5-product-social-share .social-icon.whatsapp { background: #25d366;color:#FFF;}
/* Instagram gradient */
.tt5-product-social-share .social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, 
        #285AEB 90%);
    color:#FFF;
}

/* TikTok (nero/verde) */
.tt5-product-social-share .social-icon.tiktok {
    background: #000;
    position: relative;
    overflow: hidden;
    color:#FFF;
}
.tt5-product-social-share .social-icon.tiktok::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(37, 244, 238, 0.5), 
        rgba(254, 44, 85, 0.5), 
        transparent);
    color:#FFF;
    transition: 0.5s;
}
.tt5-product-social-share .social-icon.tiktok:hover::before {
    left: 100%;
}

.tt5-product-social-share .social-icon svg {
    width: 18px;
    height: 18px;
}
.tt5-product-social-share .share-label {
    margin-right:8px;
}

