/* ============================================================
   SMART DEALS AFRICA - BARRE MOBILE INFÉRIEURE (Image 2)
   Reproduction exacte : Accueil • Boutique • Panier
   ============================================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background-color: #f7f4f2;
    border-top: 1px solid #e7e2dc;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
    z-index: 1045;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Masquer sur desktop */
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* Espacement sous le body pour ne pas masquer le contenu */
@media (max-width: 991px) {
    body {
        padding-bottom: 74px !important;
    }
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #4a4a52;
    position: relative;
    padding: 4px 0;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item .nav-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.mobile-nav-item i {
    font-size: 19px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item .nav-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.2s ease;
}

/* Onglet actif (Rouge conforme à la capture) */
.mobile-nav-item.active {
    color: #c41e24 !important;
}

.mobile-nav-item.active i {
    color: #c41e24 !important;
    transform: scale(1.06);
}

.mobile-nav-item.active .nav-label {
    color: #c41e24 !important;
    font-weight: 800;
}

/* Ligne indicatrice rouge au-dessus de l'onglet actif */
.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    background-color: #c41e24;
    border-radius: 0 0 3px 3px;
}

/* Badge de notification panier */
.mobile-nav-item .cart-counter-badge {
    position: absolute;
    top: -5px;
    right: -9px;
    background-color: #c41e24;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    line-height: 17px;
    border-radius: 50px;
    text-align: center;
    padding: 0 3px;
    display: none;
}

.mobile-nav-item .cart-counter-badge.has-items {
    display: inline-block;
}
