/* Container for the free shipping progress bar */
.free-shipping-progress {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
 /*   border: 1px solid #ddd; */
    text-align: center;
    border-radius: 8px;
  /*  box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
}

/* Wrapper for the progress bar itself */
.progress-bar-wrapper {
    width: 100%;
    background: #f1f1f1;
    border-radius: 50px;
    overflow: hidden;
    height: 8px;
    margin-bottom: 15px;
}

/* Actual progress indicator (green linear gradient) */
.progress-bar {
    height: 100%;
   /*background: linear-gradient(90deg, #2ecc71, #27ae60); */
    background: linear-gradient(90deg, #FFD600, #D4AF37);
    width: 0; /* Will be updated via JavaScript */
    transition: width 0.5s ease-in-out;
    border-radius: 50px 0 0 50px;
}

/* Progress text styling */
.progress-text {
   /* font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    */
    color: #333333;  /* Dark gray for excellent readability */
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    
}
.shipping-progress-section-cls{
    align-items: center;
    gap: 10px;
    display: flex;
    margin-bottom: 20px;
}