@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Spline+Sans+Mono:wght@400;500;600;700&display=swap");

:root {
  --ink: #16242b;
  --sub: #5e6e76;
  --faint: #8a99a1;
  --line: #e7eef1;
  --bg: #f6fafb;
  --dash-bg: #f4f8fa;
  --card: #ffffff;
  --primary: #1b7fb8;
  --primary-dk: #13628f;
  --tint-blue: #eaf4fa;
  --mint: #3dae9c;
  --tint-mint: #e2f2ef;
  --warn: #e08a2b;
  --tint-warn: #fbf0e1;
  --red: #d2603f;
  --placeholder-bg: #eef3f5;
  --placeholder-fg: #9db0b8;
  --mono: "Spline Sans Mono", monospace;
  --sans: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
}

body.store-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.mono {
  font-family: var(--mono);
}

.icon {
  width: var(--icon-size, 20px);
  height: var(--icon-size, 20px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: currentColor;
  stroke-width: 1.8;
  flex: none;
}

.brand-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo__ko {
  color: var(--primary);
  font-size: 34px;
  font-weight: 800;
  line-height: .8;
  letter-spacing: 0;
}

.brand-logo__en {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  padding-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.badge--primary {
  background: var(--primary);
  color: #fff;
}

.badge--mint {
  background: var(--tint-mint);
  color: var(--mint);
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: var(--ph-h, 150px);
  width: 100%;
  border-radius: var(--ph-r, 14px);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .48) 0 10px, rgba(255, 255, 255, 0) 10px 20px),
    var(--placeholder-bg);
  color: var(--placeholder-fg);
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  white-space: pre-line;
}

.section {
  padding: 40px 28px 8px;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section__overline {
  margin-bottom: 7px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.store-shell {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

.utility-strip {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 28px;
  background: var(--ink);
  color: #cfdde3;
  font-size: 12px;
  font-weight: 500;
}

.utility-strip__intro {
  opacity: .72;
}

.utility-strip__right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.unit-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, .1);
  color: inherit;
  white-space: nowrap;
}

.unit-chip .icon {
  color: var(--mint);
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 78px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.store-header > .mobile-menu {
  display: none !important;
}

.gnb {
  display: flex;
  gap: 30px;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.gnb a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 230px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 9px 16px;
  background: var(--bg);
  color: var(--faint);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: transparent;
  color: var(--sub);
}

.icon-button.is-active {
  background: var(--tint-blue);
  color: var(--primary);
}

.header-popover {
  position: fixed;
  top: 108px;
  right: 78px;
  z-index: 40;
  width: 280px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 36, 43, .16);
}

.header-popover[hidden] {
  display: none;
}

.header-popover strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.header-popover p {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.6;
}

.header-popover .btn {
  width: 100%;
  min-height: 40px;
  margin-top: 14px;
  border-radius: 10px;
  font-size: 13px;
}

.count-dot {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 17px;
  border-radius: 10px;
  padding: 3px 5px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.hero {
  padding: 54px 28px 50px;
  background: linear-gradient(110deg, #eaf4fa 0%, #f6fafb 55%, #e2f2ef 130%);
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__copy {
  flex: 1 1 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px 13px;
  background: var(--card);
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--sub);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.hero__actions,
.filter-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dk);
}

.btn--soft {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
}

.btn--tint {
  background: var(--tint-blue);
  color: var(--primary-dk);
}

.hero__visual {
  flex: 0 0 560px;
}

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 210px;
  gap: 14px;
  min-height: 310px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
  transform-origin: left center;
  animation: heroProgress 4200ms linear infinite;
  opacity: .72;
}

.hero-showcase:hover::before,
.hero-showcase:focus-within::before {
  animation-play-state: paused;
}

.hero-showcase__main {
  position: relative;
  display: block;
  height: 310px;
  border: 1px solid rgba(231, 238, 241, .9);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 54px rgba(22, 36, 43, .12);
}

.hero-showcase__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.hero-showcase__main:hover img {
  transform: scale(1.025);
}

.hero-showcase.is-rolling .hero-showcase__main img {
  animation: heroMainIn 520ms ease both;
}

.hero-showcase__main::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(22, 36, 43, 0), rgba(22, 36, 43, .64));
}

.hero-showcase__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  border-radius: 20px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(22, 36, 43, .12);
}

.hero-showcase__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
}

.hero-showcase__caption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
}

.hero-showcase__caption strong {
  display: block;
  max-width: 300px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.22;
}

.hero-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-showcase__mini {
  display: block;
  min-width: 0;
  border: 1px solid rgba(231, 238, 241, .92);
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(22, 36, 43, .09);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.hero-showcase__mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(22, 36, 43, .13);
}

.hero-showcase.is-rolling .hero-showcase__mini {
  animation: heroMiniIn 420ms ease both;
}

.hero-showcase.is-rolling .hero-showcase__mini:nth-child(2) {
  animation-delay: 45ms;
}

.hero-showcase.is-rolling .hero-showcase__mini:nth-child(3) {
  animation-delay: 90ms;
}

.hero-showcase.is-rolling .hero-showcase__mini:nth-child(4) {
  animation-delay: 135ms;
}

.hero-showcase__mini img {
  width: 100%;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--placeholder-bg);
}

.hero-showcase__mini span,
.hero-showcase__mini strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-showcase__mini span {
  margin-top: 8px;
  color: var(--mint);
  font-size: 10.5px;
  font-weight: 900;
}

.hero-showcase__mini strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.hero-showcase__rail {
  position: absolute;
  right: 18px;
  bottom: -20px;
  left: 18px;
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.hero-showcase__rail div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(231, 238, 241, .95);
  border-radius: 16px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(22, 36, 43, .11);
}

.hero-showcase__rail span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.hero-showcase__rail strong {
  color: var(--sub);
  font-size: 12px;
  font-weight: 800;
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroMainIn {
  from {
    opacity: .45;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroMiniIn {
  from {
    opacity: .55;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-card {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: var(--card);
}

.filter-card__image {
  flex: 0 0 150px;
  max-width: 150px;
}

.filter-card__body {
  flex: 1 1 0;
  min-width: 0;
}

.filter-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.system-label {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filter-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.filter-card p {
  margin: 0 0 14px;
  color: var(--sub);
  font-size: 13.5px;
  line-height: 1.6;
}

.progress-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 500;
}

.progress-caption strong {
  color: var(--warn);
  font-family: var(--mono);
  font-weight: 700;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--line);
}

.progress__bar {
  width: var(--value, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--warn));
}

.filter-card__buy {
  flex: none;
  min-width: 220px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  text-align: right;
}

.list-price {
  color: var(--faint);
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
}

.main-price {
  margin: 4px 0 2px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.discount-note {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.filter-card__buy .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border-radius: 11px;
  font-size: 14px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 34px 28px 6px;
}

.category-card {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 12px;
  background: var(--card);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.category-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--tint-blue);
  color: var(--primary);
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-grid--deals {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid--best {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product-grid--catalog {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  cursor: pointer;
}

.product-card__media {
  position: relative;
  display: block;
}

.product-card__media .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-card__wish {
  display: none;
}

.product-card__body {
  display: block;
  padding: 12px 14px 16px;
}

.product-card__system {
  margin-bottom: 7px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-card__name {
  height: 39px;
  margin-bottom: 9px;
  overflow: hidden;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
}

.product-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__price strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.subscription-band {
  padding: 32px 28px;
}

.subscription-band__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: 18px;
  padding: 30px 34px;
  background: linear-gradient(100deg, var(--primary-dk), var(--primary));
  color: #fff;
}

.subscription-band__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
}

.subscription-band__text {
  flex: 1 1 0;
}

.subscription-band h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.subscription-band p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
}

.subscription-band .btn {
  background: #fff;
  color: var(--primary-dk);
}

.store-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 28px;
  background: var(--ink);
  color: #9fb0b8;
}

.store-footer__brand {
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.store-footer__brand span {
  color: #7d8e96;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}

.store-footer p,
.store-footer__links {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.9;
}

.store-footer__links {
  display: flex;
  gap: 40px;
}

.store-footer__links strong {
  color: #fff;
}

.mobile-tabbar {
  display: none;
}

.shop-page-main {
  flex: 1 0 auto;
  padding: 32px 28px 56px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.panel__head h1,
.panel__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.panel__body {
  padding: 20px;
}

.my-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(100deg, rgba(225, 246, 242, .88), rgba(235, 246, 252, .92));
}

.my-hero h1 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
}

.my-hero p {
  margin: 0;
  color: var(--sub);
  font-weight: 700;
}

.my-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  margin-bottom: 22px;
  align-items: stretch;
}

.my-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.my-profile__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--tint-mint);
  color: var(--mint);
}

.my-profile strong,
.my-profile span {
  display: block;
}

.my-profile strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.my-profile span {
  margin-top: 5px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 700;
}

.my-info-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.my-info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--sub);
  font-size: 14px;
}

.my-info-list strong {
  color: var(--ink);
}

.my-stat-grid {
  display: grid;
  gap: 12px;
}

.my-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: #fff;
}

.my-stat span {
  color: var(--sub);
  font-size: 14px;
  font-weight: 800;
}

.my-stat strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.my-order-list {
  display: grid;
  gap: 10px;
}

.my-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--bg);
}

.my-order strong,
.my-order span {
  display: block;
}

.my-order strong {
  color: var(--ink);
  font-weight: 900;
}

.my-order span {
  margin-top: 4px;
  color: var(--sub);
  font-size: 13px;
}

.my-order b {
  color: var(--ink);
  white-space: nowrap;
}

.soom-order-card {
  align-items: stretch;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: var(--card);
}

.soom-order-head,
.soom-order-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.soom-order-head code {
  color: var(--sub);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.soom-order-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  border-radius: 10px;
  background: var(--bg);
  padding: 12px;
}

.soom-order-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.soom-order-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--sub);
  font-size: 10px;
}

.soom-order-step.is-active {
  color: var(--primary);
}

.soom-order-step.is-active span {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.soom-order-items {
  display: grid;
  gap: 10px;
}

.soom-order-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.soom-order-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.soom-order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soom-order-item__body {
  min-width: 0;
}

.soom-order-item__body strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.soom-order-item__body span,
.soom-order-item__body em {
  display: block;
  margin-top: 4px;
  color: var(--sub);
  font-size: 13px;
  font-style: normal;
}

.soom-delivery-note {
  color: var(--sub);
  font-size: 13px;
  font-weight: 800;
}

.soom-delivery-link {
  color: var(--primary);
  text-decoration: none;
}

.soom-delivery-link:hover {
  text-decoration: underline;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 45%) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-summary h1 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.28;
}

.detail-brand {
  margin-bottom: 10px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}

.detail-prices {
  margin: 22px 0;
}

.detail-price {
  margin-top: 4px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.qty-stepper {
  display: inline-grid;
  grid-template-columns: 38px 52px 38px;
  height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
}

.qty-stepper button {
  background: var(--bg);
  color: var(--ink);
  font-weight: 800;
}

.qty-stepper input {
  width: 100%;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
  font-family: var(--mono);
  font-weight: 700;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 20px;
}

.detail-info-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg);
}

.detail-info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--sub);
  font-size: 13px;
}

.detail-info-list strong {
  color: var(--ink);
}

.detail-content {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--sub);
  font-size: 14px;
  line-height: 1.7;
}

.detail-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto 0;
  border-radius: 12px;
}

.detail-description {
  margin-bottom: 18px;
}

.detail-description p,
.detail-html p {
  margin: 0 0 12px;
}

.detail-html {
  overflow: hidden;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--card);
}

.cart-item img,
.cart-item .image-placeholder {
  width: 92px;
  aspect-ratio: 1 / 1;
  min-height: 92px;
  border-radius: 10px;
  object-fit: cover;
}

.cart-item__name {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.cart-item__price {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.cart-item__tools {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.text-button {
  background: transparent;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.summary-box {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--card);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--sub);
  font-size: 14px;
}

.summary-row--total {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 52px 18px;
  color: var(--sub);
  text-align: center;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--sub);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.success-wrap {
  display: grid;
  flex: 1 0 auto;
  place-items: center;
  padding: 40px 20px;
}

.success-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px;
  background: var(--card);
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--tint-mint);
  color: var(--mint);
  font-size: 30px;
  font-weight: 800;
}

.success-card h1 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
}

.success-card p {
  margin: 0 0 24px;
  color: var(--sub);
  line-height: 1.6;
}

.floating-shop-link {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid rgba(27, 127, 184, .22);
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .96);
  color: var(--primary-dk);
  box-shadow: 0 8px 28px rgba(22, 36, 43, .12);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.catalog-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.catalog-tabs,
.category-parents {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.category-parents a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--card);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}

.category-parents a.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-tabs {
  margin-bottom: 12px;
}

.catalog-tabs a,
.category-chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--card);
  color: var(--sub);
  font-size: 13px;
  font-weight: 700;
}

.catalog-tabs a.is-active,
.category-chips a.is-active {
  border-color: rgba(27, 127, 184, .25);
  background: var(--tint-blue);
  color: var(--primary-dk);
}

.category-chips {
  margin-bottom: 16px;
}

.catalog-meta {
  margin-bottom: 12px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
}

.catalog-more {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}

.catalog-more .btn {
  min-width: 180px;
}

.search-box input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.search-box input::placeholder {
  color: var(--faint);
}

.admin-shell {
  display: flex;
  min-height: 1040px;
  background: var(--dash-bg);
  color: var(--ink);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex: 0 0 232px;
  flex-direction: column;
  width: 232px;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  padding: 22px 16px;
  background: var(--card);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 22px;
}

.admin-brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.admin-brand__title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.admin-brand__sub {
  margin-top: 3px;
  color: #94a4ac;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
}

.nav-group {
  padding: 8px 14px 6px;
  color: #94a4ac;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
}

.nav-group--spaced {
  padding-top: 16px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.admin-nav__item .icon {
  color: #94a4ac;
}

.admin-nav__item.is-active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.admin-nav__item.is-active .icon {
  color: #fff;
}

.sidebar__bottom {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.admin-main {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
}

.admin-topbar {
  display: flex;
  align-items: center;
  height: 70px;
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
  background: var(--card);
}

.admin-topbar h1 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.admin-topbar p {
  margin: 5px 0 0;
  color: #94a4ac;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.bell-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--sub);
}

.bell-button::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warn);
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tint-blue);
  color: var(--primary);
}

.profile-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.profile-card span {
  display: block;
  margin-top: 4px;
  color: #94a4ac;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.kpi-grid,
.chart-row,
.dashboard-bottom {
  display: flex;
  gap: 16px;
}

.kpi-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

.kpi-card {
  flex: 1 1 0;
  padding: 20px 22px;
}

.kpi-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.kpi-card__label {
  color: var(--sub);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.kpi-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--kpi-bg, var(--tint-blue));
  color: var(--kpi-color, var(--primary));
}

.kpi-card__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}

.kpi-card__value strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.kpi-card__value span {
  color: var(--sub);
  font-size: 14px;
  font-weight: 600;
}

.kpi-card__delta {
  margin-top: 9px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.kpi-card__delta span {
  color: #94a4ac;
  font-family: var(--sans);
}

.panel {
  padding: 22px;
}

.panel--sales {
  flex: 1.7 1 0;
}

.panel--complex {
  flex: 1 1 0;
}

.panel--reorder {
  flex: 1 1 0;
}

.panel--orders {
  flex: 1.5 1 0;
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel__title {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.panel__sub {
  margin-top: 6px;
  color: #94a4ac;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.segmented {
  display: flex;
  gap: 6px;
}

.segmented button {
  border-radius: 8px;
  padding: 7px 12px;
  background: transparent;
  color: #94a4ac;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.segmented button.is-active {
  background: var(--tint-blue);
  color: var(--primary);
}

.area-chart {
  width: 100%;
  height: 170px;
}

.area-chart text {
  fill: #94a4ac;
  font-family: var(--mono);
  font-size: 10px;
}

.complex-layout {
  display: flex;
  align-items: center;
  gap: 20px;
}

.donut {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 132px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 29%, var(--mint) 29% 50%, #6fb1d6 50% 65%, var(--warn) 65% 77%, #c3d2d9 77% 100%);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: var(--card);
}

.donut__center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.donut__center strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.donut__center span {
  margin-top: 4px;
  color: #94a4ac;
  font-size: 10px;
}

.legend {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 9px;
}

.legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend__dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--dot);
  flex: none;
}

.legend__name {
  flex: 1 1 0;
  color: var(--sub);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.3;
}

.legend__value {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
}

.reorder-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.reorder-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reorder-row__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.reorder-row__complex {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.reorder-row__unit {
  color: #94a4ac;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.reorder-row__product {
  color: var(--sub);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
}

.reorder-row__d {
  margin-left: auto;
  color: var(--warn);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.reorder-row__d.is-danger {
  color: var(--red);
}

.progress--admin {
  height: 7px;
}

.progress--admin .progress__bar {
  background: var(--bar, var(--warn));
}

.bulk-send {
  width: 100%;
  min-height: 38px;
  margin-top: 16px;
  border-radius: 9px;
  background: var(--tint-blue);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.orders-head {
  margin-bottom: 8px;
}

.orders-link {
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th {
  border-bottom: 1px solid var(--line);
  padding: 10px 6px;
  color: #94a4ac;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

.orders-table th:nth-child(4),
.orders-table td:nth-child(4) {
  text-align: right;
}

.orders-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 6px;
  vertical-align: middle;
}

.order-id {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.order-unit {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.order-product {
  max-width: 220px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.order-price {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill {
  display: inline-flex;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.status-pill--done {
  background: var(--tint-mint);
  color: var(--mint);
}

.status-pill--shipping {
  background: var(--tint-blue);
  color: var(--primary);
}

.status-pill--ready {
  background: var(--tint-warn);
  color: var(--warn);
}

.status-pill--paid {
  background: #eef1f3;
  color: var(--sub);
}

@media (max-width: 900px) {
  body.store-page {
    padding-bottom: 82px;
  }

  .utility-strip {
    display: none;
  }

  .store-header {
    height: auto;
    min-height: 148px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px 14px;
    background: linear-gradient(180deg, #eaf4fa, #f6fafb);
  }

  .store-header > .mobile-menu {
    display: inline-grid !important;
  }

  .brand-logo__ko {
    font-size: 27px;
  }

  .brand-logo__en {
    font-size: 10px;
  }

  .gnb {
    order: 9;
    display: flex;
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 2px 0;
    font-size: 14px;
    scrollbar-width: none;
  }

  .gnb::-webkit-scrollbar {
    display: none;
  }

  .header-tools {
    gap: 8px;
    margin-left: auto;
  }

  .header-tools .icon-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .68);
  }

  .header-tools .icon-button[aria-label="찜 목록"] {
    display: none;
  }

  .header-popover {
    top: 170px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .search-box {
    order: 8;
    width: 100%;
    height: 46px;
    border-radius: 24px;
    padding: 12px 16px;
    background: #fff;
  }

  .store-header::after {
    content: "힐스테이트 클린에어 · 101동 1503호";
    order: 7;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 32px;
    border-radius: 20px;
    padding: 0 11px;
    background: var(--tint-mint);
    color: var(--mint);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding: 20px 18px 22px;
  }

  .hero__inner {
    display: block;
  }

  .hero__copy {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 22px 20px;
    background: linear-gradient(135deg, var(--primary-dk), var(--primary));
    color: #fff;
  }

  .hero__copy::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -52px;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    border: 24px solid rgba(255, 255, 255, .14);
  }

  .hero__eyebrow {
    border: 0;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    white-space: nowrap;
  }

  .hero h1 {
    color: #fff;
    font-size: 26px;
    line-height: 1.18;
  }

  .hero p {
    max-width: 250px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.62;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .hero__actions .btn--primary {
    background: #fff;
    color: var(--primary-dk);
  }

  .hero__actions .btn--soft {
    display: none;
  }

  .hero__visual {
    display: none;
  }

  .section {
    padding: 30px 18px 4px;
  }

  .section__head {
    align-items: center;
  }

  .section h2 {
    font-size: 19px;
    white-space: nowrap;
  }

  .section__overline {
    font-size: 10.5px;
  }

  .filter-card {
    display: block;
    padding: 16px;
  }

  .filter-card__image {
    float: left;
    width: 92px;
    max-width: 92px;
    margin: 0 14px 10px 0;
  }

  .filter-card__image .image-placeholder {
    --ph-h: 92px;
  }

  .filter-card h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .filter-card p {
    display: none;
  }

  .filter-card__meta {
    align-items: flex-start;
    gap: 6px;
  }

  .filter-card__meta .badge {
    font-size: 10.5px;
  }

  .system-label {
    display: block;
    width: 100%;
    font-size: 10.5px;
  }

  .filter-card__body::after {
    content: "";
    display: block;
    clear: both;
  }

  .progress-caption {
    clear: both;
    justify-content: space-between;
    border-radius: 11px 11px 0 0;
    margin: 10px 0 0;
    padding: 12px 12px 7px;
    background: var(--tint-warn);
  }

  .filter-card .progress {
    border-radius: 0 0 11px 11px;
    background: #fff;
    margin-bottom: 12px;
  }

  .filter-card__buy {
    min-width: 0;
    border-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .filter-card__buy .main-price {
    display: inline;
    margin-left: 6px;
    font-size: 22px;
  }

  .filter-card__buy .discount-note {
    display: inline-block;
    margin-left: 8px;
    color: var(--mint);
  }

  .filter-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .category-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 24px 18px 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 72px;
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 11.5px;
    scroll-snap-align: start;
  }

  .category-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 16px;
  }

  .product-grid--deals,
  .product-grid--best {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-grid--best .product-card:nth-child(n+5) {
    display: none;
  }

  .product-card__media .image-placeholder {
    --ph-h: 132px;
  }

  .product-card__wish {
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    color: var(--sub);
  }

  .product-card__body {
    padding: 11px 11px 14px;
  }

  .product-card__system {
    font-size: 10px;
  }

  .product-card__name {
    height: 35px;
    font-size: 12.5px;
  }

  .product-card__price strong {
    font-size: 16px;
  }

  .subscription-band {
    padding: 26px 18px 4px;
  }

  .subscription-band__inner {
    gap: 12px;
    border-radius: 16px;
    padding: 18px 18px;
  }

  .subscription-band__icon {
    width: 44px;
    height: 44px;
  }

  .subscription-band h3 {
    font-size: 17px;
  }

  .subscription-band p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .subscription-band .btn {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    color: transparent;
  }

  .subscription-band .btn::after {
    content: ">";
    color: var(--primary-dk);
    font-size: 20px;
    font-weight: 700;
  }

  .store-footer {
    display: none;
  }

  .mobile-tabbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    padding: 8px 10px max(12px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
  }

  .mobile-tabbar a {
    display: grid;
    justify-items: center;
    gap: 4px;
    color: var(--faint);
    font-size: 10.5px;
    font-weight: 500;
  }

  .mobile-tabbar a.is-active {
    color: var(--primary);
    font-weight: 700;
  }

  .shop-page-main {
    padding: 20px 18px 92px;
  }

  .my-hero {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .my-hero h1 {
    font-size: 24px;
  }

  .my-grid {
    grid-template-columns: 1fr;
  }

  .my-order {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .panel__head,
  .panel__body {
    padding: 16px;
  }

  .detail-summary h1 {
    font-size: 22px;
  }

  .detail-price {
    font-size: 28px;
  }

  .purchase-actions {
    position: sticky;
    bottom: 72px;
    z-index: 12;
    margin-right: -8px;
    margin-left: -8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
  }

  .summary-box {
    position: static;
  }

  .cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .cart-item img,
  .cart-item .image-placeholder {
    width: 74px;
    min-height: 74px;
  }

  .cart-item__tools {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
  }

  .floating-shop-link {
    left: 18px;
    bottom: 132px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .catalog-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .catalog-head h1 {
    font-size: 24px;
  }

  .catalog-tabs,
  .category-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .catalog-tabs a,
  .category-chips a {
    flex: none;
  }
}

@media (max-width: 1180px) {
  .store-page .hero__inner {
    gap: 28px;
  }

  .store-page .hero__visual {
    flex-basis: 480px;
  }

  .store-page .hero-showcase {
    grid-template-columns: minmax(0, 1.15fr) 172px;
  }

  .store-page .hero-showcase__mini img {
    height: 64px;
  }

  .admin-shell {
    min-width: 1180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase::before,
  .hero-showcase.is-rolling .hero-showcase__main img,
  .hero-showcase.is-rolling .hero-showcase__mini {
    animation: none;
  }
}
