/**
 * Free Shipping Progress Bar (Wiskii Active Style)
 * Progress bar + message for Cart page and mini-cart widget.
 * Enqueued globally (mini-cart appears on any page).
 */

/* ──────────────────────────────────────────────
   Bar Container
   ────────────────────────────────────────────── */
.tpb-free-shipping-bar {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

/* ──────────────────────────────────────────────
   Message Text
   ────────────────────────────────────────────── */
.tpb-fsb-message {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
    margin: 0 0 8px 0;
}

/* ──────────────────────────────────────────────
   Progress Track
   ────────────────────────────────────────────── */
.tpb-fsb-track {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.tpb-fsb-fill {
    height: 100%;
    background: #000;
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* ──────────────────────────────────────────────
   Success State
   ────────────────────────────────────────────── */
.tpb-fsb-success .tpb-fsb-message {
    color: #2e7d32;
}

.tpb-fsb-success .tpb-fsb-fill {
    background: #2e7d32;
}

/* ──────────────────────────────────────────────
   Mobile
   ────────────────────────────────────────────── */
@media (max-width: 767px) {
    .tpb-free-shipping-bar {
        padding: 10px 12px;
    }

    .tpb-fsb-message {
        font-size: 13px;
    }
}
