/* ── Διαδραστικός Οδηγός Χρήσης ─────────────────────────────────────────── */

#tourBackdrop {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: transparent;
}

#tourHighlight {
    position: fixed;
    z-index: 3001;
    pointer-events: none;
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 0 9999px rgba(15, 23, 42, .6);
    transition: top .25s ease, left .25s ease, width .25s ease, height .25s ease;
}

#tourCard {
    position: fixed;
    z-index: 3002;
    width: min(320px, calc(100vw - 24px));
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 16px;
    transition: top .25s ease, left .25s ease;
}

#tourCardTitle {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text);
}

#tourCardText {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 14px;
}

#tourCardFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

#tourCardStep {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

#tourCardBtns {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.tour-btn {
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.tour-btn-primary {
    background: var(--primary);
    color: #fff;
}

.tour-btn-primary:hover { filter: brightness(1.08); }

.tour-btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.tour-btn-ghost:hover { color: var(--text); }

body.tour-active { overflow: hidden; }
