/**
 * Free Shipping Progress Bar Module
 */

.free-shipping-progress-container {
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    background-color: #f8f8f8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.free-shipping-progress-message {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease; /* Aggiunta transizione per cambio colore fluido */
}

.free-shipping-progress-bar-outer {
    height: 10px;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.free-shipping-progress-bar-inner {
    height: 100%;
    width: 0;
    border-radius: 5px;
    background-color: #2fb5d2;
    transition: width 0.5s ease-in-out;
}

/* Popup styling */
.free-shipping-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.free-shipping-popup.active {
    transform: translateY(0);
    opacity: 1;
}

.free-shipping-popup-close {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
}

.free-shipping-popup-close:hover {
    color: #333;
}

/* Responsive styles */
@media (max-width: 767px) {
    .free-shipping-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .free-shipping-progress-container {
        padding: 10px;
        margin: 10px 0;
    }
    
    .free-shipping-progress-message {
        font-size: 13px;
    }
}