/* Free Shipping Progress Bar */
.i5_freeshipbar-wrap {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-family: inherit;
}

.i5_freeshipbar-message {
    font-size: 14px;
    color: #495057;
    margin-bottom: 10px;
    font-weight: 500;
}

.i5_freeshipbar-message.i5_freeshipbar-success {
    color: #28a745;
    font-weight: 600;
}

.i5_freeshipbar-icon {
    margin-right: 6px;
}

.i5_freeshipbar-track {
    background: #dee2e6;
    border-radius: 50px;
    height: 20px;
    overflow: hidden;
}

.i5_freeshipbar-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #eb3333, #ffc107);
    transition: width 0.5s ease;
    min-width: 4px;
}

.i5_freeshipbar-fill--complete {
    background: linear-gradient(90deg, #28a745, #20c997);
}

/* Skeleton loader while updating */
.i5_freeshipbar-wrap.i5_freeshipbar-loading .i5_freeshipbar-track {
    background: linear-gradient(90deg, #dee2e6 25%, #ced4da 50%, #dee2e6 75%);
    background-size: 200% 100%;
    animation: i5_freeshipbar-shimmer 1.2s infinite;
}

@keyframes i5_freeshipbar-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
