/* ---------- DEV SITE BADGE ---------- */
.dev-mode::before {
    content: "DEV SITE";
    position: fixed;
    top: 20px;
    left: 20px;
    /* left: 50%; */
    /* move to horizontal midpoint */
    /* transform: translateX(-50%); */
    /* pull back by half its own width */
    z-index: 9999;
    background: #b43a00;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
    opacity: 0.9;
    pointer-events: none;
    /* so it doesn’t block clicks */
}