/* ─── EasySocials Quick Start Wizard & Categorized Sidebar ─────────────────── */

:root {
  --easy-primary: #403BFF;
  --easy-primary-glow: rgba(64, 59, 255, 0.35);
  --easy-success: #10B271;
  --easy-success-glow: rgba(16, 178, 113, 0.3);
  --easy-bg-dark: #0D0C1D;
  --easy-card-bg: rgba(22, 21, 43, 0.85);
  --easy-border: rgba(255, 255, 255, 0.08);
  --easy-text-muted: #8E8EA0;
}

/* 🚀 3-Step Quick Start Onboarding Wizard Card */
#easy-onboarding-wizard {
  background: linear-gradient(135deg, rgba(22, 21, 43, 0.95), rgba(13, 12, 29, 0.98));
  border: 1px solid rgba(64, 59, 255, 0.25);
  border-radius: 16px;
  padding: 24px;
  margin: 18px 24px 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(64, 59, 255, 0.12);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', Inter, -apple-system, sans-serif;
  animation: easyFadeDown 0.4s ease-out;
  color: #fff;
}

#easy-onboarding-wizard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #403BFF, #10B271, #8F8CFF);
}

@keyframes easyFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.easy-wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.easy-wizard-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.easy-wizard-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(64, 59, 255, 0.2);
  border: 1px solid rgba(64, 59, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 14px var(--easy-primary-glow);
}

.easy-wizard-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.easy-wizard-subtitle {
  font-size: 13px;
  color: var(--easy-text-muted);
  margin-top: 2px;
}

.easy-wizard-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.easy-progress-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #10B271;
  display: flex;
  align-items: center;
  gap: 6px;
}

.easy-dismiss-btn {
  background: transparent;
  border: none;
  color: #8E8EA0;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.easy-dismiss-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* 3 Step Cards Grid */
.easy-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.easy-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
}

.easy-step-card:hover {
  background: rgba(64, 59, 255, 0.06);
  border-color: rgba(64, 59, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.easy-step-card.completed {
  border-color: rgba(16, 178, 113, 0.4);
  background: rgba(16, 178, 113, 0.04);
}

.easy-step-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.easy-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #403BFF;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.easy-step-card.completed .easy-step-num {
  background: #10B271;
}

.easy-step-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

.easy-step-info p {
  margin: 4px 0 0 0;
  font-size: 12.5px;
  color: #8E8EA0;
  line-height: 1.4;
}

.easy-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #403BFF;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.easy-step-btn:hover {
  background: #5652FF;
  box-shadow: 0 4px 12px var(--easy-primary-glow);
}

.easy-step-btn.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
}

.easy-step-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* 🏷️ Sidebar Category Headers Enhancement */
.easy-sidebar-category {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6E6E85;
  padding: 16px 18px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.easy-sidebar-category-badge {
  background: rgba(64, 59, 255, 0.2);
  color: #8F8CFF;
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
}
