/* npbonusinfo — компактные прогресс-бары (мини-корзина + мобилка) */

.npbi-compact {
    box-sizing: border-box;
    width: 100%;
    line-height: 1.35;
}
.npbi-compact .npbi-c-text {
    font-size: 12.5px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.npbi-compact .npbi-c-bar {
    position: relative;
    height: 6px;
    border-radius: 3px;
}
.npbi-compact .npbi-c-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    max-width: 100%;
    border-radius: 3px;
    transition: width .3s ease;
}
/* кекс на конце зелёной полосы — визуальный акцент (едет вместе с заливкой) */
.npbi-compact .npbi-c-fill::after {
    content: "\1F9C1"; /* 🧁 */
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 2;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .2));
}
.npbi-compact .npbi-c-mark {
    position: absolute;
    top: -2px;
    width: 2px;
    height: 10px;
    margin-left: -1px;
}

/* в мини-корзине (светлый фон) */
.npbi-mini {
    margin: 10px 0 12px;
    padding: 10px 12px;
    border: 1px solid #cde9d7;
    border-radius: 8px;
    background: #f2faf5;
    color: #1a1a1a;
}
.npbi-mini .npbi-c-text { white-space: normal; }
.npbi-mini .npbi-c-bar { background: #dfe9e2; }
.npbi-mini .npbi-c-fill { background: #3aa06b; }
.npbi-mini .npbi-c-mark { background: #ffffff; box-shadow: 0 0 0 1px #b7d8c4; }
.npbi-mini .npbi-c-mark.npbi-c-reached { background: #2f7d51; }

/* десктоп: бар в нижней плавающей панели .f-panel (между иконками и корзиной) */
.npbi-fpanel {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 620px;
    margin: 0 32px;
    color: #1a1a1a;
}
.npbi-fpanel .npbi-c-text {
    font-size: 12.5px;
    margin-bottom: 5px;
    text-align: center;
}
.npbi-fpanel .npbi-c-bar { background: #dfe9e2; }
.npbi-fpanel .npbi-c-fill { background: #3aa06b; }
.npbi-fpanel .npbi-c-mark { background: #ecf2fb; box-shadow: 0 0 0 1px #b7d8c4; }
.npbi-fpanel .npbi-c-mark.npbi-c-reached { background: #2f7d51; }

/* мобилка: фикс-бар над нижней панелью навигации (.footerPanel z-index:1000) */
.npbi-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0; /* JS выставляет реальную высоту нижней панели */
    z-index: 999;
    box-sizing: border-box;
    padding: 8px 14px 9px;
    background: #f2faf5;
    border-top: 1px solid #cde9d7;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
    color: #1a1a1a;
}
.npbi-mobile .npbi-c-text {
    white-space: normal;
    font-size: 12.5px;
    margin-bottom: 6px;
}
.npbi-mobile .npbi-c-bar { background: #dfe9e2; height: 6px; }
.npbi-mobile .npbi-c-fill { background: #3aa06b; }
.npbi-mobile .npbi-c-mark { background: #ffffff; box-shadow: 0 0 0 1px #b7d8c4; }
.npbi-mobile .npbi-c-mark.npbi-c-reached { background: #2f7d51; }
