.silver-product-share {
    position: relative;
    display: inline-block;
}

.silver-product-share .share-button {
    cursor: pointer;
    position: relative;
    padding: 7px;
    background: #EDF0F8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.silver-product-share .share-button span {
    display: flex;
}

.silver-product-share .share-icons {
    position: absolute;
    top: 110%;
    left: 0;
    display: flex;
    gap: 13px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all .25s ease;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    align-items: center;
    justify-content: center;
}

.silver-product-share .share-button:hover .share-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.silver-product-share .share-icons li {
    list-style: none;
}

.silver-product-share .share-icons li a {
    font-size: 16px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3A4980;
}

.silver-product-share .share-icons li i {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}
