* {
  box-sizing: border-box;
}
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  line-height: 1.45;
}
body,
button,
input {
  font: inherit;
}
button,
input {
  color: inherit;
}
button {
  cursor: pointer;
}
:where([hidden]) {
  display: none !important;
}
img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: var(--radius-control);
  background: var(--color-ink);
  color: var(--color-surface);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-frame {
  position: relative;
  left: 200px;
  width: 1000px;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
}
.storefront {
  position: relative;
  width: 480px;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: clip;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
@media (max-width: 1024px) {
  html {
    scroll-behavior: auto;
  }
  body {
    background: var(--color-surface);
  }
  .site-frame {
    left: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .storefront {
    width: 100%;
    max-width: 480px;
  }
}
@supports not (overflow: clip) {
  html,
  body,
  .storefront {
    overflow-x: hidden;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
