/* WC Free Shipping Bar — style.css */

.wcfsb-bar {
    width: 100%;
    z-index: 99999;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    transition: opacity .3s ease;
}

.wcfsb-bar.wcfsb-position-top {
    position: fixed;
    top: 0;
    left: 0;
}

.wcfsb-bar.wcfsb-position-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
}

.wcfsb-bar.wcfsb-position-woo_notices {
    position: static;
    margin-bottom: 16px;
}

.wcfsb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.wcfsb-message {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.wcfsb-message strong {
    font-weight: 700;
}

/* Track (sfondo) */
.wcfsb-track {
    width: 100%;
    height: 8px;
    border-radius: 99px;
    overflow: hidden;
}

/* Fill (progresso) */
.wcfsb-fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* Stato raggiunto */
.wcfsb-bar.wcfsb--reached .wcfsb-fill {
    width: 100% !important;
}

/* Body padding quando fixed top/bottom */
body.wcfsb-has-top-bar {
    padding-top: 56px !important;
}

body.wcfsb-has-bottom-bar {
    padding-bottom: 56px !important;
}

/* Scheletro nascosto prima del JS */
.wcfsb-bar {
    opacity: 0;
}
.wcfsb-bar.wcfsb--ready {
    opacity: 1;
}
