/* PG Free Shipping Bar - Frontend CSS */

.pgfsb-wrapper {
    margin: 15px 0;
    padding: 15px;
    background: #fafafa;
    border-radius: 4px;
}

.pgfsb-message {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.pgfsb-bar-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pgfsb-bar-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: width 0.5s ease-in-out;
    min-width: 0;
}

.pgfsb-percentage {
    white-space: nowrap;
    padding: 0 5px;
}

/* Animation keyframe (l'activation est gérée dynamiquement via PHP) */
@keyframes pgfsb-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

/* Success state */
.pgfsb-wrapper.pgfsb-success .pgfsb-message {
    color: #388e3c;
    font-weight: 600;
}

/* Mini-cart specific */
.widget_shopping_cart .pgfsb-wrapper {
    margin: 10px 0;
    padding: 10px;
}

.widget_shopping_cart .pgfsb-message {
    font-size: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .pgfsb-wrapper {
        padding: 10px;
    }
    
    .pgfsb-message {
        font-size: 13px;
    }
    
    .pgfsb-bar-progress {
        font-size: 11px;
    }
}
