/* ============================================================
   VAARI WATER - Mobile-First App Experience CSS
   Fixed Bottom Navigation Bar & Mobile Drawer Layout
   ============================================================ */

/* Bottom Navigation Bar (Mobile Only) */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: rgba(8, 12, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 163, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1050;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 3px;
    width: 25%;
    height: 100%;
    transition: all 0.25s ease;
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.bottom-nav-item.active {
    color: #00d2ff !important;
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    width: 32px;
    height: 3px;
    background: #00d2ff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 10px #00d2ff;
}

.nav-link-custom .cart-badge-count,
.mobile-nav-item .cart-badge-count {
    position: relative;
    top: -1px;
    background: #00a3ff;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-badge-count {
    background: #00a3ff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Offcanvas Drawer */
.offcanvas-vaari {
    background: #0d1527;
    color: #ffffff;
    border-left: 1px solid rgba(0, 163, 255, 0.25);
}

.offcanvas-vaari .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
}

.offcanvas-vaari .btn-close {
    filter: invert(1);
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #cbd5e1;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.drawer-menu-link:hover, .drawer-menu-link:focus {
    background: rgba(0, 163, 255, 0.12);
    color: #00d2ff;
    padding-left: 1.5rem;
}

.drawer-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 163, 255, 0.15);
    color: #00a3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
}
