/* Menu Top styles. Extracted from inline <style> in public_html/pages/partials/menu_top.php on 2026-05-10. */
.bmm-topbar{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    font-family:'Inter','Segoe UI',sans-serif;
}
.bmm-topbar-inner{
    max-width:1280px;
    margin:0 auto;
    padding:0 clamp(12px,2.5vw,32px);
    display:flex; align-items:center;
    height:60px;
    gap:12px;
}
.bmm-brand{
    font-weight:800;
    font-size:18px;
    letter-spacing:-0.01em;
    color:#0f172a;
    text-decoration:none;
    white-space:nowrap;
}
.bmm-brand-mmo{
    font-family:'Fraunces', Georgia, serif;
    font-style:italic;
    font-weight:500;
    color:var(--bmm-accent);
    letter-spacing:0;
}
.bmm-brand-tag{
    margin-left:6px;
    font-size:11px;
    font-weight:600;
    color:color-mix(in srgb, var(--bmm-accent) 60%, #ffffff);
    text-transform:uppercase;
    letter-spacing:0.12em;
}
.bmm-nav{
    display:flex; align-items:center;
    gap:18px;
    margin-left:8px;
    font-size:14px;
    font-weight:600;
}
.bmm-nav-link{
    position:relative;
    color:#334155;
    text-decoration:none;
    padding:18px 0;
    transition:color .15s ease;
    border-bottom:2px solid transparent;
    margin-bottom:-1px;
}
.bmm-nav-link:hover{ color:var(--bmm-accent); }
.bmm-nav-link.is-active{
    color:var(--bmm-accent);
    border-bottom-color:var(--bmm-accent);
}
.bmm-right{ margin-left:auto; display:flex; align-items:center; gap:14px; }
.bmm-search{
    position:relative;
    height:38px;
    display:flex; align-items:center;
}
.bmm-search input{
    box-shadow:none !important;
    height:38px;
    width:0;
    padding:0 0 0 34px;
    border:1px solid transparent;
    background:transparent;
    font-size:13px;
    font-weight:500;
    color:#0f172a;
    outline:none;
    cursor:pointer;
    transition:width .35s ease, background .35s ease, border-color .35s ease, padding .35s ease;
}
.bmm-search input::placeholder{ color:#64748b; }
.bmm-search input[aria-expanded="true"]{
    width:240px;
    padding-right:80px;
    background:#ffffff;
    border-color:#e5e7eb;
    cursor:text;
}
.bmm-search-icon{
    position:absolute; left:8px; top:50%; transform:translateY(-50%);
    color:#64748b; pointer-events:none;
    width:18px; height:18px;
}
.bmm-search-btn{
    position:absolute; right:6px; top:50%; transform:translateY(-50%);
    background:var(--bmm-accent); color:#fff; font-size:12px; font-weight:600;
    padding:4px 10px;
    border:0;
    cursor:pointer;
    opacity:0; pointer-events:none;
    transition:opacity .25s ease;
}
.bmm-search input[aria-expanded="true"] ~ .bmm-search-btn{
    opacity:1; pointer-events:auto;
}
.bmm-points{
    display:none;
    align-items:center; gap:6px;
    color:#0f172a;
    text-decoration:none;
    font-size:14px;
}
@media (min-width:1024px){ .bmm-points{ display:inline-flex; } }
.bmm-points b{ font-size:16px; font-weight:700; }
.bmm-points-label{
    font-size:10px;
    font-weight:600;
    color:var(--bmm-accent);
    text-transform:uppercase;
    letter-spacing:0.14em;
}
.bmm-divider{ width:1px; height:18px; background:#e5e7eb; }
.bmm-login{
    display:inline-flex; align-items:center;
    height:38px;
    padding:0 18px;
    background:var(--bmm-accent);
    color:#ffffff !important;
    font-size:13px; font-weight:700;
    text-decoration:none;
    border:2px solid var(--bmm-accent);
    transition:background .15s ease, border-color .15s ease;
}
.bmm-login:hover{ background:var(--bmm-accent-deep); border-color:var(--bmm-accent-deep); }
.bmm-user{
    position:relative;
    display:none;
    align-items:center; gap:8px;
    cursor:pointer;
    color:#0f172a;
    font-weight:600;
    font-size:14px;
}
@media (min-width:768px){ .bmm-user{ display:inline-flex; } }
.bmm-user-name{ color:#0f172a; text-decoration:none; }
.bmm-user-name:hover{ color:var(--bmm-accent); }
.bmm-user-avatar{
    width:32px; height:32px;
    border:1px solid #e5e7eb;
    object-fit:cover;
}
.bmm-user-dot{
    width:10px; height:10px;
    background:var(--bmm-accent);
    box-shadow:0 0 0 3px color-mix(in srgb, var(--bmm-accent) 2%, transparent);
    border-radius:9999px;
}
.bmm-user-mobile{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
}
@media (min-width:768px){ .bmm-user-mobile{ display:none; } }
.bmm-mobile-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:40px; height:40px;
    color:#0f172a;
    background:transparent; border:0;
    cursor:pointer;
}
@media (min-width:768px){ .bmm-mobile-toggle{ display:none; } }
.bmm-mobile-toggle:hover{ color:var(--bmm-accent); }
@media (max-width:767px){
    .bmm-nav{ display:none; }
    .bmm-topbar > .bmm-topbar-inner > .bmm-brand{ display:none; }
}

/* user dropdown */
.bmm-dropdown{
    position:absolute;
    top:100%; right:0;
    margin-top:10px;
    min-width:240px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 24px rgba(15,23,42,0.08);
    opacity:0;
    transform:translateY(6px);
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    z-index:50;
}
.bmm-dropdown.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
.bmm-dropdown-spacer{ position:absolute; left:0; right:0; bottom:100%; height:14px; }
.bmm-dropdown-section{ padding:6px 0; }
.bmm-dropdown-section + .bmm-dropdown-section{ border-top:1px solid #f1f0f5; }
.bmm-dropdown-eyebrow{
    display:block;
    padding:8px 18px 4px;
    font-size:10px;
    font-weight:600;
    color:#94a3b8;
    text-transform:uppercase;
    letter-spacing:0.20em;
}
.bmm-dropdown-link{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px;
    padding:9px 18px;
    color:#1f2937;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:background .12s ease, color .12s ease;
    border-left:3px solid transparent;
}
.bmm-dropdown-link:hover{ background:var(--bmm-accent-soft); color:var(--bmm-accent); }
.bmm-dropdown-link.is-active{
    color:var(--bmm-accent);
    border-left-color:var(--bmm-accent);
    background:var(--bmm-accent-soft);
}
.bmm-dropdown-link.is-admin{ color:#dc2626; font-weight:600; }
.bmm-dropdown-link.is-admin:hover{ background:#fef2f2; color:#b91c1c; }
.bmm-badge{
    display:inline-flex; align-items:center;
    min-width:20px;
    padding:1px 7px;
    background:#f1f5f9;
    color:#475569;
    font-size:11px;
    font-weight:600;
    line-height:1.4;
    white-space:nowrap;
}
.bmm-badge.is-pending{ background:#fef3c7; color:#92400e; }
.bmm-badge.is-new{     background:#fee2e2; color:#b91c1c; }

/* mobile menu panel */
.bmm-mobile-panel{
    position:fixed; inset:0;
    z-index:60;
    background:#ffffff;
    display:none;
    flex-direction:column;
}
.bmm-mobile-panel.is-open{ display:flex; }
.bmm-mobile-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 20px;
    border-bottom:1px solid #e5e7eb;
}
.bmm-mobile-title{
    font-size:14px; font-weight:700;
    text-transform:uppercase; letter-spacing:0.14em;
    color:#0f172a;
}
.bmm-mobile-close{
    width:40px; height:40px;
    display:inline-flex; align-items:center; justify-content:center;
    background:transparent; border:0; color:#0f172a; cursor:pointer;
}
.bmm-mobile-body{ flex:1 1 auto; overflow-y:auto; padding:8px 0 24px; }
.bmm-mobile-eyebrow{
    display:block;
    padding:18px 20px 6px;
    font-size:10px;
    font-weight:600;
    color:#94a3b8;
    text-transform:uppercase;
    letter-spacing:0.20em;
}
.bmm-mobile-link{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px;
    padding:14px 20px;
    font-size:16px;
    font-weight:500;
    color:#0f172a;
    text-decoration:none;
    border-bottom:1px solid #f1f0f5;
}
.bmm-mobile-link:hover{ background:var(--bmm-accent-soft); color:var(--bmm-accent); }
.bmm-mobile-link.is-admin{ color:#dc2626; font-weight:600; }
