/* Checkout Success Overlay */
.ammp-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.ammp-overlay-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.ammp-overlay-content {
  position: relative;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: ammpSlideUp 0.4s ease;
}
@keyframes ammpSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ammp-overlay-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.ammp-overlay-close:hover { color: #fff; }
.ammp-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.ammp-overlay-content h2 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 1.5rem;
}
.ammp-overlay-content > p {
  color: #aaa;
  margin-bottom: 32px;
}

/* Steps */
.ammp-success-steps {
  text-align: left;
  margin-bottom: 32px;
}
.ammp-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ammp-step:last-child { border-bottom: none; }
.ammp-step-num {
  width: 32px; height: 32px;
  background: rgba(0,212,255,0.15);
  color: #00d4ff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ammp-step strong { color: #fff; display: block; margin-bottom: 4px; }
.ammp-step p { color: #888; margin: 0; font-size: 0.9rem; }

/* Actions */
.ammp-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ammp-success-actions .ammp-btn-primary {
  background: #00d4ff;
  color: #0d0d1a !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none !important;
}
.ammp-success-actions .ammp-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e0e0e0 !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none !important;
}

@media (max-width: 500px) {
  .ammp-overlay-content { padding: 32px 24px; }
  .ammp-success-actions { flex-direction: column; }
}
