/* ============================
   Premium Toast Container
   ============================ */

.amorisito-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 420px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  overflow: hidden;
  animation: toast-slide-in 0.35s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

/* Slide animation */
@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Header
   ============================ */

.toast-header {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(90deg, #fff8e1, #ffffff);
  border-bottom: 1px solid #f0f0f0;
}

.toast-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ============================
   Premium badge
   ============================ */

.premium-badge {
  font-size: 12px;
  font-weight: 700;
  color: #8a6d00;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  padding: 3px 8px;
  border-radius: 999px;
  animation: premium-glow 2.5s infinite;
}

@keyframes premium-glow {
  0% {
    box-shadow: 0 0 0 rgba(255, 215, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.85);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 215, 0, 0.6);
  }
}

/* ============================
   Close button
   ============================ */

.toast-close-btn {
  margin-left: auto;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.toast-close-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
}

/* ============================
   Body
   ============================ */

.toast-body {
  padding: 14px;
}

.toast-message {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ============================
   Actions
   ============================ */

.toast-actions {
  text-align: right;
}

.premium-upgrade-btn {
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 14px;
  box-shadow: 0 2px 6px rgba(255, 193, 7, 0.4);
}

/* ============================
   Mobile
   ============================ */

@media (max-width: 576px) {
  .amorisito-toast {
    right: 12px;
    left: 12px;
    width: auto;
  }
}
