.free-shipping-progress {
    margin: 15px 0;
    font-size: 14px;
    text-align: center;
}
.free-shipping-message {
    margin-bottom: 8px;
    font-weight: 500;
}
.progress-bar {
    background: #eee;
    border-radius: 20px;
    height: 12px;
    width: 100%;
    overflow: hidden;
}
.progress-bar span {
    display: block;
    height: 100%;
/*     background: linear-gradient(90deg, #4caf50, #8bc34a); */
    background: #1F310E;

	border-radius: 20px;
    transition: width 0.4s ease-in-out;
}


/* Free Shipping Modal */
.free-shipping-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
}
.free-shipping-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.free-shipping-modal-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
}
.free-shipping-modal-content p {
    margin-bottom: 20px;
    font-size: 16px;
}
.free-shipping-modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.free-shipping-modal .button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    background: #4caf50 !important;
    color: #fff !important;
    font-weight: 600;
    transition: background 0.3s;
}
.free-shipping-modal .button:hover {
    background: #388e3c !important;
}
.free-shipping-modal .continue-shopping {
    background: #777 !important;
}
.free-shipping-modal .continue-shopping:hover {
    background: #555 !important;
}
.free-shipping-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}
