/* Bottom Menu Bar Styles */

/* Bottom Menu Overlay - Devre dışı */
.bottom-menu-overlay {
    display: none;
}

/* Bottom Menu */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
    padding: 0;
}

.bottom-menu.closed {
    transform: translateY(100%);
}

/* Bottom Menu Close Button */
.bottom-menu-close {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    width: 45px;
    height: 30px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.bottom-menu-close:hover {
    background: rgba(0, 0, 0, 0.85);
}

.bottom-menu-close i {
    transition: transform 0.3s ease;
}

.bottom-menu.closed .bottom-menu-close i {
    transform: rotate(180deg);
}

/* Bottom Menu Navigation */
.bottom-menu-nav {
    padding: 12px 16px;
}

/* Menu Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.menu-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.menu-grid-item:hover,
.menu-grid-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.menu-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(to right, #c540f8 0%, #8b0cba 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-grid-item:hover .menu-icon,
.menu-grid-item.active .menu-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(197, 64, 248, 0.4);
}

.menu-icon i {
    font-size: 20px;
    color: #fff;
}

.menu-grid-item span {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .bottom-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .bottom-menu {
        display: none;
    }
}

@media (max-width: 576px) {
    .menu-grid {
        gap: 8px;
    }
    
    .menu-grid-item {
        padding: 8px 4px;
        gap: 5px;
    }
    
    .menu-icon {
        width: 35px;
        height: 35px;
    }
    
    .menu-icon i {
        font-size: 18px;
    }
    
    .menu-grid-item span {
        font-size: 10px;
    }
}

