.user-panel__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 100px;
    background: #fff;
    position: fixed;
    bottom: 110px;
    right: 4%;
    z-index: 5;
    box-shadow: 0 4px 8px rgb(0 0 0 / 15%);
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    color: #BA9153;
}

.user-panel__img {
    margin-right: 2px;
}

.user-panel__cart:hover .user-panel__cart-text {
    color: rgba(186, 145, 83, 0.8);
}

.user-panel__cart:hover svg path {
    stroke: rgba(186, 145, 83, 0.8);
}

@media (max-width: 1279px) {
    .user-panel__cart {
        bottom: 170px;
    }
}

@media (max-width: 1023px) {
    .user-panel__cart {
        bottom: 150px;
    }
}

@media (max-width: 767px) {
    .user-panel__cart {
        bottom: 130px;
        right: 15px;
        width: 64px;
        height: 64px;
    }

    .user-panel__cart svg {
        width: 28px;
        height: 28px;
    }
}

