/* ── La Cochera Studio — Custom Cursor ── */

#lcs-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.15s ease;
}

#lcs-cursor.is-visible {
    opacity: 1;
}

.lcs-cursor__inner {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.lcs-cursor__arrow {
    flex-shrink: 0;
}

.lcs-cursor__text {
    font-family: 'DM Sans';
    letter-spacing: 1.4px;
    display: inline-block;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 1.4s cubic-bezier(0.33, 0, 0, 1);
}

[data-cursor-show],
[data-cursor-show] * {
    cursor: none !important;
}

@media (hover: none) and (pointer: coarse) {
    #lcs-cursor { display: none !important; }
    [data-cursor-show],
    [data-cursor-show] * { cursor: auto !important; }
}