/* ============================================================
   CHUDO TELECOM — SUPER NEON TOASTS (v2 — double saturation)
   ============================================================ */

.cw-toast-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none;
}

/* Базовый тост */
.cw-toast {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 26px;
    min-width: 260px;
    max-width: 420px;

    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;

    backdrop-filter: blur(14px);

    opacity: 0;
    transform: translateY(18px);
    transition: opacity .32s ease, transform .32s cubic-bezier(.22, .55, .32, 1);

    pointer-events: auto;
}

.cw-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Круглая точка слева */
.cw-toast__icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}


/* ===========================================================
   SUPER SATURATED THEMES (DOUBLE POWER MODE)
   =========================================================== */

/* DEFAULT — яркий голубой */
.cw-toast--default {
    background: rgba(59, 130, 246, 0.80);
    box-shadow: 0 0 28px rgba(59, 130, 246, 0.70);
}
.cw-toast--default .cw-toast__icon {
    background: #bfdbfe;
}

/* SUCCESS — мощная зелёная капсула */
.cw-toast--success {
    background: rgba(16, 185, 129, 0.80);
    box-shadow: 0 0 28px rgba(16, 185, 129, 0.70);
}
.cw-toast--success .cw-toast__icon {
    background: #bbf7d0;
}

/* ERROR — насыщенный красный */
.cw-toast--error,
.cw-toast--danger {
    background: rgba(239, 68, 68, 0.80);
    box-shadow: 0 0 28px rgba(239, 68, 68, 0.70);
}
.cw-toast--error .cw-toast__icon,
.cw-toast--danger .cw-toast__icon {
    background: #fecaca;
}

/* WARNING — яркий оранжево-жёлтый */
.cw-toast--warning {
    background: rgba(245, 158, 11, 0.80);
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.70);
}
.cw-toast--warning .cw-toast__icon {
    background: #fde68a;
}

/* ===========================================================
   Адаптив
   =========================================================== */

@media (max-width: 600px) {
    .cw-toast-container {
        right: 10px;
        left: 10px;
        bottom: 10px;
    }

    .cw-toast {
        min-width: auto;
        max-width: 100%;
    }
}
