/* ==========================================================================
   components/empty-state.css — Centered hero-style empty state.
   Used in the main content area when no Client / D2C Brand is selected.
   ========================================================================== */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  min-height: 60vh;
  gap: 14px;
}

.empty-state__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 0 0 6px var(--accent-glow);
  color: #fff;
}

.empty-state__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empty-state__title {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  margin: 0;
}

.empty-state__text {
  font-size: 14px;
  color: var(--text-m);
  max-width: 440px;
  line-height: 1.55;
  margin: 0;
}

.empty-state__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.empty-state__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--accent-glow);
  transition: opacity 0.15s, transform 0.15s;
}

.empty-state__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.empty-state__btn--ghost {
  background: var(--surface);
  color: var(--text-m);
  border: 1px solid var(--border-m);
  box-shadow: none;
}

.empty-state__btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

.empty-state__hint {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-d);
  font-family: var(--fm);
}
