/* Mobile Navigation Overlay Styles */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {

    /* Desktop Only - Hide on Mobile */
    .desktop-only {
        display: none !important;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 44px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 4px;
        background-color: #3f6212;
        border-radius: 4px;
        transition: 0.2s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(13px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-13px) rotate(-45deg);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(247, 254, 231, 0.98);
        backdrop-filter: blur(20px);
        z-index: 99;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .mobile-menu-overlay.active {
        transform: translateX(0);
    }

    .mobile-menu-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .mobile-nav-links a {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a2e05;
        text-decoration: none;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1.25rem;
        border-top: 2px solid rgba(132, 204, 22, 0.2);
    }

    .mobile-auth-buttons .btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        border-radius: 0.9rem;
    }

    .mobile-auth-buttons .btn-primary {
        background: #3f6212;
        color: white !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mobile-auth-buttons .btn-outline {
        background: white;
        border: 2px solid #3f6212;
        color: #3f6212;
    }
}
