/* MOBILE BOTTOM NAVIGATION - SELF CONTAINED */
.gk-mobile-bottom-nav {
    display: none;
}

@media (max-width: 1024px) {
    .gk-mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 60px !important;

        /* GLASSMORPHISM EFFEKT - iOS Style */
        background: rgba(255, 255, 255, 0.30) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        backdrop-filter: blur(10px) saturate(180%) !important;

        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        z-index: 999999999 !important;
        justify-content: space-around !important;
        align-items: center !important;

        /* Symmetrisches Padding für optische Mitte + Safe Area */
        padding-top: 8px !important;
        /* Safe Area begrenzt auf max 20px, damit es beim Schweben nicht zu groß wird */
        padding-bottom: clamp(8px, env(safe-area-inset-bottom), 20px) !important;

        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .gk-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none !important;
        color: #000 !important;
        flex: 1;
        font-family: inherit;
        transition: all 0.2s ease;
    }

    .gk-nav-item .dashicons {
        font-size: 22px;
        width: 22px;
        height: 22px;
        margin-bottom: 3px;
    }

    .gk-nav-label {
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 2px;
    }

    /* Active State */
    .gk-nav-item.active .dashicons {
        color: #000;
        background: #f8db46;
        border: 2px solid #000;
        border-radius: 8px;
        padding: 4px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -5px;
        box-shadow: 3px 3px 0 #000;
    }

    .gk-cart-badge {
        position: absolute;
        top: 8px;
        right: 25%;
        background: #000;
        color: #fff;
        font-size: 8px;
        min-width: 14px;
        height: 14px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #fff;
        padding: 0 3px;
        font-weight: 900;
    }

    /* Verhindert Überlappung am Ende der Seite */
    body {
        padding-bottom: 70px !important;
    }
}
