@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    .head {
        display: flex;
        justify-content: start;
    }
    .head .logo {
        margin-left: 10px;
    }
    .head .configuration {
        display: none;
    }
    .navbar,
    .configuration {
        display: none;
    }
    .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        margin-left: 10px;
    }
    .menu-btn {
        font-size: 28px;
        background: none;
        border: none;
        color: #5f8f48;
        margin-right: 20px;
    }
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        height: 150%;
        background: rgba(0,0,0,0.3);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s;
        z-index: 100;
    }
    .mobile-nav-card {
        position: fixed;
        left: 50%;
        top: +170%;
        bottom: auto;
        transform: translateX(-50%);
        width: 89%;
        max-width: 520px;
        background: #f4f9f1;
        border-radius: 18px;
        padding: 1.4rem;
        transition: 0.7s ease;
        z-index: 101;
    }
    .mobile-nav-card.active {
        transition: 0.7s ease;
        top: 120px;
        bottom: auto;
    }
    .mobile-nav-card h3 {
        color: #5f8f48;
        margin-bottom: 0.8rem;
    }
    .mobile-nav-card a {
        display: block;
        background: #ffffff;
        padding: 0.9rem 1rem;
        border-radius: 12px;
        margin-bottom: 0.45rem;
        text-decoration: none;
        color: #2f2f2f;
        font-weight: 500;
    }
    .mobile-nav-actions {
        margin-top: 0.8rem;
        display: flex;
        gap: 0.6rem;
    }
    .mobile-nav-actions a {
        flex: 1;
        text-align: center;
        background: #7aa95c;
        color: white;
    }
    .badge {
        background: white;
        color: #5f8f48;
        border-radius: 10px;
        padding: 0 6px;
        font-size: 0.75rem;
        margin-left: 4px;
    }
    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}
