/*
 * IW — Global Toast.
 *
 * Port từ /public/frontend-2025/ui-register/frontend/src/styles/components/child-component/_toast.scss
 * Namespace `iw-toast` để tránh xung đột Flatsome / theme khác.
 *
 * Position: bottom-right (bottom 50, right 30). Stack newest-on-top
 * (insertBefore firstChild ở JS) — ngăn cách bằng margin-top 14px.
 */

@keyframes iwToastSlideIn {
  0%   { opacity: 0; transform: translateX(calc(100% + 32px)); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes iwToastFadeOut {
  to { opacity: 0; }
}

.iw-toast-container {
  position: fixed;
  top: 50px;
  right: 30px;
  z-index: 999999; /* > modal overlay 99999 */
  pointer-events: none;
}

.iw-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  min-width: 300px;
  max-width: 350px;
  padding: 15px 0;
  border-radius: 5px;
  border-left: 4px solid;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
  transition: all linear 0.3s;
  font-family: inherit;
}

/* Stack ngăn bằng margin-top 14 — newest-on-top thì khoảng cách add với toast trước nó. */
.iw-toast + .iw-toast { margin-top: 14px; }

/* Variants — border-left + icon color theo type. */
.iw-toast--success { border-color: #47d864; }
.iw-toast--success .iw-toast__icon  { color: #47d864; }
.iw-toast--success .iw-toast__close { color: rgba(71, 216, 100, 0.5); }

.iw-toast--info    { border-color: #2f86eb; }
.iw-toast--info .iw-toast__icon  { color: #2f86eb; }
.iw-toast--info .iw-toast__close { color: rgba(47, 135, 235, 0.5); }

.iw-toast--warning { border-color: #ffc021; }
.iw-toast--warning .iw-toast__icon  { color: #ffc021; }
.iw-toast--warning .iw-toast__close { color: rgba(255, 192, 33, 0.5); }

.iw-toast--error   { border-color: #ff623d; }
.iw-toast--error .iw-toast__icon  { color: #ff623d; }
.iw-toast--error .iw-toast__close { color: rgba(255, 97, 61, 0.5); }

.iw-toast__icon,
.iw-toast__close {
  padding: 0 16px;
}

.iw-toast__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.iw-toast__body {
  flex-grow: 1;
  min-width: 0;
}

.iw-toast__title {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #eaeaea;
}

.iw-toast__msg {
  margin: 6px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

.iw-toast__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: none;
  margin: 0;
  padding: 0 16px;
}

.iw-toast__close svg { display: block; }

@media (max-width: 575px) {
  .iw-toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .iw-toast {
    min-width: 0;
    max-width: none;
  }
}
