/* ==========================================================================
   20. Custom Premium Success Notification Toast
   ========================================================================== */
.custom-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--bg-surface);
  background-image: 
    linear-gradient(rgba(197, 168, 128, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 168, 128, 0.015) 1px, transparent 1px);
  background-size: 15px 15px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-top: 3px solid transparent;
  border-image: var(--gold-gradient) 1;
  padding: 20px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 168, 128, 0.05);
  z-index: 10000000;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  transform: translateY(100px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.custom-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--gold-glow);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toast-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-highlight);
  letter-spacing: 0.5px;
  margin: 0;
}

.toast-message {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
