* {
  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;
}
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;
}
.desktop-rail {
  position: fixed;
  top: 0;
  width: 480px;
  height: 100vh;
  margin-left: -220px;
  padding: 0 80px;
  background: var(--color-surface);
}
.desktop-rail__inner {
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding-bottom: 70px;
}
.desktop-brand {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  width: max-content;
  margin-bottom: 48px;
}
.desktop-brand img {
  width: auto;
  max-width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: left center;
}
.rail-search {
  position: relative;
  margin-bottom: 48px;
}
.rail-search input {
  width: 100%;
  height: 48px;
  padding: 0 52px 0 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
}
.rail-search button {
  position: absolute;
  top: 2px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 0;
}
.rail-search button::before {
  width: 15px;
  height: 15px;
  border: 1.7px solid var(--color-ink);
  border-radius: 50%;
  content: "";
}
.rail-search button::after {
  position: absolute;
  width: 7px;
  height: 1.7px;
  margin: 12px 0 0 12px;
  background: var(--color-ink);
  transform: rotate(45deg);
  content: "";
}
.rail-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -34px;
  margin-bottom: 48px;
}
.search-popular-keyword-list-v1-desktop-rail-keywords {
  display: contents;
}
.rail-keywords a {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  font-size: 13px;
}
.rail-app-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rail-qr-slot {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}
.rail-app-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.rail-app-card p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 18px;
}
.rail-delivery-art {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 280px;
  height: 200px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}
.rail-delivery-art img {
  width: 280px;
  height: 200px;
  object-fit: contain;
}
.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;
  }
  .desktop-rail {
    display: none;
  }
  .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;
  }
}
