/* ============================================================
   Hairpot Salon — SweetAlert2 theme
   Every alert is a centered, branded modal (logo + name, icon,
   title, message) styled to match the navy + teal design system.
   ============================================================ */

.suite-popup {
  border-radius: 20px !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  padding: 30px 26px 28px !important;
  box-shadow: 0 30px 70px rgba(15,28,42,0.28) !important;
}
.suite-popup .swal2-timer-progress-bar {
  background: linear-gradient(90deg, #5BC4C9, #2E4A60) !important;
}
.suite-popup .swal2-html-container {
  margin: 0 !important;
}

/* Branded header: logo mark + business name */
.suite-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
}
.suite-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #5BC4C9, #2E4A60);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(91,196,201,0.35);
}
.suite-brand-name {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A2D3D;
}
.suite-divider {
  height: 1px;
  background: #EEF0F3;
  margin: 0 -26px 20px;
}

/* Icon + message */
.suite-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.suite-icon-success { background: rgba(30,123,61,0.12); color: #1e7b3d; }
.suite-icon-error { background: rgba(232,92,75,0.14); color: #C0392B; }
.suite-icon-info { background: rgba(91,196,201,0.16); color: #3AABB1; }
.suite-icon-warning { background: rgba(244,201,53,0.18); color: #A3822E; }

.suite-msg-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1A2D3D;
  margin-bottom: 4px;
}
.suite-msg-text {
  font-size: 0.92rem;
  color: #6B7E96;
}

/* Buttons */
.suite-btn {
  border-radius: 999px !important;
  padding: 11px 24px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  margin: 0 6px !important;
  transition: transform .2s cubic-bezier(0.4,0,0.2,1), box-shadow .2s cubic-bezier(0.4,0,0.2,1);
}
.suite-btn:hover { transform: translateY(-2px); }
.suite-btn-confirm {
  background: linear-gradient(135deg, #2E4A60, #1A2D3D) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(46,74,96,0.32);
}
.suite-btn-danger {
  background: linear-gradient(135deg, #E85C4B, #C0392B) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(232,92,75,0.28);
}
.suite-btn-cancel {
  background: #fff !important;
  color: #1A2D3D !important;
  border-color: #DEE4EA !important;
}
.suite-btn-cancel:hover { background: #F8F9FA !important; }
