.c-cart__small {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10.5px 15px;
    justify-content: center;
    border-radius: 5px;
    width: 100%;
}

.c-cart__small:hover .cart__image {
    fill: var(--accent-color);
}
.c-cart__small:hover .c-cart__small--count {
    color: var(--accent-color);
}

.cart__image {
    fill: var(--secondary-background-color);
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.c-cart__small--icon {
    flex-shrink: 0;
}
.cart__count-text {
    margin-left: 5px;
}
.c-cart__small--price {
    color: var(--main-text-color);
    display: flex;
    padding-left: 10px;
    border-left: 1px solid var(--border-color);
}

@media (max-width: 1699px) {
    .c-cart__small--price {
        display: none;
    }
}

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

.cart-list {
    display:  flex;
    margin-left: 5px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cart-list {
        display: none;
    }
}

.c-cart__small--count {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
}

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



