:root {
  --bg: #dde3eb;
  --surface: #ffffff;
  --brand-green: #8fd400;
  --brand-navy: #1a2480;
  --text: #121620;
  --muted: #5f6d7e;
  --border: #d4dce6;
  --header-bg: #0b0b0b;
  --shadow: 0 8px 32px rgba(18, 30, 50, 0.12);
  --shell-max: 480px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
}

.app-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hidden { display: none !important; }

.catalog-header {
  background: var(--header-bg);
  color: #fff;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  border-bottom: 3px solid var(--brand-green);
}

.brand-logo {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  background: linear-gradient(135deg, #f7e033 0%, #8fd400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #b8c0cc;
}

.catalog-main {
  padding: 1rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shops-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.shop-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 4px 16px rgba(143, 212, 0, 0.15);
}

.shop-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.shop-slug {
  font-size: 0.85rem;
  color: var(--muted);
}
