@font-face {
  font-family: Pretendard;
  src: url("/pretendard.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/montserrat-bold-italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: light;
  --brand: #0073ff;
  --action: #0066e6;
  --text: #111111;
  --muted: #686868;
  --canvas: #f3f3f3;
  --surface: #ffffff;
  --border: #d9d9d9;
  --divider: #dadada;
  --subtle: #f2f2f2;
  --image-background: #dddddd;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --inset: 18px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --radius: 11px;
  --content-width: 960px;
  --font-body: .875rem;
  --font-small: .75rem;
  --font-meta: .625rem;
  --font-section: 1.125rem;
  --font-title: 1.5rem;
  --font-price: 1.375rem;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--canvas); color: var(--text);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: var(--font-body); line-height: 1.5; letter-spacing: -.5px;
  word-break: keep-all; overflow-wrap: anywhere;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--action); outline-offset: var(--space-1);
}
[hidden] { display: none !important; }
h1, h2, p, figure { margin: 0; }
button { font: inherit; }
button:focus-visible { outline: 3px solid var(--action); outline-offset: var(--space-1); }
h1 { font-size: var(--font-title); font-weight: 700; line-height: 1.35; text-wrap: pretty; }
h2 { font-size: var(--font-section); font-weight: 600; line-height: 1.35; color: var(--action); }
.muted { color: var(--muted); }
.sr-only, .info-switch input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: var(--inset); padding: var(--space-3);
  background: var(--surface); z-index: 10;
}
.skip-link:focus { top: var(--space-2); }
.site-header { border-bottom: 1px solid var(--divider); }
.header-inner {
  max-width: var(--content-width); margin: auto; min-height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--inset);
}
.wordmark { font-family: Montserrat, sans-serif; font-size: 18px; font-weight: 700; font-style: italic; letter-spacing: normal; color: var(--brand); }
.header-label { color: var(--muted); font-size: var(--font-small); }
.page { max-width: var(--content-width); margin: var(--space-8) auto; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }
.product-media { position: sticky; top: var(--space-6); min-width: 0; }
.gallery-section { position: relative; min-width: 0; }
.gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; background: var(--image-background); scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.photo {
  position: relative; flex: 0 0 100%; min-width: 0; aspect-ratio: 375 / 233;
  scroll-snap-align: start; scroll-margin-top: var(--space-4);
  display: grid; place-items: center;
}
.photo img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.photo-open { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: none; color: inherit; cursor: zoom-in; }
.photo-open:disabled { cursor: default; }
.photo-open:focus-visible { outline-offset: -4px; }
.photo-open:focus-visible::after { content: ""; position: absolute; inset: 4px; z-index: 4; border: 3px solid var(--action); pointer-events: none; }
.gallery-arrow, .viewer-arrow, .viewer-close { width: 44px; height: 44px; border: 0; border-radius: 50%; display: grid; place-items: center; padding: 0; color: var(--surface); background: rgb(0 0 0 / 55%); cursor: pointer; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; }
.gallery-previous { left: var(--space-2); }
.gallery-next { right: var(--space-2); }
.gallery-arrow:disabled, .viewer-arrow:disabled { opacity: .35; cursor: default; }
.photo-viewer { inset: 0; width: 100%; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: #111111; color: var(--surface); }
.photo-viewer[open] { display: grid; grid-template-rows: auto minmax(0, 1fr); }
.photo-viewer::backdrop { background: rgb(0 0 0 / 85%); }
.viewer-header { display: flex; align-items: center; justify-content: space-between; padding: calc(var(--space-3) + env(safe-area-inset-top)) var(--inset) var(--space-3); }
.viewer-header p { font-size: var(--font-body); font-variant-numeric: tabular-nums; letter-spacing: 0; }
.viewer-stage { min-height: 0; position: relative; display: grid; place-items: center; padding: 0 var(--space-16) calc(var(--space-6) + env(safe-area-inset-bottom)); }
.viewer-stage img { width: 100%; height: 100%; min-height: 0; object-fit: contain; user-select: none; }
.viewer-stage p { text-align: center; }
.viewer-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; background: rgb(255 255 255 / 12%); }
.viewer-previous { left: var(--space-2); }
.viewer-next { right: var(--space-2); }
body.viewer-open { overflow: hidden; }
.photo-count {
  position: absolute; right: 12px; bottom: 10px; z-index: 2; pointer-events: none;
  border-radius: 20px; color: var(--surface); background: rgb(0 0 0 / 50%);
  padding: 2px var(--space-2); font-size: var(--font-meta); font-weight: 400;
  font-variant-numeric: tabular-nums; letter-spacing: 0;
}
.photo-nav { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); display: flex; z-index: 3; }
.photo-nav a { display: grid; place-items: center; width: 32px; min-height: 44px; }
.photo-nav a span { width: 5px; height: 5px; border-radius: 50%; background: var(--surface); box-shadow: 0 0 0 1px rgb(0 0 0 / 35%); }
.photo-nav a:hover span, .photo-nav a:focus-visible span { background: var(--brand); }
.photo:target { outline: 2px solid var(--action); outline-offset: -2px; }
.photo-status { position: absolute; inset: auto 0 0; height: 34px; display: grid; place-items: center; color: var(--surface); background: rgb(0 115 255 / 70%); font-weight: 600; pointer-events: none; z-index: 1; }
.photo-status[data-status="sold"] { inset: 0; height: auto; background: rgb(0 0 0 / 60%); font-size: var(--font-price); font-weight: 700; }
[data-product-status="reserved"] .photo-count { bottom: 40px; }
[data-product-status="reserved"] .photo-nav { bottom: 30px; }
.image-empty, .image-failure { display: grid; place-items: center; padding: var(--space-6); text-align: center; color: var(--muted); background: var(--image-background); }
.image-empty { aspect-ratio: 375 / 233; }
.image-failure { position: absolute; inset: 0; pointer-events: none; }
.seller { min-height: 66px; padding: var(--space-3) var(--inset); border-bottom: 1px solid var(--divider); display: flex; align-items: center; gap: 14px; }
.seller-avatar { width: 37px; height: 37px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; color: var(--brand); background: rgb(0 115 255 / 8%); }
.seller-copy { min-width: 0; flex: 1; }
.seller-name { font-size: var(--font-body); font-weight: 700; }
.seller-label { font-size: var(--font-meta); color: var(--muted); flex-shrink: 0; }
.product-info { min-width: 0; }
.product-summary { padding: 15px var(--inset) 0; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); color: var(--muted); font-size: var(--font-meta); font-weight: 600; margin-bottom: 14px; }
.status { white-space: nowrap; font-weight: 500; }
.brand-name { color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.price { font-size: var(--font-price); font-weight: 700; color: var(--brand); line-height: 1.3; margin-top: 11px; font-variant-numeric: tabular-nums; letter-spacing: 0; }
.engagement { display: flex; gap: var(--space-3); color: var(--muted); font-size: var(--font-small); margin-top: var(--space-3); }
.engagement:empty { display: none; }
.information { min-width: 0; padding: 0; border: 0; margin: var(--space-7) 0 0; }
.info-switch { display: flex; }
.info-switch label { flex: 1; min-width: 0; min-height: 46px; display: grid; place-items: center; padding: var(--space-2); font-size: var(--font-section); color: var(--muted); border-bottom: 1px solid var(--muted); cursor: pointer; }
.info-switch input:checked + label { color: var(--text); font-weight: 500; border-bottom: 2px solid var(--text); }
.info-switch input:focus-visible + label { outline: 3px solid var(--action); outline-offset: -3px; }
[data-info-panel] { padding: var(--space-6) var(--inset); }
.information:has(#info-basic:checked) [data-info-panel="detail"],
.information:has(#info-detail:checked) [data-info-panel="basic"] { display: none; }
.specs { display: grid; gap: var(--space-3); margin: 0; }
.specs dt, .specs dd { display: inline; margin: 0; }
.specs dt { color: var(--muted); font-weight: 400; }
.specs dd { font-weight: 600; }
.detail-section { border-top: 1px solid var(--border); padding: var(--space-6) var(--inset); }
.detail-section h2 { margin-bottom: 14px; }
.description { white-space: pre-wrap; }
.view-count { margin-top: var(--space-8); font-weight: 500; color: var(--muted); }
.app-panel { margin-top: var(--space-6); padding: var(--inset); background: var(--canvas); }
.app-heading { font-weight: 500; margin-bottom: var(--space-3); }
.button { min-height: 48px; display: flex; align-items: center; justify-content: center; padding: var(--space-3) var(--space-4); border-radius: var(--radius); font-size: 1rem; font-weight: 500; text-align: center; line-height: 1.5; }
.primary { background: var(--action); color: var(--surface); }
.primary:hover { background: var(--brand); }
.secondary { border: 1px solid var(--border); background: var(--surface); }
.secondary:hover { border-color: var(--text); }
.store-links { display: flex; align-items: center; justify-content: center; gap: var(--space-2); flex-wrap: wrap; }
.store-badge { min-height: 60px; display: flex; align-items: center; justify-content: center; }
.store-badge img { display: block; object-fit: contain; }
.apple-badge { padding: 10px; }
.apple-badge img { width: 130px; height: 40px; }
.google-badge { padding-inline: 10px; }
/* The 250px PNG has 192px of artwork: scale the artwork to Apple's 40px. */
.google-badge img { width: auto; height: 52.083333px; }
.launch-help { font-size: var(--font-meta); color: var(--muted); }
.site-footer { max-width: var(--content-width); margin: var(--space-8) auto; color: var(--muted); font-size: var(--font-small); line-height: 1.5; letter-spacing: normal; }
.business-info { padding-block: 6px; }
.business-info summary { min-height: 44px; display: flex; align-items: center; gap: var(--space-1); list-style: none; cursor: pointer; width: fit-content; max-width: 100%; }
.business-info summary::-webkit-details-marker { display: none; }
.business-info summary:focus-visible { outline: 3px solid var(--action); outline-offset: var(--space-1); }
.business-chevron { flex-shrink: 0; }
.business-info[open] .business-chevron { transform: rotate(180deg); }
.business-details { max-width: 90ch; }
.business-details a { text-decoration: underline; text-underline-offset: 2px; }
.business-disclaimer { max-width: 90ch; margin-top: var(--space-3); }
.trademark { margin-top: var(--space-3); font-size: var(--font-meta); }
.message-layout { max-width: 480px; margin: var(--space-16) auto; }
.message-panel { padding-block: var(--space-8); }
.message-panel .muted { margin-top: var(--space-4); }
.eyebrow { font-size: var(--font-small); color: var(--action); letter-spacing: .12em; font-weight: 700; margin-bottom: var(--space-4); }
.retry { display: inline-flex; margin-top: var(--space-6); }
@media (min-width: 901px) {
  .product-info > .information { margin-top: 0; }
}
@media (max-width: 1024px) {
  .header-inner, .page, .site-footer { margin-left: var(--space-8); margin-right: var(--space-8); }
}
@media (max-width: 900px) {
  .site-header { border: 0; }
  .header-inner { max-width: 480px; min-height: 52px; margin-inline: auto; padding-inline: var(--inset); }
  .page { margin: 0 auto; max-width: 480px; }
  .product-layout { display: block; }
  .product-media { position: static; }
  .app-panel { position: fixed; inset: auto 0 0; z-index: 5; margin: 0; border-top: 1px solid var(--border); padding: var(--inset) var(--inset) calc(var(--space-3) + env(safe-area-inset-bottom)); }
  .app-panel > * { max-width: 444px; margin-left: auto; margin-right: auto; }
  .app-heading { display: none; }
  .site-footer { max-width: 444px; margin: var(--space-6) auto calc(210px + env(safe-area-inset-bottom)); padding-inline: var(--inset); }
  .message-layout { margin: var(--space-8) var(--inset); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
