/* ── Free Shipping Bar ── */
.fsb-wrap {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Mensaje principal */
.fsb-msg {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #6d6070;
    margin: 0 0 10px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.fsb-msg strong {
    color: #342345;
    font-weight: 600;
}

/* Icono camión */
.fsb-truck {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: #8a6f9a;
}

/* Barra de progreso */
.fsb-track {
    background: #e4dbee;
    border-radius: 99px;
    height: 8px;
    overflow: hidden;
}

.fsb-fill {
    height: 8px;
    border-radius: 99px;
    background: #342345;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mensaje de éxito */
.fsb-success {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #342345;
    background: #e4dbee;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.fsb-success svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
