/* ============================================
   MOBILE BOTTOM NAVIGATION
   Sabit alt menü - Mobil için
   ============================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-bottom-nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-bottom-nav__item {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: #6c757d;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    width: 100%;
    max-width: 80px;
    position: relative;
    min-height: 64px;
}

.mobile-bottom-nav__link:hover,
.mobile-bottom-nav__link.active {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.08);
}

.mobile-bottom-nav__link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff 0%, #0052cc 100%);
    border-radius: 0 0 3px 3px;
}

.mobile-bottom-nav__icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav__icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.mobile-bottom-nav__link.active .mobile-bottom-nav__icon svg {
    transform: scale(1.1);
    color: #0066ff;
}

.mobile-bottom-nav__label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Body padding for bottom nav */
body.has-bottom-nav {
    padding-bottom: 80px;
}

/* Only show on mobile */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    body.has-bottom-nav {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }
}

/* Hide on larger screens */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none !important;
    }
    
    body.has-bottom-nav {
        padding-bottom: 0;
    }
}

