.shipping-goal-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #EFEFEF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #00335B;
    font-size: 12px;
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* Bloc de gauche */
.shipping-goal-banner .first-shipping-goal {
    flex-basis: 60%;
    max-width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Texte en gras */
.shipping-goal-banner span.shipping-goal-bold,
.shipping-goal-banner div.shipping-goal-bold {
    font-weight: 600;
}

/* Barre de progression */
.shipping-goal-loader {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    border: 1px solid #00335B;
    position: relative;
    margin: 3px auto 0;
    overflow: hidden;
    background: #fff;
}

.shipping-goal-progress {
    background: #00335B;
    height: 100%;
    border-radius: inherit;
    transition: width 0.6s ease;
}

.shipping-goal-success{
    text-align: center;
}

/* Petit vélo dynamique */
.little-bike {
    position: absolute;
    top: -20px; 
    width: 18px;
    height: 18px;
    background-size: contain;
    transition: left 0.6s ease;
    z-index: 10;
}

@keyframes pedalBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.little-bike {
    animation: pedalBounce 1.2s infinite ease-in-out;
}

.little-bike::before {
    content: "🚲";
    font-size: 20px;
    display: inline-block;
}

@media (max-width: 1290px) {  
    .little-bike{
        /* display: none; */
    }  
}

@media (max-width: 600px){
    #shipping-goal-banner{
        flex-wrap: wrap;
        gap:10px;
    }
    .shipping-goal-banner .first-shipping-goal{
        max-width: 100%;
        flex-basis: 100%;
    }
}
