/* =========================================================
   BOTTOM NAVIGATION STYLES
========================================================= */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px; /* Menyesuaikan lebar container mobile utama */
    height: 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.1s ease;
    position: relative;
}

/* Efek saat ditekan */
.nav-item:active {
    transform: scale(0.95);
}

/* Ikon Navigasi */
.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
    line-height: 1;
}

/* Label Teks Navigasi */
.nav-label {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

/* Status Menu Aktif */
.nav-item.active {
    color: #ee4d2d; /* Warna tema e-commerce */
}

.nav-item.active .nav-label {
    font-weight: 600;
}

/* =========================================================
   BADGE NOTIFICATION (WISHFISH & CART)
========================================================= */

.badge-wrapper {
    position: relative;
    display: inline-flex;
}

.badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #ee4d2d;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
    border: 2px solid #ffffff; /* Efek potongan putih di sekeliling badge */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}