﻿/* =========================
   MENU HEADER
========================= */
.menu-header {
    background: rgba(42, 122, 52, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

    .menu-header strong {
        gap: 4px;
    }

.menu-root-label {
    transform: translateY(1px);
}

/* =========================
   BACK BUTTON
========================= */
#backButton {
    font-size: 16px;
    line-height: 1;
    transform: translateY(1px);
}

/* =========================
   STICKY FOOTER CORE
========================= */
.menu-layout {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.menu-content {
    flex: 1;
}

/* =========================
   FOOTER SIGNATURE
========================= */
.menu-signature {
    margin-top: 32px;
    padding: 12px 0 16px;
    text-align: center;
    font-size: 11.5px;
    color: #9a9a9a;
    letter-spacing: 0.25px;
}

/* =========================
   MENU CLOSE BUTTON
========================= */
.menu-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .menu-close-btn:hover {
        background: rgba(0,0,0,0.04);
    }

    .menu-close-btn:active {
        transform: scale(0.95);
    }

    .menu-close-btn svg {
        color: inherit;
    }

/* =========================
   HAMBURGER / TOUCH AREA
========================= */
.menu-touch-area {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .menu-touch-area:hover {
        background: rgba(255,255,255,0.12);
    }

    .menu-touch-area:active {
        transform: scale(0.95);
    }

    .menu-touch-area svg {
        width: 22px;
        height: 22px;
        color: rgba(255,255,255,0.9);
    }

/* =========================
   DRAWER TITLE
========================= */
.menu-panel-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-panel-title-main {
    font-weight: 600;
}

.menu-panel-title-sub {
    font-size: 0.85em;
    opacity: 0.6;
}

    .menu-panel-title-sub.is-muted-strong {
        opacity: 0.8;
    }
