/* Logo Creator — extends ../shared/editor-core.css */
/* Aliases for backward compatibility with logo-creator panels */
:root {
  --color-brand: var(--brand);
  --color-brand-dark: var(--brand-dark);
  --color-brand-light: var(--brand-glow);
  --color-bg: var(--bg);
  --color-surface: var(--surface);
  --color-border: var(--border);
  --color-text: var(--text);
  --color-text-heading: var(--text-bright);
  --color-text-secondary: var(--text-secondary);
  --color-text-muted: var(--text-muted);
  --color-success: #16a34a;
  --color-success-light: #f0fdf4;
  --color-error: #dc2626;
  --color-error-light: #fef2f2;
  --panel-bg: #1a1a2e;
  --panel-border: #2a2a4a;
  --panel-text: #e2e8f0;
  --panel-text-muted: #94a3b8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.08);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

/* ── Header ─────────────────────────────────── */
.app-header {
  background: var(--panel-bg);
  border-bottom: 1px solid var(--panel-border);
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.app-header .logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.app-header .logo-group svg { flex-shrink: 0; }

.app-header .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-header .brand {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.app-header .domain {
  font-size: 11px;
  color: var(--panel-text-muted);
  font-weight: 500;
}

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

.header-actions button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 200ms;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(242,0,0,0.3);
}

.btn-primary:hover {
  background: var(--color-brand-dark);
  box-shadow: 0 4px 12px rgba(242,0,0,0.4);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav a {
  font-size: 13px;
  color: var(--panel-text-muted);
  font-weight: 500;
  transition: color 200ms;
}

.header-nav a:hover { color: #fff; }

.hidden { display: none !important; }
