.toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 380px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-dark-surface, #1e1e1e);
  border: 1px solid var(--border-color, #333);
  color: var(--text-primary, #f0f0f0);
  font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: all;
  animation: toastSlideIn 0.25s ease-out;
  backdrop-filter: blur(12px);
  max-width: 380px;
}

.toast--sale { border-left: 3px solid #4caf50; }
.toast--subscribe { border-left: 3px solid #2196f3; }
.toast--tip { border-left: 3px solid #ff9800; }
.toast--info { border-left: 3px solid var(--accent-pink, #E91E63); }
.toast--error { border-left: 3px solid #f44336; }

.toast__icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.toast--sale .toast__icon { color: #4caf50; }
.toast--subscribe .toast__icon { color: #2196f3; }
.toast--tip .toast__icon { color: #ff9800; }
.toast--info .toast__icon { color: var(--accent-pink, #E91E63); }
.toast--error .toast__icon { color: #f44336; }

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

.toast__title {
  font-weight: 600;
  font-size: 0.78rem;
  margin-bottom: 2px;
  color: var(--text-secondary, #b0b0b0);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.toast__message {
  line-height: 1.4;
  word-break: break-word;
}

.toast__close {
  background: none;
  border: none;
  color: var(--text-secondary, #b0b0b0);
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.toast__close:hover { opacity: 1; }

.toast--leaving {
  animation: toastSlideOut 0.2s ease-in forwards;
}

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toastSlideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}
