﻿.desktop-bottom-nav {
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1), 0 -1px 4px rgba(0,0,0,0.05) !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    z-index: 1000;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: visible;
}

    .desktop-bottom-nav.hidden {
        transform: translateY(100%);
        opacity: 15;
    }

    .desktop-bottom-nav .nav-tip {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.75);
        color: var(--color-white);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        white-space: nowrap;
        pointer-events: none;
        z-index: 1001;
    }

    .desktop-bottom-nav .nav-handle {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 6px;
        cursor: pointer;
        z-index: 1002;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        padding: 0;
    }

    .desktop-bottom-nav .drag-indicator {
        width: 100%;
        height: 100%;
        background-color: var(--color-border-light);
        border-radius: 3px;
        animation: bounceY 2s infinite;
    }

@keyframes bounceY {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.desktop-bottom-nav .nav-link {
    flex: 1;
    text-align: center;
    color: var(--color-primary);
    text-decoration: none;
    padding: 0;
}

    .desktop-bottom-nav .nav-link:hover {
        color: var(--color-primary-dark);
    }
