.free-shipping-progress-container {
    padding: 12px;
    background: #f5f5f5;
}

/* Specific styles for QuickCart */
.quickcart-content-wrapper .free-shipping-progress-container {
    margin: 0;
    padding: 12px;
    background: #f5f5f5;
}

.progress-wrapper {
    width: 100%;
}

.progress-message.qualified {
    color: #4caf50;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.progress-bar-wrapper {
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 26px;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #4caf50;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 30px 30px;
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.progress-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    z-index: 10;
    line-height: 1;
}

/* QuickCart specific styles */
.quickcart-content-wrapper .free-shipping-progress-container {
    margin: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .free-shipping-progress-container {
        margin: 8px 0;
        padding: 10px;
    }
    
    .progress-message {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .progress-message.qualified {
        font-size: 15px;
    }
    
    .progress-bar {
        height: 24px;
    }
    
    .progress-bar-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .free-shipping-progress-container {
        margin: 6px 0;
        padding: 8px;
    }
    
    .progress-message.qualified {
        font-size: 13px;
    }
    
    .progress-bar {
        height: 22px;
    }
    
    .progress-bar-text {
        font-size: 11px;
    }
}