.free-shipping-bar {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    height: 20px;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #e61930;
    transition: width 0.4s ease-in-out;
}

.free-shipping-message {
    font-size: 16px;
    color: #333;
}