/* Free Shipping Progress Bar CSS */
.ft-free-shipping-progress-bar {
    margin-bottom: 30px;
    padding: 0 15px;
}
.ft-free-shipping-container {
    background-color: #333333;
    border-radius: 8px;
    padding: 25px 30px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}
.ft-free-shipping-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}
.ft-progress-bar-wrapper {
    margin: 20px 0;
}
.ft-progress-bar {
    width: 100%;
    height: 12px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #cccccc;
    overflow: hidden;
    position: relative;
}
.ft-progress-fill {
    height: 100%;
    background-color: #FF5722;
    border-radius: 6px;
    transition: width 0.3s ease;
    width: 0;
}

.ft-progress-bar.ft-progress-unlocked {
    width: 100%;
}

.ft-progress-bar.ft-progress-unlocked .ft-progress-fill {
    width: 100%;
}
.ft-free-shipping-message {
    color: #cccccc;
    font-size: 14px;
    margin: 15px 0 0 0;
}
.ft-shop-now-link {
    color: #FF5722;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 5px;
}
.ft-shop-now-link:hover {
    color: #ff7a00;
}
@media (max-width: 768px) {
    .ft-free-shipping-container {
        padding: 20px 15px;
    }
    .ft-free-shipping-heading {
        font-size: 16px;
    }
    .ft-free-shipping-message {
        font-size: 13px;
    }
}

