/* navBar Bottom */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 0.6rem 0 1rem 0;
    border-top: 1px solid #ddd;
    z-index: 9999;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.bottom-nav svg path,
.bottom-nav svg circle {
    stroke: gray;
}

.nav-item span {
    font-family: "Bold";
    font-size: 0.73rem;
    color: var(--desc_color);
}

.bottom-nav svg.active path,
.bottom-nav svg.active circle {
    stroke: var(--brown_light);
    stroke-width: 2.5;
}

.bottom-nav svg.active+span {
    font-family: "ExtraBold";
    color: var(--brown_light);
}

.nav-item a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.cart-count {
    position: absolute;
    top: -6px;
    padding-top: 2px;
    left: 0;
    width: 17px;
    height: 17px;
    background-color: var(--brown_light);
    color: white !important;
    font-family: "ExtraBold";
    font-size: 0.8rem;
    border-radius: 50%;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}