.wc-free-shipping-progress {
    margin: 20px 0;
    padding: 15px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wc-free-shipping-progress__message {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
}

.wc-free-shipping-progress__bar-container {
    height: 15px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.wc-free-shipping-progress__bar {
    height: 100%;
    transition: width 0.5s ease;
}

.wc-free-shipping-progress__bar--low {
    background-color: #ff7675;
}

.wc-free-shipping-progress__bar--medium {
    background-color: #fdcb6e;
}

.wc-free-shipping-progress__bar--high {
    background-color: #74b9ff;
}

.wc-free-shipping-progress__bar--complete {
    background-color: #00b894;
}

/* Mini-panier */
.wc-free-shipping-progress--mini_cart {
    margin: 10px 0;
    padding: 10px;
    font-size: 0.9em;
}

.wc-free-shipping-progress--mini_cart .wc-free-shipping-progress__message {
    font-size: 14px;
}

/* Popup */
.wc-free-shipping-progress-popup {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 9999;
    width: 300px;
    padding: 15px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.wc-free-shipping-progress-popup.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.wc-free-shipping-progress-popup.show {
    transform: translateX(0);
}

.wc-free-shipping-progress-popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
}

.wc-free-shipping-progress--popup {
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: none;
    color: #ffffff;
}

.wc-free-shipping-progress--complete .wc-free-shipping-progress__message {
    color: #00b894;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wc-free-shipping-progress-popup {
        width: calc(100% - 40px);
        right: 10px;
        left: 10px;
    }
}