.mente-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 99999;
    pointer-events: none;
}

.mente-scroll-progress__bar {
    position: relative;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4C5D51, #79503B, #A07057);
    transition: width 0.08s linear;
}

.mente-scroll-progress__label {
    position: absolute;
    right: -18px;
    top: 5px;
    min-width: 36px;
    padding: 2px 5px;
    background: #543627;
    color: #fff;
    font-family: "Instrument Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.mente-scroll-progress__label.is-visible {
    opacity: 1;
}
