/* =========================================
   Free shipping progress notice — Fokus
   Učitava se na košarici (cart.css ovisnost) i naplati (checkout.css ovisnost).
   ========================================= */

.fokus-fs-notice {
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border, #E6E6E6);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text, #1a1a1a);
}

.fokus-fs-notice__text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}

.fokus-fs-notice__text strong {
    font-weight: 700;
    color: var(--color-accent, #D65A5A);
}

.fokus-fs-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22a06b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Progress bar */
.fokus-fs-notice__bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: #f1f1f1;
    border-radius: 999px;
    overflow: hidden;
}

.fokus-fs-notice__fill {
    height: 100%;
    background: linear-gradient(90deg,
        var(--color-accent, #D65A5A) 0%,
        #e87a7a 100%);
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pending state — naglasak na "još do besplatne dostave" porukama */
.fokus-fs-notice--pending {
    background: #fffaf7;
    border-color: #f5d5b8;
}

/* Achieved state — zeleni success */
.fokus-fs-notice--achieved {
    background: #f0fbf6;
    border-color: #b8e5cc;
    color: #1a6d3e;
}

.fokus-fs-notice--achieved .fokus-fs-notice__fill {
    background: linear-gradient(90deg, #22a06b 0%, #2cba7f 100%);
}

.fokus-fs-notice--achieved .fokus-fs-notice__text {
    margin-bottom: 6px;          /* manje razmaka jer je bar punih 100% i samo dekorativan */
}

/* Mobile finess */
@media (max-width: 600px) {
    .fokus-fs-notice {
        padding: 12px 14px;
        font-size: 13.5px;
    }
}

/* "(besplatno)" suffix uz shipping label kad je cost 0 */
.fokus-shipping-free {
    display: inline-block;
    margin-left: 4px;
    color: #22a06b;
    font-weight: 600;
    font-size: 0.95em;
}
