/* ShopList — minimal, startup-style shell */

:root {
  color-scheme: light;
  --bg: #fafaf9;
  --surface: #ffffff;
  --text: #16161f;
  --muted: #5c5f6d;
  --primary: #e07a2e;
  --primary-hover: #c96a26;
  --border: rgba(22, 22, 31, 0.08);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.55;
  font-size: 1rem;
}

main a {
  color: var(--primary);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Nav */

.site-nav-outer {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 249, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-nav {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
}

.site-nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav-links a:not(.site-nav-brand) {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav-links a:not(.site-nav-brand):hover {
  color: var(--text);
  background: rgba(224, 122, 46, 0.1);
}

.site-nav-links a:not(.site-nav-brand).nav-cta {
  background: var(--text);
  color: #fff;
}

.site-nav-links a:not(.site-nav-brand).nav-cta:hover {
  opacity: 0.92;
  color: #fff;
}

/* Footer */

.site-footer {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
  padding: 56px 0 72px;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a {
  color: var(--primary);
  font-weight: 600;
}

.site-footer .footer-more-apps {
  margin-top: 22px;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
