html {
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
}

.storefront-state {
  display: flex;
  min-height: 40vh;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.75rem);
}

.store-home__name {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.store-home__tagline {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.storefront-lang {
  display: inline-flex;
  gap: 0.125rem;
  padding: 0.1875rem;
  border: 1px solid color-mix(in oklch, var(--border) 82%, transparent);
  border-radius: 0.625rem;
  background: var(--surface-2);
}

.storefront-lang__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.875rem;
  padding: 0 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.4375rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.storefront-lang__link:hover {
  color: var(--text);
  background: color-mix(in oklch, var(--surface) 92%, var(--accent) 4%);
}

.storefront-lang__link:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.storefront-lang__link--active {
  border-color: color-mix(in oklch, var(--border-strong) 70%, transparent);
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 1px oklch(0.145 0 0 / 0.05);
}
