.basket {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: #F2F1F1;
    transition: background .3s ease
}
.basket:hover {
    background-color: var(--primary-color)
}
.basket.basket--small {
    width: 2.5rem;
    height: 2.5rem
}
.basket.basket--rounded {
    border-radius: 100%
}
.basket .svg {
    fill: var(--primary-color)
}
.basket .svg svg {
    display: flex
}
.basket:hover svg {
    fill: white
}