#omw-atc-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    background: #111827;
    color: #fff;
    font-family: 'Cairo', Arial, Tahoma, sans-serif;
    padding: 10px 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.35);
}
#omw-atc-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
#omw-atc-bar-text {
    font-size: 14px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#omw-atc-bar-progress-wrap {
    position: relative;
    flex: 0 0 180px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}
#omw-atc-bar-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #10b981;
    transition: width 0.3s ease;
}
#omw-atc-bar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fbbf24;
    flex: 0 0 auto;
    animation: omw-pulse 1s infinite alternate;
}
@keyframes omw-pulse {
    from { transform: scale(0.9); opacity: 0.6; }
    to { transform: scale(1.2); opacity: 1; }
}
#omw-atc-bar.omw-success #omw-atc-bar-progress { background: #22c55e; }
#omw-atc-bar.omw-success #omw-atc-bar-dot { background: #22c55e; animation: none; }
#omw-atc-bar-close {
    cursor: pointer;
    margin-inline-start: 10px;
    font-size: 16px;
    opacity: 0.8;
    color: #fff;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
}
#omw-atc-bar-close:hover { opacity: 1; }
#mwi-ajax-toast {
    position: fixed;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    z-index: 99999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    font-family: 'Cairo', Arial, Tahoma, sans-serif;
}
@media (max-width: 600px) {
    #omw-atc-bar-inner { flex-direction: row; gap: 8px; }
    #omw-atc-bar-text { font-size: 13px; }
    #omw-atc-bar-progress-wrap { flex-basis: 120px; }
}
