:root {
  --shop-bg: #ffffff;
  --shop-ink: #171717;
  --shop-muted: #6f6a68;
  --shop-line: #eee7e4;
  --shop-soft: #faf6f4;
  --shop-blush: #f4ddd8;
  --shop-primary: #b85f6a;
  --shop-primary-strong: #8d3846;
  --shop-shadow: 0 18px 50px rgba(89, 50, 45, 0.10);
}

.nara-shop-body {
  background: var(--shop-bg);
  color: var(--shop-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-bottom: 150px;
}

.nara-shop-body .mobile-app {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: var(--shop-bg);
  box-shadow: none;
}

.shop-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.shop-topline {
  display: none;
  border-bottom: 1px solid var(--shop-line);
  background: #fff;
  color: var(--shop-muted);
  font-size: 12px;
  font-weight: 700;
}

.shop-topline__inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-topline__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.shop-topline__links a,
.shop-nav__link,
.shop-section__head a {
  color: inherit;
  text-decoration: none;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(238, 231, 228, 0.92);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.shop-header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.shop-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--shop-ink);
  text-decoration: none;
}

.shop-brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--shop-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.shop-brand__text {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.shop-nav {
  display: none;
  height: 100%;
  align-items: center;
  gap: 26px;
  color: var(--shop-muted);
  font-size: 14px;
  font-weight: 700;
}

.shop-nav__link {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
}

.shop-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--shop-primary);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.shop-nav__link:hover::after,
.shop-nav__link.is-active::after {
  transform: scaleX(1);
}

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

.shop-icon-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--shop-ink);
  font: inherit;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.shop-icon-btn:hover {
  background: var(--shop-soft);
}

.shop-main {
  overflow: hidden;
}

.shop-hero {
  display: grid;
  gap: 24px;
  padding: 22px 0 12px;
}

.shop-hero__media {
  position: relative;
  min-width: 0;
}

.shop-hero .hero-banner__viewport {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--shop-soft);
  box-shadow: none;
}

.shop-hero .hero-banner__viewport::after {
  display: none;
}

.shop-hero .hero-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero .hero-banner__dots {
  right: 18px;
  bottom: 18px;
  left: auto;
  justify-content: flex-end;
  width: auto;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.shop-hero .hero-banner__dot {
  width: 7px;
  height: 7px;
  background: rgba(23, 23, 23, 0.28);
}

.shop-hero .hero-banner__dot.is-active {
  width: 20px;
  background: var(--shop-ink);
}

.shop-hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.shop-kicker,
.shop-section__eyebrow {
  color: var(--shop-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shop-hero__title {
  max-width: 680px;
  margin: 0;
  color: var(--shop-ink);
  font-size: clamp(30px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.04;
}

.shop-hero__subtitle,
.shop-hero__desc {
  max-width: 560px;
  margin: 0;
  color: var(--shop-muted);
  font-size: 15px;
  line-height: 1.7;
}

.shop-hero__subtitle {
  color: #3f3b39;
  font-weight: 800;
}

.shop-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 2px;
}

.shop-price {
  color: var(--shop-ink);
  font-size: 26px;
  font-weight: 900;
}

.shop-market-price {
  color: var(--shop-muted);
  font-size: 15px;
  text-decoration: line-through;
}

.shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.shop-primary-btn,
.shop-secondary-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.shop-primary-btn {
  background: var(--shop-ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.16);
}

.shop-secondary-btn {
  border: 1px solid var(--shop-line);
  color: var(--shop-ink);
  background: #fff;
}

.shop-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.shop-mini-stats span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--shop-line);
  border-radius: 10px;
  padding: 0 10px;
  background: var(--shop-soft);
  color: var(--shop-muted);
  font-size: 12px;
  font-weight: 800;
}

.shop-mini-stats strong {
  color: var(--shop-ink);
}

.shop-service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 8px 0 26px;
}

.shop-service-row article {
  min-height: 76px;
  border: 1px solid var(--shop-line);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.shop-service-row strong,
.shop-service-row span {
  display: block;
}

.shop-service-row strong {
  color: var(--shop-ink);
  font-size: 14px;
  font-weight: 900;
}

.shop-service-row span {
  margin-top: 5px;
  color: var(--shop-muted);
  font-size: 12px;
  line-height: 1.55;
}

.shop-section {
  padding: 8px 0 30px;
}

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

.shop-section__head h2 {
  margin: 4px 0 0;
  color: var(--shop-ink);
  font-size: 22px;
  font-weight: 900;
}

.shop-section__head a {
  color: var(--shop-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.shop-product-card {
  min-width: 0;
  color: var(--shop-ink);
  text-decoration: none;
}

.shop-product-card__image {
  position: relative;
  aspect-ratio: 1 / 1.16;
  overflow: hidden;
  border-radius: 12px;
  background: var(--shop-soft);
}

.shop-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shop-product-card:hover img {
  transform: scale(1.035);
}

.shop-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--shop-primary-strong);
  font-size: 11px;
  font-weight: 900;
}

.shop-product-card__body {
  padding: 10px 2px 0;
}

.shop-product-card__name {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--shop-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.48;
}

.shop-product-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
}

.shop-product-card__price {
  color: var(--shop-ink);
  font-size: 14px;
  font-weight: 900;
}

.shop-product-card__stock {
  color: var(--shop-muted);
  font-size: 11px;
  font-weight: 800;
}

.nara-shop-body .detail-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.nara-shop-body .detail-card {
  border: 1px solid var(--shop-line);
  border-radius: 12px;
  box-shadow: none;
}

.nara-shop-body .detail-card img,
.nara-shop-body .detail-card__copy img {
  border-radius: 12px;
}

.nara-shop-body .floating-buybar--fab {
  right: 16px;
  bottom: 88px;
  left: 16px;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--shop-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shop-shadow);
  backdrop-filter: blur(16px);
}

.nara-shop-body .floating-buybar {
  display: none;
}

.nara-shop-body .customer-chat-widget,
.nara-shop-body .customer-chat-toggle,
.nara-shop-body [class*="customer-chat"] {
  z-index: 28;
}

.nara-shop-body .floating-buybar--fab .floating-buybar__single,
.nara-shop-body .primary-button {
  border-radius: 10px;
  background: var(--shop-ink);
  box-shadow: none;
}

.nara-shop-body .bottom-tabs {
  border-top: 1px solid var(--shop-line);
  background: rgba(255, 255, 255, 0.94);
}

.nara-shop-body .bottom-tabs__link {
  color: var(--shop-muted);
}

.nara-shop-body .bottom-tabs__link.is-active {
  color: var(--shop-primary-strong);
}

@media (min-width: 720px) {
  .shop-topline {
    display: block;
  }

  .shop-header__inner {
    height: 72px;
  }

  .shop-nav {
    display: flex;
  }

  .shop-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
    align-items: center;
    gap: 44px;
    padding: 52px 0 38px;
  }

  .shop-service-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 40px;
  }

  .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .nara-shop-body .detail-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .shop-hero {
    min-height: 640px;
  }

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

  .nara-shop-body {
    padding-bottom: 0;
  }

  .nara-shop-body .floating-buybar {
    display: none;
  }
}

@media (max-width: 719px) {
  .shop-shell {
    width: min(100% - 32px, 520px);
  }

  .shop-header__inner {
    width: 100%;
    padding: 0 16px;
  }

  .shop-hero .hero-banner__viewport {
    min-height: 0;
  }

  .shop-hero__title {
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.08;
  }

  .shop-hero__content {
    gap: 12px;
    padding-bottom: 14px;
  }

  .clean-copy-section {
    padding-top: 6px;
  }

  .shop-product-grid {
    gap: 14px;
  }

  .shop-product-card__name {
    font-size: 13px;
  }

  .nara-shop-body .floating-buybar--fab {
    right: 14px;
    bottom: 88px;
    left: 14px;
    padding: 7px;
  }

  .nara-shop-body .floating-buybar--fab .floating-buybar__single {
    min-height: 48px;
  }
}
