.loader-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
}

.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a64f6, #a96ddf, #c77fcd);
    animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.85); opacity: 0.8; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.8; }
}

.toast-success {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: #4CAF50;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    z-index: 1000000 !important;
    opacity: 0;
    display: none;
    transition: opacity 0.35s ease;
}

/* фикс для prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
}
