.cart-share-btn {
    padding: 5px 13px 8px 11px;
    display: inline-flex;
    gap: 3px;
    color: var(--color-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 128%; /* 17.92px */
    border-radius: 10px;
    background: #3967ff;
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.45) inset;
    transition: 0.2s all;

    span {
        align-self: flex-end;
    }

    img {
        width: 24px;
        height: 19px;
    }

    &:hover {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 900px) {
    .cart-share-btn {
        font-size: 13px;
        padding: 5px 10px 6px 8px;
    }
}
