/*
 * The build step injects crawlable route content into the root. Keep that
 * content available to no-script clients and crawlers without painting a
 * second, unrelated page before React mounts the real storefront.
 */
html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: #f3f5f9 !important;
  color: #171926 !important;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

#root > .seo-static-shell {
  display: none !important;
  min-height: 100vh !important;
  padding: 0 20px 64px !important;
  background: #f3f5f9 !important;
  color: #171926 !important;
}

#root > .seo-static-shell > header {
  display: flex;
  max-width: 1240px;
  min-height: 70px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e1e5ed;
}

#root > .seo-static-shell > header > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #171926 !important;
  font-weight: 800;
  text-decoration: none;
}

#root > .seo-static-shell nav {
  display: flex;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

#root > .seo-static-shell nav a {
  min-height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #565d6f !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

#root > .seo-static-shell > article {
  max-width: 1120px;
  margin: 18px auto 0;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid #e1e5ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 35, 48, 0.06);
}

#root > .seo-static-shell h1 {
  max-width: 18ch;
  margin: 0 0 16px;
  color: #171926 !important;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

#root > .seo-static-shell p {
  max-width: 68ch;
  color: #626a7b !important;
  font-size: 16px;
  line-height: 1.7;
}

#root > .seo-static-shell section {
  margin-top: 36px;
}

#root > .seo-static-shell .seo-link-list {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

#root > .seo-static-shell .seo-link-list a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9dce5;
  border-radius: 10px;
  color: #4f46c8 !important;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 760px) {
  #root > .seo-static-shell > header {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  #root > .seo-static-shell nav {
    display: none;
  }

  #root > .seo-static-shell > article {
    padding: 28px 20px;
  }
}
