/* TuttoCapsule free-shipping progress bar.
 * Extracted from "Code Snippets" snippet #18.
 *
 * Loaded globally so the bar styles do not flash unstyled when the
 * cart is empty (the PHP renderer skips empty carts).
 */

.free-shipping-notice-wrapper {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #fff;
    border: 2px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.free-shipping-testo {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.free-shipping-progress-bg {
    background: #eee;
    border-radius: 20px;
    height: 14px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.free-shipping-progress-bar {
    height: 100%;
    transition: width 0.6s ease-in-out, background-color 0.6s ease;
    border-radius: 20px;
}

.free-shipping-notice-wrapper.is-minicart-version {
    margin: 10px 0 15px 0;
    padding: 10px;
    border-width: 1px;
    width: 100%;
    box-sizing: border-box;
}

.free-shipping-notice-wrapper.is-minicart-version .free-shipping-testo {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.free-shipping-notice-wrapper.is-minicart-version .free-shipping-progress-bg {
    height: 10px;
}
