/* =============================================================
   MijnBabyLijst Theme – Hamburger navigatie (mobiel)
   Toegevoegd in v1.1 (overgeheveld vanuit plugin v2.0.8)
   ============================================================= */

/* Hamburger menu - mobiel */
.mbl-hamburger-wrap {
    display: none;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    padding: 10px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    align-items: center;
    justify-content: space-between;
}
.mbl-hamburger-logo img { height: 36px; width: auto; }
.mbl-hamburger-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #c0527a;
    padding: 4px 8px;
    line-height: 1;
}
.mbl-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 2px solid #f8a4c8;
    padding: 8px 0;
    position: sticky;
    top: 56px;
    z-index: 9998;
}
.mbl-mobile-nav a {
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid #f5f5f5;
}
.mbl-mobile-nav a:hover { background: #fde8ef; color: #c0527a; }
.mbl-mobile-nav.is-open { display: flex; }
@media (max-width: 768px) {
    .mbl-hamburger-wrap { display: flex; }
    #masthead { display: none !important; }
}
