/* Blouso — guided journey bar (additive; uses theme tokens from style.css) */
.blouso-flow-spacer {
    margin: 0 0 8px 0;
}
body.blouso-flow-journey .blouso-flow-hint,
.blouso-flow-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary, #aaa);
    padding: 6px 4px 10px 4px;
    max-width: 100%;
}
.blouso-flow-hint__ic { flex-shrink: 0; }
.blouso-flow-hint__txt { color: var(--text, #eee); font-weight: 500; }
.blouso-flow-hint--accent .blouso-flow-hint__txt { color: var(--gold, #f5c842); }

.blouso-flow-progress-host {
    position: sticky;
    top: 80px;
    z-index: 900;
    margin: 0 0 12px 0;
    background: var(--panel, #141414);
    border: 1px solid var(--border-light, #333);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.blouso-flow-rail {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0 4px 0;
}
.blouso-flow-rail::-webkit-scrollbar { display: none; }
.blouso-flow-rail__step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-muted, #666);
    padding: 4px 8px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    max-width: 100%;
    cursor: default;
    user-select: none;
}
a.blouso-flow-rail__step { cursor: pointer; }
a.blouso-flow-rail__step:hover { color: var(--gold, #f5c842); }
.blouso-flow-rail__step--current {
    color: var(--bg, #013220);
    background: linear-gradient(135deg, var(--gold, #fab), var(--gold-dark, #c9a227));
    box-shadow: 0 0 0 1px rgba(250, 190, 35, 0.35);
}
.blouso-flow-rail__step--done { color: var(--success, #22c55e); }
.blouso-flow-rail__step--dim { opacity: 0.45; }
.blouso-flow-rail__tick { font-size: 0.75em; }
.blouso-flow-rail__sep {
    color: var(--text-muted, #666);
    font-size: 0.65rem;
    opacity: 0.6;
    margin: 0 2px;
    flex-shrink: 0;
}

/* Toast hint */
.blouso-flow-toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    bottom: 100px;
    z-index: 1200;
    max-width: min(480px, 92vw);
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--panel, #1a1a1a);
    border: 1px solid var(--border-light, #333);
    color: var(--text, #fff);
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    text-align: center;
    pointer-events: none;
    animation: blousoFlowToastIn 0.2s ease;
}
@media (min-width: 768px) {
    .blouso-flow-toast { bottom: 32px; }
}
@keyframes blousoFlowToastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* Builder: pulse section when resuming (class toggled from flow-guide) */
.builder-section.blouso-flow-pulse,
.blouso-flow-pulse { animation: blousoFlowSectionPulse 0.35s ease; }
@keyframes blousoFlowSectionPulse {
    0% { box-shadow: 0 0 0 0 rgba(250, 190, 35, 0.35); }
    100% { box-shadow: 0 0 0 8px rgba(250, 190, 35, 0); }
}

/* Button ripple (lightweight) */
.blouso-flow-ripple { position: relative; overflow: hidden; }
.blouso-flow-ripple::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s, transform 0.35s;
    pointer-events: none;
}
.blouso-flow-ripple:active::after {
    opacity: 1;
    transform: scale(1.2);
    transition: 0s;
}

/* Checkout confidence strip */
.blouso-checkout-confidence {
    margin: 0 0 20px 0;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-light, #333);
    background: rgba(250, 190, 35, 0.06);
}
.blouso-checkout-confidence h4 {
    font-size: 1rem;
    color: var(--gold, #fab);
    margin: 0 0 8px 0;
    font-weight: 600;
}
.blouso-checkout-confidence ul { margin: 0; padding-left: 1.1em; font-size: 0.88rem; color: var(--text-secondary, #aaa); }
.blouso-checkout-confidence li { margin: 4px 0; }
