/* ===== Locked Menu Items ===== */
a.locked {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: auto !important;
}

a.locked .icon-wrap {
    position: relative;
    display: inline-block;
}

a.locked .icon-wrap .lock-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    font-size: 8px;
    color: #c0392b;
    background: transparent;
}

/* ===== Toast ===== */
#s_toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #2d2d2d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-family: Vazirmatn, sans-serif;
    direction: rtl;
    white-space: nowrap;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    border-right: 4px solid #c0392b;
}

#s_toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
