:root {
  --paper: #fafaf8;
  --surface: #ffffff;
  --ink: #292a28;
  --muted-ink: #77746f;
  --line: #dedbd5;
  --soft: #f3f0ea;
  --moss: #292a28;
  --moss-2: #1f201e;
  --cream-band: #f7f5f0;
  --cream-footer: #eee9df;
  --charcoal: #3f4140;
  --gold: #9c8158;
  --danger: #b34138;
  --success: #1f6d4f;
  --purchase-green: #00c853;
  --shadow: 0 16px 42px rgba(35, 35, 31, 0.07);
  --serif: "Cormorant Garamond", Georgia, serif;
  --korean-serif: "Noto Serif JP", Georgia, serif;
  --sans: "Noto Sans JP", Inter, Arial, sans-serif;
  --container: 1280px;
  color-scheme: light;
  font-family: var(--sans);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

body.order-contact-open {
  overflow: hidden;
}

body.welcome-coupon-open {
  overflow: hidden;
}

.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;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page-loader {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.loader-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.12);
  background: rgba(248, 246, 240, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  width: max-content;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
  text-transform: lowercase;
  white-space: nowrap;
}

.brand-logo small {
  font-family: var(--sans);
  color: var(--charcoal);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.nav-category-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-category-link {
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.nav-submenu {
  min-width: 154px;
  display: grid;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 70;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(24, 26, 21, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-category-item:hover .nav-submenu,
.nav-category-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  font-size: 12px;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  color: #fff;
  background: var(--moss);
}

.nav-submenu a::after {
  content: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.language-button {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.header-icon-link {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease;
}

.header-icon-link:hover,
.header-icon-link[aria-current="page"] {
  color: var(--gold);
  background: rgba(23, 23, 19, 0.06);
}

.header-icon-link .detail-icon {
  width: 20px;
  height: 20px;
}

.header-art-icon {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.bag-link {
  position: relative;
}

.notice-count,
.bag-count {
  position: absolute;
  top: -2px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 9px;
  line-height: 1;
  pointer-events: none;
}

.menu-button {
  display: none;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: transparent;
  color: transparent;
  position: relative;
}

.menu-button::before,
.menu-button::after,
.menu-button span {
  content: "";
  position: absolute;
  left: 8px;
  width: 20px;
  height: 1px;
  background: var(--ink);
}

.menu-button::before { top: 10px; }
.menu-button span { top: 17px; }
.menu-button::after { top: 24px; }

.mobile-drawer,
.drawer-backdrop {
  display: none;
}

.hero {
  min-height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream-band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 850px);
  margin: auto;
  padding: 14px 0;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto 6px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-copy {
  margin-bottom: 14px;
  color: var(--muted-ink);
  font-size: 12px;
}

.hero-search {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 5px 7px 5px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.search-symbol {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  position: relative;
}

.search-symbol::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.5px;
  right: -5px;
  bottom: -2px;
  background: var(--muted);
  transform: rotate(45deg);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.hero-search input::placeholder {
  color: var(--muted);
}

.hero-search button {
  flex: 0 0 auto;
  min-width: 80px;
  height: 34px;
  padding: 0 14px;
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.home-notice-section {
  padding: 30px 0 0;
  background: var(--surface);
}

.home-notice-board {
  min-height: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.home-notice-header {
  min-height: 158px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  background: #fbfaf7;
}

.home-notice-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #dd8a00;
  background: #fff4df;
}

.home-notice-icon .detail-icon {
  width: 19px;
  height: 19px;
}

.home-notice-heading-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.home-notice-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.home-notice-header a {
  color: var(--muted-ink);
  font-size: 10px;
  font-weight: 600;
}

.home-notice-list {
  padding: 1px 18px;
}

.home-notice-row,
.notice-page-row {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 0;
  border-bottom: 1px dotted #d5d9d5;
}

.home-notice-row:last-child {
  border-bottom: 0;
}

.home-notice-row span,
.notice-page-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-notice-row time,
.notice-page-row time {
  color: var(--muted-ink);
  font-size: 12px;
}

.home-notice-row:hover span,
.notice-page-row:hover span {
  color: var(--moss);
}

.home-notice-empty,
.notice-page-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--muted-ink);
  font-size: 13px;
  text-align: center;
}

.home-notice-section + #best {
  padding-top: 58px;
}

.notice-page-list {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.notice-page-row {
  min-height: 68px;
  margin: 0;
  padding: 0 18px;
  font-size: 15px;
}

.notice-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.notice-pagination button {
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted-ink);
  font-size: 12px;
}

.notice-pagination button:hover,
.notice-pagination button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.notice-pagination button:disabled {
  opacity: 0.35;
}

.notice-detail {
  max-width: 920px;
}

.notice-back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--muted-ink);
  font-size: 12px;
}

.notice-detail header {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.notice-detail h1 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}

.notice-detail time {
  color: var(--muted-ink);
  font-size: 12px;
}

.notice-detail-content {
  min-height: 260px;
  padding: 38px 0;
  font-size: 14px;
  line-height: 2;
  white-space: pre-wrap;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-title,
.page-title {
  margin: 0;
  font-family: var(--korean-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
}

.segment-control {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border: 1px solid var(--line);
  background: var(--surface);
}

.segment-control button {
  min-width: 72px;
  height: 38px;
  padding: 0 15px;
  background: transparent;
  font-size: 12px;
}

.segment-control button + button {
  border-left: 1px solid var(--line);
}

.segment-control button.active {
  color: #fff;
  background: var(--ink);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px 22px;
}

.soft-load-panel {
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 32px;
}

.soft-load-button {
  width: min(220px, 100%);
  min-height: 44px;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
}

.soft-load-button small {
  color: var(--muted-ink);
  font-size: 10px;
  font-weight: 500;
}

.soft-load-button:disabled {
  opacity: 0.55;
}

.product-card {
  min-width: 0;
}

.product-image-wrap {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

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

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 42px;
}

.product-pagination button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--body-ink);
  background: #fff;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.product-pagination button:hover:not(:disabled),
.product-pagination button.active {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
}

.product-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.product-meta {
  padding-top: 14px;
}

.product-brand {
  margin-bottom: 5px;
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 46px;
  margin-bottom: 8px;
  font-family: var(--korean-serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.product-grade-summary {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: -2px 0 8px;
}

.product-grade-summary span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted-ink);
  background: #fff;
  font-size: 10px;
  font-weight: 600;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}

.price {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.compare-price {
  color: #8b877d;
  font-size: 11px;
  text-decoration: line-through;
}

.all-products-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
}

.filter-panel {
  align-self: start;
  position: sticky;
  top: 104px;
}

.filter-label {
  margin-bottom: 18px;
  color: var(--muted-ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-filter-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.filter-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  background: transparent;
  font-size: 13px;
  text-align: left;
}

.filter-count {
  color: var(--muted-ink);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.filter-button.active,
.filter-button:hover {
  color: var(--charcoal);
  font-weight: 600;
}

.filter-button.active .filter-count,
.filter-button:hover .filter-count {
  color: inherit;
}

.filter-toolbar-mobile {
  display: none;
}

.sidebar-subcategory-filter {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.sidebar-subcategory-list {
  display: grid;
  gap: 8px;
}

.subcategory-filter-link {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted-ink);
  background: transparent;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.subcategory-filter-link .filter-count {
  flex: 0 0 auto;
  font-size: 9px;
}

.subcategory-filter-link:hover,
.subcategory-filter-link.active {
  border-color: var(--moss);
  color: #fff;
  background: var(--moss);
}

.subcategory-filter-link:hover .filter-count,
.subcategory-filter-link.active .filter-count {
  color: inherit;
}

.mobile-subcategory-filter {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.subcategory-filter-label {
  margin-bottom: 10px;
  color: var(--muted-ink);
  font-size: 10px;
  font-weight: 600;
}

.subcategory-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.mobile-filter-heading {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-filter-heading span {
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-filter-heading strong {
  font-size: 26px;
  line-height: 1;
}

.filter-toolbar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 8px;
}

.empty-state {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted-ink);
  text-align: center;
}

.site-footer {
  color: #f5f3ef;
  background: #2d2e2c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 54px;
  padding: 68px 0 56px;
}

.footer-brand {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.footer-copy {
  max-width: 360px;
  color: rgba(245, 243, 239, 0.66);
  font-size: 12px;
  line-height: 1.9;
}

.footer-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.footer-title-link {
  display: inline-block;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(245, 243, 239, 0.7);
  font-size: 12px;
}

.footer-links a:hover {
  color: #d7b873;
}

.footer-link-disabled {
  opacity: 0.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 243, 239, 0.54);
  font-size: 10px;
}

.content-main {
  min-height: 640px;
}

.page-shell {
  padding: 72px 0 100px;
}

.page-header {
  margin-bottom: 44px;
}

.breadcrumb {
  margin-bottom: 10px;
  color: var(--muted-ink);
  font-size: 11px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 64px;
  align-items: start;
}

.product-page {
  background: #faf7f2;
}

.product-page.page-shell {
  padding-top: 34px;
}

.detail-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  padding-top: 2px;
}

.detail-brand {
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 400;
}

.detail-info h1 {
  margin: 9px 0 13px;
  font-family: var(--korean-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted-ink);
  font-size: 13px;
}

.single-rating-star {
  color: #eeaa00;
  font-size: 16px;
}

.stars {
  color: var(--gold);
}

.detail-price-block {
  margin-bottom: 18px;
}

.detail-price-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discount-label {
  color: #ff2842;
  font-size: 14px;
}

.detail-compare {
  color: var(--muted-ink);
  font-size: 13px;
  text-decoration: line-through;
}

.detail-price {
  display: block;
  margin-top: 4px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.shipping-note {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
}

.detail-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.product-options {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.grade-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 12px;
}

.grade-choice {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--body-ink);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
}

.grade-choice:hover,
.grade-choice.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.inquiry-only-price .detail-price {
  margin-top: 0;
  color: var(--purchase-green);
  font-size: 24px;
}

.product-option-group + .product-option-group {
  margin-top: 10px;
}

.option-label {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 600;
}

.color-choice-list,
.size-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.color-choice,
.size-choice,
.full-box-choice {
  min-height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
}

.color-choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px 0 7px;
}

.color-choice i {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.size-choice {
  min-width: 42px;
  padding: 0 10px;
}

.full-box-choice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.full-box-choice {
  padding: 0 12px;
}

.color-choice.active,
.size-choice.active,
.full-box-choice.active {
  border-color: var(--ink);
  color: var(--ink);
  background: #f0ede7;
}

.quantity-row,
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.quantity-control {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  height: 48px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.quantity-control button,
.quantity-control span {
  display: grid;
  place-items: center;
  background: transparent;
}

.quantity-control button:hover {
  background: var(--soft);
}

.total-row strong {
  font-size: 28px;
  line-height: 1.2;
}

.primary-button,
.secondary-button,
.outline-button,
.danger-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

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

.primary-button:hover {
  background: var(--moss-2);
}

.secondary-button {
  color: #fff;
  background: var(--ink);
}

.outline-button {
  border-color: var(--line);
  background: transparent;
}

.outline-button:hover {
  border-color: var(--ink);
}

.danger-button {
  border-color: rgba(179, 65, 56, 0.3);
  color: var(--danger);
  background: transparent;
}

.wide-button {
  width: 100%;
}

.purchase-button {
  width: 100%;
  min-height: 58px;
  margin: 16px 0 10px;
  color: #fff;
  background: var(--purchase-green);
  font-size: 15px;
  font-weight: 600;
}

.purchase-button:hover {
  background: #00ad48;
}

.purchase-button:disabled,
.detail-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.purchase-button:disabled:hover {
  background: var(--purchase-green);
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.detail-actions .detail-chat-button:only-child {
  grid-column: 1 / -1;
}

.detail-actions .detail-chat-button {
  position: relative;
  width: 100%;
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.detail-actions .line-inquiry-icon {
  position: static;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.detail-actions .detail-chat-button span {
  width: auto;
  text-align: left;
}

.detail-actions .detail-chat-button:hover {
  border-color: var(--ink);
  background: transparent;
}

@media (max-width: 420px) {
  .detail-actions .line-inquiry-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

.detail-actions button,
.detail-actions a {
  min-width: 0;
  min-height: 52px;
  gap: 7px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
}

.detail-actions span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.detail-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #655748;
  font-size: 12px;
}

.detail-category-row strong {
  color: var(--ink);
  font-weight: 500;
}

.product-story {
  margin-top: 82px;
  padding: 58px 0 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.product-content-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-content-tab {
  min-height: 62px;
  position: relative;
  border: 0;
  color: var(--muted-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}

.product-content-tab + .product-content-tab {
  border-left: 1px solid var(--line);
}

.product-content-tab::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 2px;
  background: transparent;
}

.product-content-tab:hover,
.product-content-tab:focus-visible,
.product-content-tab.active {
  color: var(--ink);
  background: #f7f8f7;
}

.product-content-tab.active::after {
  background: var(--moss);
}

.product-content-tab span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 50%;
  color: #fff;
  background: var(--moss);
  font-size: 9px;
}

.product-content-tabs + .product-story,
.product-content-tabs + .product-reviews {
  margin-top: 0;
  border-top: 0;
}

.product-story h2 {
  margin-bottom: 32px;
  font-family: var(--korean-serif);
  font-size: 36px;
  font-weight: 500;
}

.product-story p {
  max-width: 920px;
  margin: 0 auto 18px;
  color: var(--muted-ink);
  font-size: 17px;
  line-height: 2;
}

.product-detail-gallery {
  display: grid;
  gap: 24px;
  margin-top: 76px;
}

.product-detail-gallery img {
  width: 100%;
  height: auto;
  background: var(--soft);
}

.product-reviews {
  margin-top: 82px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.review-section-header h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.review-summary-row,
.review-summary-main,
.review-form-heading,
.review-item header,
.review-item header > div {
  display: flex;
  align-items: center;
}

.review-summary-row,
.review-form-heading,
.review-item header {
  justify-content: space-between;
  gap: 24px;
}

.review-summary-main {
  gap: 9px;
  white-space: nowrap;
}

.review-summary-main strong {
  font-size: 17px;
}

.review-summary-main > span:last-child,
.review-summary-row > p,
.review-item time {
  color: var(--muted-ink);
  font-size: 12px;
}

.review-summary-row > p {
  margin: 0;
  text-align: right;
}

.review-stars {
  display: inline-flex;
  color: #d9a400;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.review-stars > span {
  color: #c6c8c4;
}

.review-form,
.review-status-note {
  margin-top: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-form {
  display: grid;
  gap: 22px;
}

.review-form-heading > div:first-child {
  display: grid;
  gap: 4px;
}

.review-form-heading span,
.review-comment-field > span {
  color: var(--muted-ink);
  font-size: 11px;
}

.review-form-heading strong {
  font-size: 15px;
}

.review-rating-input {
  display: grid;
  grid-template-columns: repeat(5, 38px);
}

.review-rating-input button {
  width: 38px;
  height: 38px;
  color: #c6c8c4;
  background: transparent;
  font-size: 27px;
  line-height: 1;
}

.review-rating-input button.active {
  color: #d9a400;
}

.review-comment-field > span {
  display: block;
  margin-bottom: 8px;
}

.review-comment-field textarea {
  width: 100%;
  min-height: 126px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  resize: vertical;
  background: #fff;
  font: inherit;
  line-height: 1.65;
}

.review-comment-field textarea:focus {
  border-color: var(--moss);
  outline: 1px solid var(--moss);
}

.review-image-field > label {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  margin-bottom: 9px;
  border: 1px solid var(--line);
  color: var(--body-ink);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.review-image-field > label small {
  margin-left: 5px;
  color: var(--muted-ink);
  font-size: 10px;
  font-weight: 400;
}

.review-image-field > input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.review-image-field > input[type="file"]:focus-visible + label {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

.review-image-previews {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(5, minmax(84px, 120px));
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed var(--line);
}

.review-image-preview {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.review-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-image-preview button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(20, 28, 24, 0.8);
  font-size: 18px;
}

.review-image-empty {
  align-self: center;
  color: var(--muted-ink);
  font-size: 11px;
}

.review-form-actions {
  display: flex;
  justify-content: flex-end;
}

.review-form-actions .primary-button {
  min-width: 160px;
}

.review-status-note {
  color: var(--muted-ink);
  font-size: 12px;
}

.review-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.review-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.review-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.review-pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  color: var(--body-ink);
  background: #fff;
  font-size: 12px;
}

.review-pagination button:hover,
.review-pagination button:focus-visible,
.review-pagination button.active {
  border-color: var(--moss);
  color: #fff;
  background: var(--moss);
}

.review-item header {
  margin-bottom: 11px;
}

.review-item header > div {
  gap: 9px;
}

.review-item header strong {
  font-size: 13px;
}

.verified-review {
  padding: 3px 6px;
  color: var(--moss);
  border: 1px solid #b8cec5;
  font-size: 9px;
  font-weight: 600;
}

.review-item .review-stars {
  font-size: 14px;
}

.review-item p {
  margin: 12px 0 0;
  color: var(--body-ink);
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.review-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 150px));
  gap: 10px;
  margin-top: 16px;
}

.review-photo-grid a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.review-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-empty {
  min-height: 178px;
  display: grid;
  place-items: center;
  margin-top: 30px;
  padding: 30px;
  border: 1px dashed var(--line);
  color: var(--muted-ink);
  font-size: 13px;
  text-align: center;
}

.auth-page {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 64px 24px;
  background: #eef1ed;
}

.auth-panel {
  width: min(100%, 480px);
  padding: 40px 38px;
  border: 1px solid #d6dcd8;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.auth-brand {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  text-align: center;
}

.auth-panel h1 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  text-align: center;
}

.auth-intro {
  margin-bottom: 28px;
  color: var(--muted-ink);
  font-size: 12px;
  text-align: center;
}

.oauth-stack {
  display: grid;
  gap: 10px;
}

.oauth-button {
  position: relative;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.oauth-button:not(:disabled):hover {
  filter: brightness(0.97);
}

.oauth-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.oauth-kakao {
  color: #191919;
  background: #fee500;
}

.oauth-google {
  border-color: #d7dce1;
  color: #202124;
  background: #fff;
}

.oauth-mark {
  position: absolute;
  left: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.oauth-kakao .oauth-mark {
  background: #191919;
  color: #fee500;
  font-size: 12px;
}

.oauth-google .oauth-mark {
  background: #fff;
}

.oauth-google .oauth-mark img {
  width: 18px;
  height: 18px;
  display: block;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 14px;
  color: var(--muted-ink);
  font-size: 11px;
  white-space: nowrap;
}

.auth-divider::before,
.auth-divider::after {
  width: 100%;
  height: 1px;
  content: "";
  background: var(--line);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.auth-tabs button {
  min-height: 42px;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 13px;
}

.auth-tabs button.active {
  border-color: var(--moss);
  color: var(--moss);
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two-columns {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  font-size: 12px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea,
.cart-qty {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #fff;
}

.field textarea {
  min-height: 100px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--moss);
}

.checkbox-row,
.radio-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
}

.checkbox-row input,
.radio-row input {
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--moss);
}

.inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-submit {
  margin-top: 4px;
}

.auth-hint {
  margin: 20px 0 0;
  color: var(--muted-ink);
  font-size: 11px;
  text-align: center;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: start;
}

.cart-list {
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 100px 120px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cart-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product h2 {
  margin: 3px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
}

.cart-product small {
  color: var(--muted-ink);
}

.cart-option-text {
  display: block;
  margin-top: 7px;
  color: var(--muted-ink);
  font-size: 11px;
  line-height: 1.55;
}

.cart-option-editors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 12px;
}

.cart-option-field {
  min-width: 0;
}

.cart-option-field.full {
  grid-column: 1 / -1;
}

.cart-option-field > span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-ink);
  font-size: 10px;
}

.cart-option-field select {
  width: 100%;
  min-height: 36px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit;
  font-size: 11px;
}

.cart-remove {
  display: block;
  margin-top: 14px;
  padding: 0;
  color: var(--danger);
  background: transparent;
  font-size: 11px;
}

.cart-qty {
  min-height: 42px;
  text-align: center;
}

.cart-stepper {
  margin-top: 8px;
  grid-template-columns: 30px 34px 30px;
  height: 38px;
}

.cart-line-total {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.summary-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.summary-panel h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: var(--muted-ink);
  font-size: 12px;
}

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

.continue-link {
  display: block;
  margin-top: 17px;
  color: var(--muted-ink);
  font-size: 11px;
  text-align: center;
}

.checkout-shell {
  padding: 46px 0 90px;
  background: #fff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 64px;
  align-items: start;
}

.checkout-form {
  min-width: 0;
}

.checkout-section {
  margin-bottom: 34px;
}

.checkout-section h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.saved-order-section select {
  text-overflow: ellipsis;
}

.checkout-help {
  margin-top: -8px;
  margin-bottom: 14px;
  color: var(--muted-ink);
  font-size: 11px;
}

.payment-options {
  border: 1px solid var(--line);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  cursor: pointer;
}

.payment-option + .payment-option {
  border-top: 1px solid var(--line);
}

.payment-option:has(input:checked) {
  background: #edf4f1;
}

.payment-option input {
  accent-color: var(--moss);
}

.payment-detail {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f7f8f5;
}

.bank-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bank-details div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
}

.bank-details dt {
  color: var(--muted-ink);
  font-size: 11px;
}

.bank-details dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.bank-transfer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.bank-transfer-fields .field {
  gap: 6px;
}

.bank-transfer-fields .field label {
  font-size: 11px;
}

.bank-transfer-fields .field input {
  min-width: 0;
  min-height: 44px;
  background: #fff;
}

.payment-empty,
.card-payment-detail {
  margin-bottom: 0;
  color: var(--body-ink);
  font-size: 12px;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  padding: 28px;
  background: #f4f3ef;
}

.checkout-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.checkout-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}

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

.checkout-thumb span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 50%;
  color: #fff;
  background: #555;
  font-size: 9px;
}

.checkout-line-name {
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
}

.checkout-line-name small {
  display: block;
  margin-top: 3px;
  color: var(--muted-ink);
}

.checkout-line-name .checkout-line-options {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.45;
}

.checkout-line-price {
  display: grid;
  justify-items: end;
  gap: 7px;
  font-size: 12px;
  white-space: nowrap;
}

.checkout-remove {
  padding: 0;
  color: var(--danger);
  background: transparent;
  font-size: 10px;
}

.checkout-owned-coupons {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.checkout-owned-coupons label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--body-ink);
  font-size: 11px;
  font-weight: 600;
}

.checkout-owned-coupons label strong {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 10px;
  color: #fff;
  background: var(--moss);
  font-size: 10px;
}

.checkout-owned-coupons select {
  width: 100%;
  min-height: 48px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--body-ink);
  background: #fff;
  font: inherit;
  font-size: 11px;
}

.account-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 50px;
}

.account-nav {
  align-self: start;
  position: sticky;
  top: 104px;
  border-top: 1px solid var(--line);
}

.account-nav button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
  text-align: left;
}

.account-nav button.active {
  color: var(--gold);
}

.account-coupon-count {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 10px;
  color: #fff;
  background: var(--moss);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.account-panel h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.account-coupon-list {
  border-top: 1px solid var(--line);
}

.account-coupon-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.account-coupon-value strong,
.account-coupon-value span,
.account-coupon-detail span {
  display: block;
}

.account-coupon-value strong {
  color: var(--body-ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.account-coupon-value span,
.account-coupon-detail span {
  margin-top: 5px;
  color: var(--muted-ink);
  font-size: 10px;
}

.account-coupon-detail {
  min-width: 0;
}


.account-coupon-empty {
  min-height: 180px;
}

.profile-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-name {
  font-family: var(--serif);
  font-size: 27px;
}

.profile-email {
  color: var(--muted-ink);
  font-size: 12px;
}

.account-summary-heading {
  margin-top: 42px;
}

.account-summary-heading h3 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.account-summary-count {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.account-summary-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.account-summary-separator {
  margin: 0 4px;
  color: var(--muted-ink);
  font-size: 20px;
}

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

.account-order-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.account-order-pagination button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--body-ink);
  background: #fff;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.account-order-pagination button:hover:not(:disabled),
.account-order-pagination button.active {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
}

.account-order-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.order-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.order-number {
  font-size: 13px;
  font-weight: 700;
}

.order-date {
  color: var(--muted-ink);
  font-size: 10px;
}

.order-head-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-badge {
  padding: 6px 10px;
  color: var(--moss);
  background: #e0ebe7;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.order-items {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.order-history-item + .order-history-item {
  margin-top: 12px;
}

.order-history-item img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: cover;
  background: var(--soft);
}

.order-history-detail {
  min-width: 0;
}

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

.order-history-detail strong {
  color: var(--body-ink);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.order-history-qty {
  display: inline !important;
  margin-left: 5px;
  color: var(--muted-ink);
  font-size: 11px;
  font-weight: 500;
}

.order-history-detail span:not(.order-history-qty) {
  margin-top: 5px;
  color: var(--muted-ink);
  font-size: 10px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.order-history-detail .order-history-item-price {
  color: var(--body-ink);
  font-weight: 700;
}

.order-history-item.has-return {
  padding: 8px;
  border-left: 3px solid #9a4c3e;
  background: #faf4f1;
}

.order-history-detail .order-history-return {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 7px;
  padding: 3px 7px;
  border: 1px solid #d7b5ad;
  border-radius: 3px;
  color: #7b342b;
  background: #fff;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
}

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

.order-review-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid #b89b22;
  background: #fffbea;
}

.order-review-message,
.order-review-actions {
  display: grid;
  gap: 7px;
}

.order-review-message strong {
  font-size: 13px;
}

.order-review-message span {
  color: var(--muted-ink);
  font-size: 11px;
  line-height: 1.6;
}

.order-review-actions a {
  min-width: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 11px;
  border: 1px solid #cbbd80;
  background: #fff;
  color: var(--body-ink);
  font-size: 11px;
}

.order-review-actions a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-review-actions a strong {
  flex: 0 0 auto;
  color: var(--moss);
  font-size: 11px;
}

.order-review-actions a:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

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

.order-tracking span {
  margin-bottom: 3px;
  color: var(--muted-ink);
  font-size: 10px;
}

.order-tracking strong {
  font-size: 12px;
  overflow-wrap: anywhere;
}

.order-tracking .outline-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
}

.order-history-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 18px 0 0;
  padding: 10px 18px;
  border-radius: 4px;
  background: #fee500;
  color: #151515;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.order-history-kakao[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.order-history-kakao .kakao-talk-mark {
  width: 30px;
  height: 23px;
  margin-right: 8px;
  font-size: 7px;
}

.order-history-kakao .kakao-talk-mark::after {
  width: 7px;
  height: 7px;
  bottom: -3px;
}

.order-history-kakao:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 2px;
}

.order-history-kakao-mobile {
  display: none;
}

.order-history-kakao-desktop {
  width: 25%;
  margin-left: auto;
}

.order-total {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.order-total-block {
  min-width: 0;
  text-align: right;
}

.order-coupon-discount {
  margin-top: 4px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 600;
}

.confirmation-box .order-coupon-discount {
  color: var(--moss);
  font-size: 12px;
}

.order-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.order-card-footer .outline-button {
  min-height: 38px;
  padding: 0 16px;
}

.order-card-footer .order-total {
  margin-top: 0;
}

.confirmation {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0 120px;
  text-align: center;
}

.confirmation-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  font-size: 28px;
}

.confirmation h1 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
}

.confirmation p {
  color: var(--muted-ink);
}

.confirmation-box {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
}

.confirmation-box .summary-row:last-child {
  margin-bottom: 0;
}

.confirmation-card-inquiry {
  display: grid;
  gap: 12px;
  margin: -10px 0 30px;
}

.confirmation-card-inquiry p {
  margin: 0;
  font-size: 12px;
}

.confirmation-chat-button {
  width: 100%;
  min-height: 52px;
  gap: 8px;
}

.confirmation-chat-button .detail-icon {
  width: 18px;
  height: 18px;
}

.confirmation .detail-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.welcome-coupon-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}

.welcome-coupon-dialog {
  position: relative;
  width: min(100%, 440px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 48px 38px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.welcome-coupon-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  background: transparent;
  color: #171713;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.welcome-coupon-kicker {
  margin: 0 0 10px;
  color: #7b6300;
  font-size: 12px;
  font-weight: 700;
}

.welcome-coupon-dialog h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
}

.welcome-coupon-message {
  margin: 12px 0 22px;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.7;
}

.welcome-coupon-value {
  color: #171713;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.welcome-coupon-saved {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px dashed #b89b22;
  background: #fffbea;
  text-align: center;
}

.welcome-coupon-saved strong {
  color: #6f5900;
  font-size: 14px;
  font-weight: 700;
}

.welcome-coupon-saved span {
  color: var(--muted-ink);
  font-size: 12px;
  line-height: 1.6;
}

.welcome-coupon-condition {
  margin: 12px 0 0;
  color: var(--muted-ink);
  font-size: 12px;
}

.welcome-coupon-confirm {
  width: 100%;
  min-height: 50px;
  margin: 26px 0 0;
  border-radius: 4px;
  background: var(--moss);
  color: #fff;
  font-weight: 700;
}

.welcome-coupon-close:focus-visible,
.welcome-coupon-confirm:focus-visible {
  outline: 3px solid #c49c00;
  outline-offset: 2px;
}

.order-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
}

.order-contact-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 80px 58px 46px;
  border-radius: 8px;
  background: #f7f7f7;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.order-contact-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
}

.order-contact-close:focus-visible,
.order-contact-kakao:focus-visible,
.order-contact-complete:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.order-contact-details {
  display: grid;
  gap: 20px;
  margin: 0 0 48px;
  font-size: 22px;
  line-height: 1.5;
}

.order-contact-details div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
}

.order-contact-details dt {
  font-weight: 700;
}

.order-contact-details dt::after {
  content: ":";
}

.order-contact-details dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.order-contact-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 14px 20px;
  border-radius: 999px;
  background: #fee500;
  color: #151515;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.order-contact-kakao[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.kakao-talk-mark {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: #181600;
  color: #fee500;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

.kakao-talk-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  background: #181600;
  transform: rotate(32deg);
}

.order-contact-warning {
  margin-top: 28px;
  padding: 26px 28px;
  border: 1px solid #cfcfcf;
  background: #fff;
}

.order-contact-warning h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #e01818;
  font-size: 28px;
  font-weight: 800;
}

.warning-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  padding-top: 6px;
  background: #e01818;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.order-contact-warning p {
  margin: 0;
  color: #181818;
  font-size: 17px;
  line-height: 2;
  text-align: center;
  overflow-wrap: anywhere;
}

.order-contact-complete {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 64px;
  margin: 32px auto 0;
  padding: 12px 28px;
  border-radius: 999px;
  background: #08c982;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.order-contact-complete span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  color: #08b975;
  font-size: 25px;
  font-weight: 800;
}

.static-content {
  max-width: 820px;
}

.static-content h1 {
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
}

.static-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.static-content p,
.static-content li {
  color: #55534d;
  font-size: 13px;
  line-height: 2;
}

.static-content p {
  white-space: pre-line;
}

.static-content ul {
  padding-left: 18px;
}

.not-found {
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 400;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: min(420px, calc(100% - 48px));
  padding: 13px 18px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: var(--danger);
}

.back-to-top-button,
.page-back-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 55;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: #fff;
  background: #173047;
  box-shadow: 0 8px 24px rgba(14, 27, 39, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background 180ms ease;
}

.page-back-button {
  bottom: 88px;
}

.back-to-top-button.visible,
.page-back-button.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-button:hover,
.back-to-top-button:focus-visible,
.back-to-top-button:active,
.page-back-button:hover,
.page-back-button:focus-visible,
.page-back-button:active {
  background: #10263a;
}

.back-to-top-button .detail-icon,
.page-back-button .detail-icon {
  width: 22px;
  height: 22px;
}

body.drawer-open .back-to-top-button,
body.order-contact-open .back-to-top-button,
body.welcome-coupon-open .back-to-top-button,
body.drawer-open .page-back-button,
body.order-contact-open .page-back-button,
body.welcome-coupon-open .page-back-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav .nav-extra {
    display: none;
  }

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

  .product-detail {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .menu-button {
    display: block;
  }

  .brand-logo {
    font-size: 24px;
  }

  .brand-logo small,
  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-link {
    display: inline-flex;
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bag-link {
    font-size: 10px;
  }

  .bag-link::before {
    content: none;
  }

  .drawer-backdrop {
    display: block;
    position: fixed;
    inset: 70px 0 0;
    z-index: 58;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    z-index: 60;
    width: min(82vw, 340px);
    padding: 30px 24px;
    background: var(--paper);
    transform: translateX(-101%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }

  .mobile-drawer nav {
    display: grid;
  }

  .mobile-drawer nav > a,
  .mobile-drawer-category-row > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 22px;
  }

  .mobile-drawer-category {
    border-bottom: 1px solid var(--line);
  }

  .mobile-drawer-category-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: stretch;
  }

  .mobile-drawer-category-row > a {
    min-width: 0;
    border-bottom: 0;
  }

  .drawer-category-toggle {
    width: 46px;
    min-height: 52px;
    display: grid;
    place-items: center;
    align-self: center;
    color: var(--ink);
    background: transparent;
  }

  .drawer-category-toggle .detail-icon {
    width: 20px;
    height: 20px;
    transition: transform 180ms ease;
  }

  .mobile-drawer-category.expanded .drawer-category-toggle .detail-icon {
    transform: rotate(180deg);
  }

  .mobile-drawer-subcategories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    padding: 4px 0 13px;
  }

  .mobile-drawer-subcategories[hidden] {
    display: none;
  }

  .mobile-drawer .mobile-drawer-subcategories a {
    min-width: 0;
    padding: 9px 2px;
    border-bottom: 0;
    color: var(--muted-ink);
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .mobile-drawer .mobile-drawer-subcategories a[aria-current="page"] {
    color: var(--moss);
    font-weight: 700;
  }

  .mobile-drawer .drawer-account {
    margin-top: 28px;
  }

  body.drawer-open .mobile-drawer {
    transform: translateX(0);
  }

  body.drawer-open .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 190px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .all-products-layout {
    display: block;
  }

  .filter-panel {
    display: none;
  }

  .filter-toolbar-mobile {
    display: block;
    margin-bottom: 28px;
  }

  .filter-toolbar-grid .filter-button {
    width: 100%;
    min-height: 52px;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .filter-toolbar-grid .filter-button span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .filter-toolbar-grid .filter-button.active {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-info {
    padding-top: 0;
  }

  .detail-info h1 {
    font-size: 34px;
  }

  .product-detail-gallery {
    gap: 14px;
    margin-top: 42px;
  }

  .product-reviews {
    margin-top: 52px;
    padding-top: 42px;
  }

  .review-summary-row,
  .review-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .review-summary-row > p {
    text-align: left;
  }

  .cart-layout,
  .checkout-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .summary-panel,
  .checkout-summary,
  .account-nav {
    position: static;
  }

  .checkout-summary {
    order: -1;
  }

  .account-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
  }

  .account-nav button {
    justify-content: center;
    padding: 0 4px;
    border-bottom: 0;
    font-size: 10px;
    text-align: center;
  }

  .account-nav button + button {
    border-left: 1px solid var(--line);
  }

  .account-coupon-count {
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 9px;
  }

  .account-coupon-item {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .back-to-top-button,
  .page-back-button {
    right: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
  }

  .page-back-button {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .back-to-top-button .detail-icon,
  .page-back-button .detail-icon {
    width: 21px;
    height: 21px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-actions {
    margin-left: auto;
    gap: 7px;
  }

  .brand-logo {
    font-size: 18px;
  }

  .language-button {
    min-width: 30px;
    padding: 0 6px;
  }

  .header-link {
    max-width: 64px;
    font-size: 10px;
  }

  .hero {
    min-height: 92px;
    place-items: center;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 6px 0;
  }

  .hero-kicker {
    display: none;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.16;
  }

  .hero-copy {
    max-width: 330px;
    margin: 0 auto 12px;
    font-size: 11px;
  }

  .hero-search {
    min-height: 42px;
    padding: 4px 6px 4px 14px;
  }

  .hero-search button {
    min-width: 70px;
    height: 32px;
    padding: 0 14px;
  }

  .hero-search input {
    font-size: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
  }

  .section-title,
  .page-title {
    font-size: 36px;
  }

  .segment-control {
    width: 100%;
  }

  .segment-control button {
    min-width: 0;
  }

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

  .product-pagination {
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 34px;
  }

  .product-pagination button {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .product-card h3 {
    min-height: 42px;
    font-size: 19px;
  }

  .product-brand {
    font-size: 9px;
  }

  .page-shell {
    padding: 48px 0 76px;
  }

  .page-header {
    margin-bottom: 30px;
  }

  #all .filter-toolbar-grid,
  #category-products .filter-toolbar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px 6px;
  }

  #all .filter-toolbar-grid .filter-button,
  #category-products .filter-toolbar-grid .filter-button {
    min-height: 42px;
    gap: 3px;
    padding: 5px 7px;
    font-size: 9px;
  }

  #all .filter-toolbar-grid .filter-count,
  #category-products .filter-toolbar-grid .filter-count {
    flex: 0 0 auto;
    font-size: 8px;
  }

  #all .mobile-filter-heading,
  #category-products .mobile-filter-heading {
    margin-bottom: 14px;
  }

  #all .mobile-filter-heading strong,
  #category-products .mobile-filter-heading strong {
    font-size: 23px;
  }

  #category-products .subcategory-filter-link {
    min-height: 40px;
    padding: 6px 4px;
    font-size: 10px;
  }

  .detail-info h1 {
    font-size: 31px;
  }

  .product-content-tabs {
    margin-top: 52px;
  }

  .product-content-tab {
    min-height: 54px;
    padding: 0 8px;
    font-size: 13px;
  }

  .product-content-tab::after {
    right: 10px;
    left: 10px;
  }

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

  .total-row strong {
    font-size: 28px;
  }

  .quantity-control {
    grid-template-columns: repeat(3, 46px);
  }

  .full-box-choice-list {
    grid-template-columns: 1fr;
  }

  .review-section-header h2 {
    font-size: 30px;
  }

  .review-rating-input {
    grid-template-columns: repeat(5, 42px);
  }

  .review-rating-input button {
    width: 42px;
    height: 42px;
  }

  .review-image-previews,
  .review-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .detail-actions button,
  .detail-actions a {
    min-height: 62px;
    flex-direction: column;
    gap: 5px;
    padding: 7px 4px;
    font-size: 12px;
  }

  .auth-page {
    min-height: 650px;
    padding: 36px 14px;
  }

  .auth-panel {
    padding: 32px 22px;
  }

  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr) 76px;
    gap: 14px;
    align-items: start;
  }

  .cart-line-total {
    grid-column: 2 / -1;
    margin-top: -22px;
  }

  .cart-product h2 {
    font-size: 20px;
  }

  .cart-stepper {
    width: 68px;
    grid-template-columns: 22px 24px 22px;
  }

  .checkout-shell {
    padding-top: 28px;
  }

  .checkout-summary {
    padding: 20px;
  }

  .profile-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-nav {
    overflow-x: auto;
  }

  .order-head {
    flex-direction: column;
    gap: 8px;
  }

  .order-head-status {
    justify-content: space-between;
    width: 100%;
  }

  .order-history-kakao-desktop {
    display: none;
  }

  .order-history-kakao-mobile {
    display: flex;
    width: auto;
    min-height: 34px;
    margin: 0;
    padding: 5px 11px;
    font-size: 12px;
    white-space: nowrap;
  }

  .order-history-kakao-mobile .kakao-talk-mark {
    width: 24px;
    height: 19px;
    margin-right: 6px;
    font-size: 6px;
  }

  .order-history-kakao-mobile .kakao-talk-mark::after {
    width: 6px;
    height: 6px;
    bottom: -2px;
  }

  .order-card-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .order-review-prompt {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .order-tracking {
    align-items: stretch;
    flex-direction: column;
  }

  .order-tracking .outline-button {
    width: 100%;
  }

  .order-card-footer .order-total {
    text-align: left;
  }

  .order-card-footer .order-total-block {
    text-align: left;
  }

  .confirmation {
    padding: 60px 0 90px;
  }

  .confirmation h1 {
    font-size: 38px;
  }

  .welcome-coupon-overlay {
    padding: 14px;
  }

  .welcome-coupon-dialog {
    max-height: calc(100vh - 28px);
    padding: 44px 22px 26px;
  }

  .welcome-coupon-dialog h2 {
    font-size: 21px;
  }

  .welcome-coupon-value {
    font-size: 34px;
  }

  .order-contact-overlay {
    align-items: center;
    padding: 14px;
  }

  .order-contact-dialog {
    max-height: calc(100vh - 28px);
    padding: 68px 24px 28px;
  }

  .order-contact-close {
    width: 54px;
    height: 54px;
    font-size: 36px;
  }

  .order-contact-details {
    gap: 16px;
    margin-bottom: 34px;
    font-size: 18px;
  }

  .order-contact-details div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
  }

  .order-contact-kakao {
    min-height: 58px;
    font-size: 17px;
  }

  .order-contact-warning {
    margin-top: 22px;
    padding: 22px 16px;
  }

  .order-contact-warning h3 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .order-contact-warning p {
    font-size: 15px;
    line-height: 1.9;
  }

  .order-contact-complete {
    min-width: 210px;
    min-height: 58px;
    margin-top: 24px;
    font-size: 19px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding: 52px 0 42px;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-service-block {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-contact-block {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .home-notice-section {
    padding: 20px 0 0;
  }

  .home-notice-board {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-notice-header {
    min-height: 58px;
    gap: 10px;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-notice-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .home-notice-heading-copy {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .home-notice-header h2 {
    font-size: 15px;
  }

  .home-notice-list {
    padding: 0 14px;
  }

  .home-notice-row {
    min-height: 44px;
    gap: 14px;
    margin: 0;
    font-size: 11px;
  }

  .home-notice-row time {
    font-size: 9px;
  }

  .home-notice-section + #best {
    padding-top: 48px;
  }

  .notice-page-row {
    min-height: 62px;
    gap: 14px;
    padding: 0 12px;
    font-size: 13px;
  }

  .notice-detail h1 {
    font-size: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 6px;
  }

  .menu-button {
    flex: 0 0 32px;
    width: 32px;
  }

  .brand-logo {
    font-size: 16px;
  }

  .header-actions {
    gap: 4px;
  }

  .language-button {
    min-width: 28px;
    height: 26px;
    padding: 0 4px;
  }

  .header-link {
    max-width: 46px;
  }

  .bag-link {
    gap: 4px;
    font-size: 9px;
  }

  .bag-count {
    min-width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
