.tour-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 0;
    pointer-events: none;
    z-index: 2147483000;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.75);
    border: 2px solid #ffffff;
    will-change: transform, opacity;
}

.tour-popover {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, calc(100vw - 16px));
    background: #f5f1e8;
    color: #111111;
    border-radius: 0;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.28);
    padding: 14px 14px 12px;
    z-index: 2147483001;
    will-change: transform, opacity;
}

.tour-popover::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: #da242a;
    margin-bottom: 10px;
}

.tour-popover__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.tour-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 12px;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 0;
    border: 2px solid transparent;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: inherit;
}

.tour-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.tour-btn--ghost {
    border-color: #111111;
    color: #111111;
    background: #ffffff;
}

.tour-btn--primary {
    background: #da242a;
    color: #ffffff;
    border-color: #da242a;
}

.tour-btn:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .tour-popover {
        width: min(300px, calc(100vw - 12px));
        padding: 12px;
    }
}
