.bsaf-shipping-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.bsaf-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
}

.bsaf-badge-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.bsaf-badge-low {
    background: #fff3e0;
    color: #e65100;
}

.bsaf-badge-out {
    background: #ffebee;
    color: #c62828;
}

.bsaf-badge-fast {
    background: #e3f2fd;
    color: #1565c0;
}

.bsaf-delivery-estimate {
    background: #f8f7f5;
    border: 1px solid #e8e4df;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 12px 0;
}

.bsaf-delivery-text {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: #151515;
}

.bsaf-cutoff-notice {
    margin: 0;
    font-size: 0.8rem;
    color: #1565c0;
}

/* Free Shipping Progress Bar */
.bsaf-free-shipping-bar {
    background: #ffffff;
    border: 1px solid #e8e4df;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.bsaf-ship-msg {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #151515;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bsaf-ship-success {
    color: #2e7d32;
}

.bsaf-progress-track {
    height: 8px;
    background: #e8e4df;
    border-radius: 4px;
    overflow: hidden;
}

.bsaf-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a5276, #2e86c1);
    border-radius: 4px;
    transition: width 0.4s ease;
}
