.c-cart__small {
    display: flex;
}

.c-cart__small:hover .cart__image {
    transform: rotateY(360deg);
    transition: all 0.4s ease-in-out;
}

.cart__image {
    fill: var(--accent-color);
    width: 26px;
    height: 26px;
}
.c-cart__small--icon {
    flex-shrink: 0;
    padding: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 15px;
    color: var(--secondary-text-color);
}

.c-cart__small--count {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 20px;
    background: #eb5757;
    border: 1px solid #fff;
    color: var(--secondary-text-color);
}

.c-cart__small--price {
    color: var(--main-text-color);
    display: flex;
    margin-top: 6px;
    font-weight: 700;
    margin-left: 0;
}

@media (max-width: 400px) {
    .c-cart__small--list .c-cart__small--price {
        font-size: 10px;
    }
}

.cart-list {
    display:  flex;
    flex-direction: column;
    text-align: left;
}

.c-cart__small--text {
    background-color: var(--main-background-color);
    min-width: 25px;
    width: fit-content;
    height: 15px;
    border-radius: 7.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .cart-list {
        display: none;
    }
    .c-cart__small--icon {
        margin-right: 0;
    }
}