.top-bar-g3 {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    height:30px;
}
.top-bar-g3 .left-price, .top-bar-g3 .right-price {
    font-size:12px;
    font-weight:600;
    color:#222;
    width:100px;
}
.free-shipping-progress {
    margin-top: 30px;
    text-align: center;
    position:relative;
    padding: 30px 0 10px 0;
    background: #f7f7f7;
}
.progress-bar {
    position:relative;
    background: #e0e0e0;
    border-radius: 30px;
    width:100%;
    max-width:100%;
}
.progress-fill {
    background: #222;
    height: 100%;
    width: 0;
    transition: width 0.4s ease;
    height:10px;
    overflow:hidden;
    border-radius: 30px;
    max-width:100%;
}
.progress-icon {
    position: absolute;
    top: 5px;
    left: 0;
    transform: translateY(-50%);
    transition: left 0.4s ease;
    font-size: 12px;
    color: #fff;
    background:#222;
    border-radius:50%;
    width:30px;
    height:30px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.progress-icon svg {
    max-width:18px;
}
.info-bar-text-shipping p {
    font-size:12px;
    margin-top:10px;
    color:#222;
}

/* --- Delivery Time for product list --- */
.product-delivery-time {
    display: flex;
    align-items: center;
    font-size:11px;
    letter-spacing:1px;
    font-weight:400;
    color:#222;
    text-transform:uppercase;
}
.product-delivery-time i {
    margin-left: 6px;
    color:#222;
    font-size:14px;
}

@media(max-width:600px) {
    .progress-icon {
        margin-left:-10px;
    }
    .free-shipping-progress {
        margin-top: 30px;
        text-align: center;
        position: relative;
        padding: 30px 20px 10px 20px;
        background: #f7f7f7;
        margin-left: -20px;
        margin-right: -20px;
    }
}