/* Mobile Nav Drawer – Shared across all pages */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 500;
    opacity: 0;
    transition: opacity .3s
}

.mobile-nav-overlay.show {
    display: block;
    opacity: 1
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    max-height: -webkit-fill-available;
    background: #fff;
    z-index: 510;
    display: flex;
    flex-direction: column;
    transition: left .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, .15);
    overflow: hidden;
    overscroll-behavior: contain
}

.mobile-nav.show {
    left: 0
}

.mobile-nav-head {
    background: #E31B4E;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-nav-head img {
    height: 32px
}

.mobile-nav-head button {
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer
}

.mobile-nav-links {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 8px 0
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #F5F5F5;
    transition: background .15s
}

.mobile-nav-links a:hover {
    background: #FFF5F7;
    color: #E31B4E
}

.mobile-nav-links a .mn-emoji {
    font-size: 20px;
    width: 28px;
    text-align: center;
    color: #E31B4E
}

.mobile-nav-links a .mn-badge {
    margin-left: auto;
    background: #FFF5F7;
    color: #E31B4E;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px
}

.mobile-nav-foot {
    padding: 16px 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 34px));
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0
}

.mobile-nav-foot a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none
}

.mobile-nav-foot .mn-club {
    background: linear-gradient(135deg, #E31B4E, #C41240);
    color: #fff
}

.mobile-nav-foot .mn-wa {
    background: #25D366;
    color: #fff
}

/* Mobile toggle button */
.mobile-tog {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #fff
}

@media(max-width:768px) {
    .mobile-tog {
        display: flex
    }
}