.woo-share-wrapper{
    margin-top:20px;
}

.woo-share-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
}

.woo-share-icons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.woo-share-btn{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4f4f4;
    transition:0.3s;
    text-decoration:none;
}

.woo-share-btn:hover{
    transform:translateY(-3px);
}

.woo-share-btn svg{
    width:22px;
    height:22px;
    fill:#111;
}

.woo-share-count{
    margin-top:15px;
    font-size:14px;
}

@media(max-width:768px){

    .woo-share-icons{
        gap:8px;
    }

    .woo-share-btn{
        width:42px;
        height:42px;
    }
}