.cart {
    position: relative;
}

.cart .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 640px;
    background: #fff;
    padding: 1rem;
    z-index: 99;
}

.bottom-navigation li.active a {
    color: #cd0300;
}

.bottom-navigation li.active img {
    filter: invert(17%) sepia(70%) saturate(3504%) hue-rotate(351deg)
        brightness(95%) contrast(126%);
}

@media (min-width: 640px) {
    .bottom-navigation {
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}
