/* Mobile Menu Drawer Styles */
.hamburger-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.hamburger-drawer.open {
    right: 0;
}

.hamburger-drawer .close-drawer {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #38B349;
    margin-bottom: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: #38B349;
}

/* Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* Ensure hamburger button is clickable */
.hamburgerButton {
    cursor: pointer;
}
