.opsim-shipping-progress-container {
    margin-bottom: 15px;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: none;
    transition: all 0.4s ease;
    max-width: 100%;
    overflow: visible;
}
.opsim-shipping-progress-container.is-complete {
    background: #f0fdf4;
    border-color: #dcfce7;
}
.opsim-shipping-progress-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.opsim-shipping-progress-container.is-complete .opsim-shipping-progress-text {
    color: #166534;
}
.opsim-shipping-progress-bar-wrap {
    height: 6px;
    background: #f8fafc;
    border-radius: 100px;
    position: relative;
    margin: 0 10px;
}
.opsim-shipping-progress-bar-fill {
    height: 100%;
    background: var(--opsim-progress-color, #d91b5c);
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.opsim-shipping-progress-container.is-complete .opsim-shipping-progress-bar-fill {
    background: #22c55e;
}
.opsim-shipping-progress-stripes {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 75%, 
        transparent
    );
    background-size: 12px 12px;
    animation: opsim-progress-stripes-move 2s linear infinite;
    border-radius: 100px;
}
@keyframes opsim-progress-stripes-move {
    from { background-position: 0 0; }
    to { background-position: 24px 0; }
}
.opsim-shipping-car-icon {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--opsim-progress-color, #d91b5c);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 2;
}
.opsim-shipping-progress-container.is-complete .opsim-shipping-car-icon {
    background: #22c55e;
}
.opsim-shipping-car-icon svg {
    width: 12px;
    height: 12px;
}
.opsim-shipping-remaining-amount {
    color: var(--opsim-progress-color, #d91b5c);
    font-weight: 900;
}
.opsim-shipping-progress-container.is-complete .opsim-shipping-remaining-amount {
    color: #15803d;
}
@media (max-width: 768px) {
    .opsim-shipping-progress-container {
        padding: 12px;
    }
    .opsim-shipping-progress-text {
        font-size: 13px;
    }
}
