/* ============================================================
   adult_toggle.css — Mobile-only 18+ toggle row
   Card: muted/dark  |  18+ tag: always has a soft color
   ON state: site-red (#e50914)
   ============================================================ */

.m18p { display: none; }

@media (max-width: 768px) {
    .m18p {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 10px 14px;
        margin-bottom: 18px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
    }
}

.m18p.on {
    background: rgba(229, 9, 20, 0.08);
    border-color: rgba(229, 9, 20, 0.28);
}

/* ── Left ── */
.m18p-left { display: flex; align-items: center; gap: 8px; }

/* 18+ badge — always has a dim red color even in OFF state */
.m18p-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f87171;                          /* soft red always visible */
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.22);
    border-radius: 6px;
    padding: 3px 8px;
    transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.m18p.on .m18p-tag {
    color: #fca5a5;
    background: rgba(229, 9, 20, 0.22);
    border-color: rgba(229, 9, 20, 0.45);
}

/* Label — muted */
.m18p-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.22s;
}
.m18p.on .m18p-name { color: rgba(255, 255, 255, 0.72); }

/* ── Right ── */
.m18p-right { display: flex; align-items: center; gap: 7px; }

.m18p-status {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.22s;
}
.m18p.on .m18p-status { color: #f87171; }

/* Toggle track */
.m18p-sw {
    width: 38px;
    height: 22px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.m18p.on .m18p-sw {
    background: #e50914;
    border-color: transparent;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.45);
}

/* Toggle knob */
.m18p-dot {
    position: absolute;
    top: 2px; left: 2px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s;
}
.m18p.on .m18p-dot {
    transform: translateX(16px);
    background: #fff;
}
