/* Custom cursor — desktop only (html.lw-cursor-active set by cursor.js) */
html.lw-cursor-active,
html.lw-cursor-active * {
    cursor: none !important;
}

.lw-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    background-color: #db0027;
    border: 2px solid transparent;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    box-sizing: border-box;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.15s ease;
}

.lw-cursor--visible {
    opacity: 1;
}

.lw-cursor--hover {
    width: 36px;
    height: 36px;
    background-color: #fffc00;
    border-color: #db0027;
}
