/* ================= MOBILE BOTTOM NAVIGATION ================= */
.zaro-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 6px;
    z-index: 9997;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .zaro-bottom-nav {
        display: flex;
    }
    body:not(.single-product) {
        padding-bottom: 62px;
    }
    /* Move floating whatsapp/cart buttons up so they don't overlap bottom nav */
    .zaro-floating-buttons {
        bottom: 150px !important;
    }
}

.zaro-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none !important;
    color: #6B7280 !important;
    font-size: 11px;
    font-weight: 500;
    flex: 1;
    transition: color 0.2s ease;
}
.zaro-bottom-nav-item:hover,
.zaro-bottom-nav-item:active {
    color: #1fae4d !important;
}

.zaro-bottom-nav-item svg {
    stroke: currentColor;
}

.zaro-bottom-nav-icon-wrap {
    position: relative;
}

.zaro-bottom-nav-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}