:root {
  --bg: var(--ds-color-canvas, #f3f5f6);
  --surface: var(--ds-color-surface, #ffffff);
  --surface-2: var(--ds-color-surface-muted, #edf1f3);
  --surface-3: var(--ds-color-surface-raised, #fafbfb);
  --ink: var(--ds-color-text, #111417);
  --muted: var(--ds-color-text-muted, #687079);
  --line: var(--ds-color-border, #dfe4e7);
  --accent: var(--ds-color-brand, #0b6b57);
  --accent-2: var(--ds-color-danger, #c9443f);
  --accent-3: var(--ds-color-info, #2a6f92);
  --warn: var(--ds-color-warning, #edb93f);
  --shadow: var(--ds-shadow-raised, 0 14px 34px rgba(17, 20, 23, 0.09));
  --shadow-soft: var(--ds-shadow-soft, 0 8px 20px rgba(17, 20, 23, 0.055));
  --radius: var(--ds-radius-md, 8px);
  font-family: var(--ds-font-sans, Inter, Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: 74px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(17, 20, 23, 0.045);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 12px 14px 10px;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 4px;
  line-height: 1;
}

.brand-mark strong {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark span {
  margin-top: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex: 1;
  height: 42px;
  padding: 0 5px 0 12px;
  background: #f6f8f9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.icon-button,
.compact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.compact-button {
  padding: 0 11px;
}

.header-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 34px;
  padding: 0 9px;
  border: 1px solid rgba(17, 20, 23, 0.18);
  border-radius: 6px;
  background: #f2f4f5;
  color: #111417;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.header-admin-link:hover {
  border-color: #111417;
  background: #111417;
  color: #fff;
}

.quick-strip {
  display: flex;
  gap: 8px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 14px 13px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-strip::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid #d6dde0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.chip.active {
  border-color: #111417;
  background: #111417;
  color: #fff;
}

.cart-chip {
  gap: 5px;
  border-color: rgba(11, 107, 87, 0.22);
  color: var(--accent);
}

.cart-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e8f4f0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.cart-chip.active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.main {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px;
}

.customer-home {
  background:
    linear-gradient(180deg, #f5f7f3 0%, #eef4f1 46%, #f4f6f7 100%);
}

.customer-products {
  background:
    linear-gradient(180deg, #eef4f0 0%, #f7f8f3 48%, #edf3f6 100%);
}

.customer-product {
  background:
    linear-gradient(180deg, #f7f8f3 0%, #edf3f6 52%, #f7f8f9 100%);
}

.customer-cart {
  background:
    linear-gradient(180deg, #f1f5f6 0%, #f9f7ef 48%, #eef5f1 100%);
}

.customer-proof {
  background:
    linear-gradient(180deg, #111417 0%, #18241f 290px, #f4f6f7 291px);
}

.hero-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  perspective: 1100px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hero-slider::-webkit-scrollbar {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 100%;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: #121517;
  color: #fff;
  box-shadow:
    0 24px 46px rgba(17, 20, 23, 0.16),
    0 8px 18px rgba(17, 20, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -34px 56px rgba(0, 0, 0, 0.16);
  scroll-snap-align: start;
  transform: translateZ(0);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.02) 58%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 78% 104%, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.1));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 18px 26px rgba(255, 255, 255, 0.12),
    inset 0 -18px 34px rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 22px;
}

.hero-copy::before {
  content: attr(data-kicker);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 9px;
  font-size: 34px;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}

.hero-golf-identity {
  min-height: 420px;
  border-color: rgba(255, 255, 255, 0.78);
  background: #f6f5ef;
  color: #0f1915;
  box-shadow:
    0 26px 52px rgba(17, 20, 23, 0.14),
    0 10px 20px rgba(11, 107, 87, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -36px 54px rgba(6, 48, 38, 0.12);
}

.hero-golf-identity img {
  opacity: 1;
  object-position: center bottom;
}

.hero-golf-identity::after {
  background:
    linear-gradient(180deg, rgba(247, 246, 240, 0.84), rgba(247, 246, 240, 0.08) 48%, rgba(4, 30, 23, 0.12)),
    linear-gradient(90deg, rgba(247, 246, 240, 0.96), rgba(247, 246, 240, 0.7) 36%, rgba(247, 246, 240, 0.14) 68%, rgba(247, 246, 240, 0.02));
}

.hero-golf-identity::before {
  background:
    radial-gradient(circle at 24% 2%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0) 56%),
    radial-gradient(circle at 74% 108%, rgba(6, 48, 38, 0.26), rgba(6, 48, 38, 0) 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02) 48%, rgba(6, 48, 38, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 22px 32px rgba(255, 255, 255, 0.2),
    inset 0 -24px 38px rgba(6, 48, 38, 0.16);
}

.hero-golf-identity .hero-copy {
  align-self: start;
  padding: 28px 22px;
  color: #0f1915;
  text-shadow: none;
}

.hero-golf-identity .hero-copy::before {
  border-color: rgba(11, 107, 87, 0.24);
  background: rgba(11, 107, 87, 0.1);
  color: #0b6b57;
}

.hero-golf-identity .hero-copy h1 {
  max-width: 360px;
  color: #0f1915;
  font-size: 38px;
  line-height: 1.04;
}

.hero-golf-identity .hero-copy p {
  max-width: 320px;
  color: #30473e;
  font-size: 15px;
  font-weight: 900;
}

.hero-image-copy img {
  opacity: 1;
}

.hero-image-copy::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.hero-count {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.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;
}

.section {
  margin-top: 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 0;
}

.section-head a,
.text-link {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.notice-bar {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.notice-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background: #fbfcfc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.notice-item span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
}

.golf-edit-strip {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.golf-edit-card {
  position: relative;
  display: grid;
  gap: 7px;
  grid-template-columns: minmax(0, 1fr) 92px;
  min-height: 156px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid #dbe4df;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff, #eef6f1);
  color: #102019;
}

.golf-edit-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 150px;
  height: 18px;
  background: rgba(11, 107, 87, 0.1);
  transform: rotate(-16deg);
  pointer-events: none;
}

.golf-edit-card > span,
.golf-edit-card > strong,
.golf-edit-card > em,
.golf-edit-card > b {
  position: relative;
  z-index: 2;
  grid-column: 1;
}

.golf-edit-card:nth-child(2) {
  border-color: rgba(17, 20, 23, 0.22);
  background:
    linear-gradient(135deg, #111417, #18372e);
  color: #fff;
}

.golf-edit-card:nth-child(3) {
  border-color: #d8dee6;
  background:
    linear-gradient(135deg, #f7f9fb, #eef3fb);
}

.golf-edit-card span,
.golf-edit-card b {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}

.golf-edit-card:nth-child(2) span,
.golf-edit-card:nth-child(2) b {
  color: #9ce0c4;
}

.golf-edit-card strong {
  max-width: 260px;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.22;
  word-break: keep-all;
}

.golf-edit-card em {
  max-width: 320px;
  color: #637068;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.golf-edit-card:nth-child(2) em {
  color: rgba(255, 255, 255, 0.72);
}

.golf-edit-card b {
  align-self: end;
  justify-self: start;
}

.golf-edit-card img {
  position: relative;
  z-index: 2;
  grid-row: 1 / span 4;
  grid-column: 2;
  align-self: stretch;
  width: 92px;
  height: 100%;
  min-height: 124px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  object-fit: cover;
  background: #edf1f3;
  box-shadow: 0 12px 22px rgba(17, 20, 23, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce3e6;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  border-color: #cbd5da;
  box-shadow: 0 18px 38px rgba(17, 20, 23, 0.12);
  transform: translateY(-2px);
}

.product-thumb {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #edf1f3, #f8f9f9);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-body {
  display: grid;
  gap: 9px;
  padding: 11px;
}

.product-title {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 22px;
  color: #69747d;
  font-size: 11px;
  font-weight: 850;
}

.product-meta.date-only {
  justify-content: flex-end;
}

.card-pills {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.status-soldout {
  color: var(--accent-2);
}

.status-best,
.status-new,
.status-price {
  color: #8a5c00;
}

.status-limited,
.status-partial,
.status-restock {
  color: #8b5e16;
}

.status-ship,
.status-qc {
  color: var(--accent-3);
}

.kakao-button,
.primary-button,
.secondary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.kakao-button {
  width: 100%;
  background: #fee500;
  color: #191600;
  box-shadow: 0 8px 18px rgba(254, 229, 0, 0.22);
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.kakao-button:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.card-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 100%;
  padding: 0 8px;
  border: 1px solid #d8e0e4;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.card-action-button:hover {
  border-color: #c7d1d6;
  background: #f8fafb;
  transform: translateY(-1px);
}

.admin-card-edit-button {
  grid-column: 1 / -1;
  border-color: #111417;
  background: #111417;
  color: #fff;
}

.admin-card-edit-button:hover {
  border-color: #111417;
  background: #20262b;
}

.kakao-card-button {
  grid-column: 1 / -1;
  border-color: #fee500;
  background: #fee500;
  color: #191600;
  box-shadow: 0 8px 18px rgba(254, 229, 0, 0.18);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 80;
  max-width: calc(100% - 28px);
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.94);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(17, 20, 23, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.primary-button {
  background: #111417;
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 20, 23, 0.16);
}

.secondary-button {
  border: 1px solid #d6dde0;
  background: var(--surface);
  color: var(--ink);
}

.danger-button {
  background: #f8e7e7;
  color: #a73434;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-card {
  overflow: hidden;
  border: 1px solid #dce3e6;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.proof-card:hover {
  box-shadow: 0 18px 38px rgba(17, 20, 23, 0.11);
  transform: translateY(-2px);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface-2);
}

.proof-card div {
  padding: 10px;
}

.proof-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.proof-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.list-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.catalog-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #d7e1dc;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #fdfdf9 0%, #edf6ef 58%, #eaf1f7 100%);
  overflow: hidden;
}

.catalog-hero-copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.catalog-hero-copy span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.catalog-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #101816;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.catalog-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #526159;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.catalog-hero-side {
  display: grid;
  gap: 10px;
}

.catalog-mosaic,
.cart-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  min-height: 104px;
}

.catalog-mosaic img,
.cart-mosaic img {
  width: 100%;
  height: 104px;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 8px;
  object-fit: cover;
  background: #edf1f3;
  box-shadow: 0 8px 18px rgba(17, 20, 23, 0.09);
}

.catalog-mosaic img:nth-child(1),
.cart-mosaic img:nth-child(1) {
  grid-column: span 2;
}

.catalog-mosaic img:nth-child(4),
.cart-mosaic img:nth-child(4) {
  display: none;
}

.catalog-special {
  border-color: #e6d48f;
  background:
    linear-gradient(135deg, #fffaf0 0%, #f7f1d7 52%, #edf6ef 100%);
}

.catalog-popular {
  border-color: #cbdde7;
  background:
    linear-gradient(135deg, #f7fbfd 0%, #e9f1f6 48%, #f7f8f3 100%);
}

.catalog-search {
  border-color: #d8dce5;
  background:
    linear-gradient(135deg, #f8f9fb 0%, #eef0f6 48%, #eef7f1 100%);
}

.catalog-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.catalog-metrics span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: #69747d;
  font-size: 11px;
  font-weight: 950;
}

.catalog-metrics b {
  color: #111417;
  font-size: 22px;
  line-height: 1;
}

.catalog-shop-floor {
  display: grid;
  gap: 0;
}

.catalog-grid .product-card {
  background:
    linear-gradient(180deg, #ffffff, #fbfcfc);
}

.catalog-grid .product-card:nth-child(3n + 2) {
  border-color: #d7e3df;
  background:
    linear-gradient(180deg, #ffffff, #f4faf7);
}

.catalog-grid .product-card:nth-child(3n) {
  border-color: #d7dee7;
  background:
    linear-gradient(180deg, #ffffff, #f5f8fb);
}

.result-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.result-heading h1,
.result-heading h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

.result-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.empty-state {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 220px;
  border: 1px dashed #c9d1d5;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.cart-hero {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d8e0e4;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f4e9 48%, #eef6f1 100%);
}

.cart-hero-copy {
  display: grid;
  gap: 8px;
}

.cart-hero-copy span {
  color: var(--accent-3);
  font-size: 11px;
  font-weight: 950;
}

.cart-hero-copy h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.cart-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #5f6b67;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.cart-hero-side {
  display: grid;
  gap: 10px;
}

.cart-mosaic {
  min-height: 98px;
}

.cart-mosaic img {
  height: 98px;
}

.cart-hero-counts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cart-hero-counts span {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 10px;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: #637068;
  font-size: 11px;
  font-weight: 900;
}

.cart-hero-counts b {
  color: #111417;
  font-size: 22px;
  line-height: 1;
}

.cart-assist-board {
  display: grid;
  gap: 8px;
}

.cart-assist-board span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d8e0e4;
  border-radius: var(--radius);
  background: #ffffff;
  color: #4f5d57;
  font-size: 13px;
  font-weight: 850;
}

.cart-assist-board b {
  display: inline-flex;
  align-items: center;
  min-width: 52px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.cart-page {
  display: grid;
  gap: 14px;
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 11px;
  padding: 10px;
  border: 1px solid #dce3e6;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.cart-item.unavailable {
  opacity: 0.78;
}

.cart-item-image {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, #edf1f3, #f8f9f9);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-body {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.cart-item-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dce3e6;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 26px rgba(17, 20, 23, 0.09);
  backdrop-filter: blur(18px);
}

.cart-summary strong,
.cart-summary span {
  display: block;
}

.cart-summary strong {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 950;
}

.cart-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.cart-summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cart-empty strong {
  color: var(--ink);
  font-size: 16px;
}

.product-detail-page {
  display: grid;
  gap: 18px;
}

.product-detail-intro {
  display: grid;
  gap: 12px;
}

.detail-board-head {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #dce4e2;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8faf9);
  box-shadow: var(--shadow-soft);
}

.detail-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #d2ddda;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.detail-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.detail-board-head h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.24;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.product-detail-layout {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  position: relative;
}

.gallery-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.76);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-gallery-strip {
  padding-bottom: 2px;
  scrollbar-width: none;
}

.product-gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-thumb-button {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb-button img {
  width: 100%;
  height: 100%;
}

.product-detail-panel {
  gap: 12px;
}

.detail-info-list {
  display: grid;
  gap: 10px;
}

.detail-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.detail-contact-actions-inline {
  display: none;
}

.detail-cta-button {
  min-width: 0;
  width: 100%;
  min-height: 42px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 1.15;
  white-space: normal;
}

.detail-admin-edit-button {
  width: 100%;
  min-height: 44px;
  border-color: #111417;
  background: #111417;
  color: #fff;
}

.detail-admin-edit-button:hover {
  border-color: #111417;
  background: #20262b;
}

.detail-section {
  margin-top: 22px;
}

.fit-note-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #0f1915 0%, #14392f 52%, #edf4ef 52.2%, #ffffff 100%);
  color: #fff;
  overflow: hidden;
}

.fit-note-copy {
  display: grid;
  gap: 7px;
}

.fit-note-copy span {
  color: #9ce0c4;
  font-size: 11px;
  font-weight: 950;
}

.fit-note-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
  word-break: keep-all;
}

.fit-note-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.fit-note-grid {
  display: grid;
  gap: 8px;
}

.fit-note-card {
  display: grid;
  gap: 6px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #111417;
}

.fit-note-card b {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.fit-note-card span {
  color: #27342e;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.detail-guide-grid {
  display: grid;
  gap: 8px;
}

.detail-guide-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0 0 10px;
  padding: clamp(8px, 2vw, 18px);
  overflow: hidden;
  border: 1px solid #dce4e2;
  border-radius: var(--radius);
  background: #f8fbf9;
  box-shadow: var(--shadow-soft);
}

.detail-guide-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(760px, 78vh);
  min-height: 0;
  object-fit: contain;
  opacity: 1;
}

.detail-guide-card {
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid #dce4e2;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-guide-card strong {
  font-size: 14px;
  font-weight: 950;
}

.detail-guide-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.55;
}

.detail-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid #dce4e2;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-link-card:nth-child(2) {
  background: #f5faf8;
}

.detail-link-card:nth-child(3) {
  background: #f8fafb;
}

.detail-link-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.detail-link-card strong {
  font-size: 14px;
  font-weight: 950;
}

.detail-link-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.detail-link-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: #111417;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.detail-link-card.shipping-code-link b {
  min-width: 42px;
  min-height: 42px;
  border-radius: 8px;
  background: #0b6b57;
  font-size: 14px;
  letter-spacing: 0;
}

.shipping-code-admin-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #0b6b57;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.story-sequence {
  display: grid;
  gap: 14px;
}

.story-figure-label {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid #dce4e2;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 950;
}

.detail-keyword-row {
  padding-top: 2px;
}

.detail-layout {
  display: grid;
  gap: 18px;
}

.proof-page {
  display: grid;
  gap: 18px;
  color: #111417;
}

.proof-journal-head {
  display: grid;
  gap: 10px;
  padding: 22px 4px 6px;
  color: #fff;
}

.proof-journal-head span {
  color: #9ce0c4;
  font-size: 11px;
  font-weight: 950;
}

.proof-journal-head h1 {
  max-width: 780px;
  margin: 0;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

.proof-journal-head p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.proof-journal-layout {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.proof-journal-gallery .gallery-main {
  background: #101816;
}

.proof-journal-panel {
  padding: 2px;
}

.proof-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.proof-detail-meta span {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 10px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background: #ffffff;
  color: #5d6863;
  font-size: 12px;
  font-weight: 850;
}

.proof-detail-meta b {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.proof-related-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.proof-related-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d8e0e4;
  border-radius: var(--radius);
  background: #ffffff;
  color: #111417;
  font-size: 13px;
  font-weight: 950;
}

.gallery {
  display: grid;
  gap: 10px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edf1f3, #f8f9f9);
  box-shadow: var(--shadow-soft);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.gallery-strip img {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
}

.detail-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.detail-panel h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.copy-block {
  padding: 14px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background: #fbfcfc;
  white-space: pre-line;
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
}

.copy-block h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.product-story {
  display: grid;
  gap: 12px;
}

.detail-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background: #fff;
}

.detail-image-card {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 6px;
  border: 1px solid #dfe6e8;
  border-radius: 8px;
  background: #f8fafb;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.detail-image-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 107, 87, 0.13);
}

.detail-image-preview {
  box-shadow: none;
}

.detail-image-preview .product-image-zoom-label {
  font-size: 10px;
}

.story-figure {
  display: grid;
  gap: 8px;
  margin: 0;
  scroll-margin-top: 92px;
}

.story-figure img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow-soft);
}

.story-figure figcaption {
  padding: 12px 2px 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
  white-space: pre-line;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #dce3e6;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 24px rgba(17, 20, 23, 0.08);
  backdrop-filter: blur(18px);
}

.admin-shell {
  min-height: 100vh;
  background: #eef2f4;
}

.admin-top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid #d7dee2;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(17, 20, 23, 0.045);
  backdrop-filter: blur(18px);
}

.admin-title {
  display: grid;
  gap: 3px;
}

.admin-title strong {
  font-size: 16px;
  font-weight: 950;
}

.admin-title span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.admin-layout {
  display: grid;
  gap: 14px;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 14px;
}

.admin-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.admin-nav::-webkit-scrollbar {
  display: none;
}

.admin-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid #d8e0e4;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.admin-nav a.active {
  border-color: #111417;
  background: #111417;
  color: #fff;
}

.admin-content {
  display: grid;
  gap: 14px;
}

.admin-mode-notice {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid #d8e0e4;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #f4faf8;
  color: var(--ink);
}

.admin-mode-notice strong {
  font-size: 13px;
  font-weight: 950;
}

.admin-mode-notice span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.panel {
  border: 1px solid #d8e0e4;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid #e1e7ea;
  background: linear-gradient(180deg, #ffffff, #fbfcfc);
}

.panel-head h1,
.panel-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.panel-body {
  padding: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  padding: 14px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8fafb);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.stat-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 24px;
  font-weight: 950;
}

.stat-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.check-field {
  color: #3d4242;
  font-size: 12px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d8e0e4;
  border-radius: 6px;
  background: #fbfcfc;
  color: var(--ink);
  padding: 9px 10px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(42, 111, 146, 0.58);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 111, 146, 0.11);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.55;
}

.drop-zone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 5px;
  min-height: 112px;
  padding: 14px;
  border: 1px dashed #b8c4ca;
  border-radius: 8px;
  background: #f7fafb;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.drop-zone:hover,
.drop-zone.is-dragging {
  border-color: var(--accent);
  background: #eef8f5;
  box-shadow: 0 0 0 3px rgba(15, 139, 116, 0.09);
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.drop-zone-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.drop-zone-help,
.drop-zone-note {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.drop-zone-note {
  color: var(--accent);
}

.product-image-field {
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background: #fbfcfc;
}

.product-image-manager-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-image-manager-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-image-manager-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.image-url-details {
  border: 1px solid #dfe6e8;
  border-radius: 8px;
  background: #fff;
}

.image-url-details summary {
  min-height: 38px;
  padding: 10px 12px;
  color: #3d4242;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.image-url-details .product-image-source {
  border-width: 1px 0 0;
  border-radius: 0 0 8px 8px;
  background: #fbfcfc;
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid #dfe6e8;
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(42, 111, 146, 0.16), rgba(11, 107, 87, 0.12)) border-box;
}

.product-image-grid:empty {
  display: none;
}

.product-image-card {
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 6px;
  border: 1px solid #dfe6e8;
  border-radius: 8px;
  background: #f8fafb;
  cursor: grab;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.product-image-card.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}

.product-image-card.is-drag-over {
  border-color: var(--accent-3);
  box-shadow: 0 0 0 3px rgba(42, 111, 146, 0.12);
  transform: translateY(-1px);
}

.product-image-preview {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dfe6e8;
  border-radius: 6px;
  background: #eef2f4;
  cursor: zoom-in;
}

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

.product-image-number,
.product-image-zoom-label {
  position: absolute;
  z-index: 1;
}

.product-image-number {
  top: 7px;
  left: 7px;
  min-width: 28px;
  min-height: 26px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.4;
}

.product-image-zoom-label {
  right: 7px;
  bottom: 7px;
  left: 7px;
  min-height: 28px;
  padding: 7px 8px;
  border-radius: 6px;
  background: rgba(17, 20, 23, 0.76);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.product-image-card-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.product-image-source-label {
  justify-self: start;
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef2f4;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
}

.product-image-card-controls label {
  display: grid;
  grid-template-columns: auto minmax(42px, 56px);
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.product-image-card-controls input {
  min-height: 32px;
  padding: 5px 6px;
  text-align: center;
}

.product-image-remove {
  min-height: 32px;
  padding: 0 8px;
  color: #a73434;
}

.product-image-empty {
  margin: 0;
}

body.modal-open {
  overflow: hidden;
}

.product-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 14px;
}

.product-image-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 20, 23, 0.76);
  cursor: zoom-out;
}

.product-image-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(980px, 100%);
  max-height: 92vh;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.product-image-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-image-modal-head strong {
  min-width: 52px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.product-image-modal-stage {
  position: relative;
  display: grid;
  min-height: min(68vh, 640px);
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background: #101417;
}

.product-image-modal-stage img {
  max-width: 100%;
  max-height: calc(92vh - 116px);
  object-fit: contain;
}

.product-image-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.product-image-modal-nav.prev {
  left: 12px;
}

.product-image-modal-nav.next {
  right: 12px;
}

@media (min-width: 640px) {
  .product-image-grid,
  .detail-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .product-image-grid,
  .detail-image-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .product-image-grid,
  .detail-image-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.check-field {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-badge-field {
  padding: 12px;
  border: 1px solid #d8e0e4;
  border-radius: var(--radius);
  background: #fbfcfc;
}

.status-badge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status-badge-head label {
  color: #3d4242;
  font-size: 12px;
  font-weight: 950;
}

.status-badge-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.status-badge-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.status-badge-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 8px;
  border: 1px solid #d8e0e4;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.status-badge-option input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  padding: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-actions > .primary-button,
.form-actions > .secondary-button,
.form-actions > .danger-button {
  flex: 1 1 150px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-row {
  display: grid;
  gap: 10px;
  padding: 11px;
  border: 1px solid #dfe6e8;
  border-radius: var(--radius);
  background: #fbfcfc;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.admin-row:hover {
  border-color: #cad4d9;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.admin-row-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-row-main img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
  background: var(--surface-2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.admin-row-title {
  min-width: 0;
}

.admin-row-title strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-row-title span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #d8e0e4;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.mini-button:hover {
  border-color: #c7d1d6;
  background: #f8fafb;
  transform: translateY(-1px);
}

.mini-button.danger {
  border-color: #f0c9c9;
  color: #a73434;
}

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 18px;
  background: linear-gradient(135deg, #eef2f4, #f8fafb 54%, #edf4f1);
}

.login-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.login-card .panel-head,
.login-card .panel-body {
  padding: 18px;
}

.subtle {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.form-error {
  color: #b42318;
}

.hidden {
  display: none !important;
}

.hero-image-copy {
  aspect-ratio: 1122 / 1402;
  min-height: auto;
  background: #0b100f;
}

.hero-image-copy img {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 420px) {
  .app-shell {
    padding-bottom: 78px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .brand-mark {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .brand-mark span {
    margin-top: 0;
  }

  .quick-strip {
    gap: 6px;
    padding-bottom: 10px;
  }

  .chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .main {
    padding: 10px;
  }

  .hero {
    min-height: 286px;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 13px;
  }

  .golf-edit-card {
    min-height: 126px;
    padding: 14px;
  }

  .golf-edit-card strong,
  .fit-note-copy h2 {
    font-size: 21px;
  }

  .catalog-hero,
  .cart-hero,
  .fit-note-section {
    padding: 14px;
  }

  .catalog-hero-copy h1,
  .cart-hero-copy h1,
  .proof-journal-head h1 {
    font-size: 26px;
  }

  .cart-hero-counts,
  .proof-detail-meta,
  .proof-related-strip {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .proof-grid {
    gap: 8px;
  }

  .product-body {
    gap: 7px;
    padding: 8px;
  }

  .product-title {
    min-height: 38px;
    font-size: 13px;
    line-height: 1.42;
  }

  .product-meta {
    gap: 5px;
    font-size: 10px;
  }

  .card-action-button {
    min-height: 33px;
    padding: 0 4px;
    font-size: 10px;
  }

  .detail-board-head {
    padding: 14px;
  }

  .detail-board-head h1 {
    font-size: 22px;
  }

  .detail-cta-button {
    padding: 0 6px;
    font-size: 11px;
  }

  .detail-contact-actions {
    gap: 5px;
  }

  .detail-guide-card,
  .detail-link-card {
    padding: 12px;
  }

  .kakao-button,
  .primary-button,
  .secondary-button,
  .danger-button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
  }

  .cart-item-title {
    font-size: 14px;
  }

  .cart-summary-actions {
    grid-template-columns: 1fr;
  }

  .admin-top .form-actions {
    width: 100%;
  }

  .admin-layout {
    padding: 10px;
  }

  .panel-head,
  .panel-body {
    padding: 12px;
  }

  .admin-row-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-button {
    width: 100%;
  }
}

@media (max-width: 559px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-row-main {
    align-items: flex-start;
  }

  .admin-row-title strong {
    white-space: normal;
  }
}

@media (min-width: 560px) {
  .golf-edit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cart-assist-board,
  .fit-note-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-guide-grid,
  .detail-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 390px;
  }
}

@media (min-width: 760px) {
  .app-shell {
    padding-bottom: 0;
  }

  .header-inner {
    padding: 16px 22px 12px;
  }

  .quick-strip {
    padding: 0 22px 15px;
  }

  .main {
    padding: 22px;
  }

  .catalog-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    align-items: end;
    padding: 26px;
  }

  .catalog-hero-copy h1,
  .cart-hero-copy h1 {
    font-size: 42px;
  }

  .catalog-metrics {
    align-self: stretch;
  }

  .cart-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
    padding: 24px;
  }

  .cart-assist-board span {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 460px;
    border-radius: var(--radius);
  }

  .hero-golf-identity {
    min-height: 430px;
  }

  .hero-copy {
    padding: 42px;
  }

  .hero-golf-identity .hero-copy {
    align-self: center;
    padding: 44px 56px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-golf-identity .hero-copy h1 {
    max-width: 540px;
    font-size: 58px;
  }

  .hero-golf-identity .hero-copy p {
    max-width: 420px;
    font-size: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-detail-page {
    gap: 22px;
  }

  .fit-note-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: end;
    padding: 24px;
  }

  .fit-note-copy h2 {
    font-size: 34px;
  }

  .detail-board-head {
    padding: 22px;
  }

  .detail-board-head h1 {
    font-size: 32px;
  }

  .product-detail-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .product-detail-panel {
    position: sticky;
    top: 118px;
  }

  .detail-contact-actions-inline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-contact-actions-inline .detail-cta-button {
    min-height: 42px;
    font-size: 14px;
  }

  .detail-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-guide-visual {
    min-height: 0;
  }

  .detail-guide-visual img {
    min-height: 0;
  }

  .detail-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-link-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-story {
    width: min(860px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .proof-journal-head {
    padding: 34px 4px 10px;
  }

  .proof-journal-head h1 {
    font-size: 46px;
  }

  .proof-journal-layout {
    padding: 14px;
  }

  .detail-panel {
    position: sticky;
    top: 118px;
  }

  .cart-item {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-summary {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    border-radius: var(--radius);
  }

  .sticky-cta {
    display: none;
  }

  .admin-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .admin-nav {
    position: sticky;
    top: 72px;
    display: grid;
    align-content: start;
    overflow: visible;
  }

  .admin-nav a {
    justify-content: flex-start;
    border-radius: 6px;
  }

  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 760px) and (max-width: 959px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    position: static;
    display: flex;
    overflow-x: auto;
  }

  .admin-nav a {
    justify-content: center;
    border-radius: 999px;
  }
}

@media (min-width: 960px) {
  .header-inner,
  .quick-strip,
  .main {
    width: min(1220px, 100%);
  }

  .hero {
    min-height: 520px;
  }

  .hero-golf-identity {
    min-height: 430px;
  }

  .hero-golf-identity img {
    object-position: right center;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-golf-identity .hero-copy h1 {
    font-size: 64px;
  }

  .catalog-hero-copy h1,
  .cart-hero-copy h1 {
    font-size: 52px;
  }

  .detail-board-head h1 {
    font-size: 38px;
  }

  .detail-panel h1 {
    font-size: 32px;
  }
}

@media (min-width: 760px) {
  .hero-image-copy {
    aspect-ratio: 2172 / 724;
    min-height: auto;
  }
}

@media (min-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section {
    margin-top: 34px;
  }
}
