﻿:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(39, 28, 18, 0.12);
  --text: #211811;
  --muted: #675748;
  --primary: #cb5b30;
  --primary-strong: #a94521;
  --accent: #0f4f49;
  --accent-soft: #dbece8;
  --shadow: 0 24px 60px rgba(48, 31, 17, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(203, 91, 48, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 79, 73, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f4ed 0%, #f2e9dc 48%, #ece4d8 100%);
  font-family: "Noto Sans KR", sans-serif;
}

body.shop-landing {
  padding-top: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-auth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  background: linear-gradient(90deg, #14100c 0%, #2c1e16 52%, #1b140f 100%);
  color: #f8f1e8;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(10, 8, 6, 0.45);
}

.top-auth-inner {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.top-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 16px;
  color: #f8f1e8;
}

.top-auth-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #ffcd9c 0%, #f08a4b 60%, #cb5b30 100%);
  color: #1a100b;
}

.top-auth-brand .brand-name {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.top-auth-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.top-auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #f8f1e8;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-auth-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 20px rgba(6, 4, 3, 0.4);
}

.top-auth-primary {
  background: #f08a4b;
  color: #1c140f;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(240, 138, 75, 0.45);
}

.top-auth-user {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 700;
  font-size: 14px;
  color: #f8f1e8;
  letter-spacing: 0.02em;
}

.top-auth-point-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 4px 10px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(18, 12, 9, 0.18);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  line-height: 1;
}

.shop-shell {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}

.lineup-only-shell {
  padding-top: 28px;
}

.lineup-only-shell .section {
  margin-top: 0;
}

.catalog-loading {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 280px;
  margin-bottom: 20px;
  padding: 28px 20px;
  border: 1px solid rgba(39, 28, 18, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(203, 91, 48, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 245, 238, 0.98) 100%);
  box-shadow: 0 24px 48px rgba(48, 31, 17, 0.08);
  text-align: center;
}

.catalog-loading[hidden] {
  display: none !important;
}

.catalog-loading-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(32, 21, 14, 0.96) 0%, rgba(203, 91, 48, 0.92) 100%);
  box-shadow: 0 18px 34px rgba(48, 31, 17, 0.18);
}

.catalog-loading-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff7ef;
  animation: catalog-spin 0.85s linear infinite;
}

.catalog-loading-title {
  font-size: 20px;
  font-weight: 800;
  color: #1f140f;
}

.catalog-loading-desc {
  font-size: 14px;
  color: var(--muted);
}

@keyframes catalog-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero {
  padding: 20px 0 24px;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f150f 0%, #cb5b30 100%);
  color: #fff;
}

.hero-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding-top: 28px;
}

.hero-copy,
.feature-card,
.section,
.product-card,
.empty-state {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  border-radius: 42px;
  min-height: 520px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 248, 240, 0.84) 54%, rgba(227, 240, 235, 0.8) 100%);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

.hero-copy h1,
.section-head h1,
.section-head h2,
.feature-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.05em;
}

.hero-description,
.section-head p,
.feature-card p,
.feature-list,
.product-description,
.product-subtitle {
  color: var(--muted);
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span,
.product-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(39, 28, 18, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: 30px;
}

.feature-card-primary {
  background: linear-gradient(180deg, rgba(15, 79, 73, 0.94) 0%, rgba(28, 106, 98, 0.88) 100%);
  color: #f8fbfa;
}

.feature-card-primary .panel-label,
.feature-card-primary p {
  color: rgba(248, 251, 250, 0.84);
}

.feature-card h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.04em;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.section {
  padding: 34px;
  border-radius: var(--radius-xl);
  margin-top: 18px;
}

.section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
  margin-top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.section-hero.no-hero-media {
  grid-template-columns: 1fr;
}

.section-hero .section-head {
  margin-bottom: 0;
}

.service-gallery {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.service-shot {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(33, 24, 17, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.service-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-shot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fdf7ef;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.service-shot-primary {
  width: min(320px, 100%);
  aspect-ratio: 4 / 3;
}

.service-shot-secondary {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  margin-right: 12px;
  transform: translateY(-6px);
}

.section-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 242, 233, 0.92) 100%);
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.catalog-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.catalog-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(39, 28, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #4b3b2d;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.catalog-category-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(203, 91, 48, 0.34);
  box-shadow: 0 12px 24px rgba(48, 31, 17, 0.08);
}

.catalog-category-btn.is-active {
  background: linear-gradient(135deg, #1b140f 0%, #cb5b30 100%);
  border-color: transparent;
  color: #fff7ef;
  box-shadow: 0 16px 28px rgba(48, 31, 17, 0.16);
}

.catalog-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 28px;
  border: 1px solid rgba(39, 28, 18, 0.08);
  background:
    radial-gradient(circle at top left, rgba(203, 91, 48, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 242, 233, 0.98) 100%);
  box-shadow: 0 24px 50px rgba(48, 31, 17, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.catalog-showcase.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  border-width: 0;
}

.catalog-showcase-copy {
  display: none;
}

.catalog-showcase-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.catalog-showcase-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.catalog-showcase-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(203, 91, 48, 0.12);
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-showcase-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  grid-area: gallery;
  width: min(100%, 360px);
  justify-self: center;
  margin: 0;
}

.catalog-showcase-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "note gallery";
  align-items: center;
  justify-items: center;
  gap: 20px;
  width: min(100%, 1025px);
}

.catalog-showcase-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(33, 24, 17, 0.08);
  box-shadow: 0 20px 34px rgba(48, 31, 17, 0.12);
  background: #fff;
}

.catalog-showcase-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.44));
  pointer-events: none;
}

.catalog-showcase-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-showcase-shot figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff8ef;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.42);
}

.catalog-showcase-shot.is-secondary {
  min-height: 230px;
}

.catalog-showcase-shot.is-secondary {
  background: #121317;
}

.catalog-showcase-shot.is-secondary img {
  object-fit: contain;
  object-position: center;
  background: #121317;
}

.catalog-showcase-shot.is-secondary figcaption {
  top: 14px;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 32px);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(18, 19, 23, 0.72);
  backdrop-filter: blur(10px);
}

.catalog-showcase-note {
  grid-area: note;
  display: grid;
  gap: 8px;
  width: min(100%, 462px);
  justify-self: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(27, 20, 15, 0.96) 0%, rgba(88, 45, 16, 0.96) 55%, rgba(203, 91, 48, 0.92) 100%);
  box-shadow: 0 20px 38px rgba(48, 31, 17, 0.16);
  color: #fff8ef;
  text-align: center;
}

.catalog-showcase-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.catalog-showcase-note strong span {
  color: #ffd28f;
}

.catalog-showcase-note p {
  margin: 0;
  color: rgba(255, 248, 239, 0.92);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.product-card.is-product-target {
  box-shadow: 0 26px 54px rgba(203, 91, 48, 0.24);
  transform: translateY(-2px);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -34px -52px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 91, 48, 0.18) 0%, rgba(203, 91, 48, 0) 72%);
  pointer-events: none;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fae6d5;
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 12px;
}

.product-category-chip.is-wiper {
  background: #fae6d5;
  color: var(--primary-strong);
}

.product-category-chip.is-cleaning {
  background: #dff5ef;
  color: #0f766e;
}

.product-category-chip.is-goods {
  background: #ede9fe;
  color: #6d28d9;
}

.product-card h2,
.product-card h3 {
  margin: 18px 0 8px;
  font-size: 26px;
  line-height: 1.18;
}

.product-title-link {
  color: inherit;
}

.product-title-link:hover {
  color: var(--primary-strong);
}

.product-subtitle {
  min-height: 54px;
  margin: 0;
}

.product-price {
  margin: 22px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.product-price small {
  font-size: 15px;
  color: var(--muted);
}

.product-price-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 12px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
}

.product-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(33, 24, 17, 0.08);
  box-shadow: 0 12px 28px rgba(48, 31, 17, 0.08);
  backdrop-filter: blur(10px);
}

.product-price-badge em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: 999px;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-price-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-price-badge.is-member {
  background: linear-gradient(135deg, rgba(212, 128, 33, 0.2) 0%, rgba(255, 244, 214, 0.98) 100%);
  border-color: rgba(180, 104, 20, 0.28);
  box-shadow: 0 16px 34px rgba(180, 104, 20, 0.16);
  color: #7f4306;
}

.product-price-badge.is-member em {
  background: #b86a13;
  color: #fff8ef;
}

.product-price-badge.is-guest {
  background: linear-gradient(135deg, rgba(129, 108, 91, 0.08) 0%, rgba(247, 243, 238, 0.96) 100%);
  border-color: rgba(129, 108, 91, 0.14);
  box-shadow: 0 10px 24px rgba(48, 31, 17, 0.05);
  color: #756250;
}

.product-price-badge.is-guest em {
  background: rgba(129, 108, 91, 0.12);
  color: #8b7564;
}

.product-description {
  margin: 18px 0 0;
}

.product-description > :first-child {
  margin-top: 0;
}

.product-description > :last-child {
  margin-bottom: 0;
}

.product-description img {
  max-width: 100%;
  height: auto;
}

.product-description p,
.product-description div,
.product-description ul,
.product-description ol,
.product-description figure {
  max-width: 100%;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.product-meta span {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
  color: var(--muted);
  background: #f4eee5;
}

.product-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.product-buy-btn {
  flex: 1 1 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-detail-shell {
  padding-top: 28px;
}

.product-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.product-detail-breadcrumb a {
  color: var(--primary-strong);
  font-weight: 700;
}

.product-detail-breadcrumb span[aria-hidden="true"] {
  opacity: 0.45;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-detail-media-wrap {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(39, 28, 18, 0.08);
  background:
    radial-gradient(circle at top left, rgba(203, 91, 48, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 239, 231, 0.98) 100%);
  box-shadow: 0 24px 54px rgba(48, 31, 17, 0.1);
}

.product-detail-media {
  overflow: hidden;
  border-radius: 24px;
}

.product-detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail-copy {
  display: grid;
  gap: 18px;
}

.product-detail-summary {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.product-detail-chip-row,
.product-detail-region-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f4eee5;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-detail-chip.is-wiper {
  background: #fae6d5;
  color: var(--primary-strong);
}

.product-detail-chip.is-cleaning {
  background: #dff5ef;
  color: #0f766e;
}

.product-detail-chip.is-goods {
  background: #ede9fe;
  color: #6d28d9;
}

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

.product-detail-price-card {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(33, 24, 17, 0.08);
  box-shadow: 0 16px 34px rgba(48, 31, 17, 0.08);
}

.product-detail-price-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-detail-price-card span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-detail-price-card.is-member {
  background: linear-gradient(135deg, rgba(212, 128, 33, 0.2) 0%, rgba(255, 244, 214, 0.98) 100%);
  border-color: rgba(180, 104, 20, 0.28);
  color: #7f4306;
}

.product-detail-price-card.is-guest {
  background: linear-gradient(135deg, rgba(129, 108, 91, 0.08) 0%, rgba(247, 243, 238, 0.96) 100%);
  border-color: rgba(129, 108, 91, 0.14);
  color: #6d5a4b;
}

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

.product-detail-info {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(39, 28, 18, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.product-detail-info h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-detail-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-actions .btn-primary,
.product-detail-actions .btn-secondary {
  min-height: 54px;
  padding-inline: 24px;
}

.product-detail-description-card {
  margin-top: 22px;
}

.product-detail-description-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.product-detail-description {
  line-height: 1.82;
}

.product-detail-description > :first-child {
  margin-top: 0;
}

.product-detail-description > :last-child {
  margin-bottom: 0;
}

.product-detail-description img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.empty-state {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--muted);
}

.shop-seo-section {
  margin-top: 32px;
}

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

.shop-seo-card {
  padding: 26px 28px;
  border: 1px solid rgba(39, 28, 18, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 245, 238, 0.98) 100%);
  box-shadow: 0 18px 36px rgba(48, 31, 17, 0.08);
}

.shop-seo-card.is-wide {
  grid-column: 1 / -1;
}

.shop-seo-kicker {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-seo-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.shop-seo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.shop-seo-product-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.shop-seo-product-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(244, 238, 229, 0.76);
}

.shop-seo-product-title {
  font-weight: 800;
  color: var(--text);
}

.shop-seo-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
}

.shop-footer {
  margin-top: 40px;
  padding: 32px 0 48px;
  border-top: 1px solid rgba(33, 24, 17, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.shop-footer-inner {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

.shop-footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

.shop-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 16px;
}

.shop-footer-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.shop-footer-item span {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.shop-footer-item strong {
  font-weight: 700;
  color: var(--text);
}

.shop-footer-extra {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  white-space: pre-wrap;
}

.shop-footer-copy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 10, 7, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 120;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(33, 24, 17, 0.12);
  box-shadow: 0 30px 60px rgba(12, 8, 6, 0.35);
  padding: 24px;
}

.modal-card {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-card.modal-card-lg {
  width: min(720px, 100%);
}

.choice-product {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(33, 24, 17, 0.12);
  background: #f8f3ed;
  margin-bottom: 18px;
}

.choice-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.choice-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
}

.choice-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.choice-price-dual {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 240px;
}

.choice-actions {
  display: grid;
  gap: 10px;
}

.choice-actions .btn-primary,
.choice-actions .btn-secondary {
  width: 100%;
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(33, 24, 17, 0.12);
  background: #f8f3ed;
  margin-bottom: 18px;
}

.order-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.order-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
}

.order-price-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.order-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.order-price-chip em {
  font-style: normal;
  opacity: 0.86;
}

.order-price-chip strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.order-price-chip.is-member {
  background: rgba(203, 91, 48, 0.12);
  color: #9c441e;
}

.order-price-chip.is-guest {
  background: rgba(33, 24, 17, 0.08);
  color: #3a2a21;
}

.order-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.order-quantity-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 220px;
  border: 1px solid rgba(33, 24, 17, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.order-qty-btn {
  width: 54px;
  min-width: 54px;
  height: 52px;
  border: 0;
  background: rgba(33, 24, 17, 0.05);
  color: #1f140f;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.order-qty-btn:hover:not(:disabled) {
  background: rgba(203, 91, 48, 0.12);
  color: #9c441e;
}

.order-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#orderQuantity {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  border-left: 1px solid rgba(33, 24, 17, 0.08);
  border-right: 1px solid rgba(33, 24, 17, 0.08);
  border-radius: 0;
  background: transparent;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1f140f;
  padding: 0 10px;
}

#orderQuantity::-webkit-outer-spin-button,
#orderQuantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.member-dashboard {
  display: grid;
  gap: 18px;
}

.member-dashboard-summary,
.member-orders-section {
  border: 1px solid rgba(33, 24, 17, 0.12);
  border-radius: 20px;
  background: #f8f3ed;
  padding: 18px;
}

.member-point-card {
  display: grid;
  gap: 8px;
}

.member-point-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1f140f;
}

.member-point-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.member-orders-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.member-orders-head h4 {
  margin: 6px 0 0;
  font-size: 20px;
}

.member-orders-list {
  display: grid;
  gap: 12px;
}

.member-order-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(33, 24, 17, 0.1);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(19, 13, 10, 0.08);
}

.member-order-summary {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 16px;
  cursor: pointer;
}

.member-order-summary:hover {
  background: rgba(33, 24, 17, 0.02);
}

.member-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.member-order-top-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-order-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f140f;
}

.member-order-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #cb5b30;
  white-space: nowrap;
}

.member-order-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(33, 24, 17, 0.08);
  color: #3a2a21;
  font-size: 21px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.member-order-item.is-open .member-order-toggle {
  transform: rotate(180deg);
}

.member-order-extra {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  border-top: 1px solid transparent;
  transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.member-order-item.is-open .member-order-extra {
  opacity: 1;
  padding: 12px 16px 16px;
  border-top-color: rgba(33, 24, 17, 0.08);
}

.member-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.member-order-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(33, 24, 17, 0.06);
  font-size: 13px;
  color: #3a2a21;
}

.member-order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.member-order-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.member-order-summary-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(203, 91, 48, 0.1);
  border: 1px solid rgba(203, 91, 48, 0.18);
  font-size: 12px;
  font-weight: 700;
  color: #a44724;
}

.member-order-details {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.member-order-detail {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(33, 24, 17, 0.04);
  border: 1px solid rgba(33, 24, 17, 0.08);
}

.member-order-detail strong {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.member-order-detail span {
  color: #2f221b;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.member-order-detail.is-staff {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
  border-color: rgba(37, 99, 235, 0.18);
}

.member-order-account {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: #9a3412;
  font-size: 13px;
  font-weight: 700;
  white-space: pre-wrap;
  line-height: 1.6;
}

.member-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(240, 138, 75, 0.16);
  color: #9c441e;
  font-size: 13px;
  font-weight: 700;
}

.member-status-badge.is-payment {
  background: rgba(20, 16, 12, 0.08);
  color: #3a2a21;
}

.member-status-badge.is-payment.is-onsite {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.26);
  font-weight: 800;
}

.member-status-badge.is-confirmed {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  border: 1px solid rgba(37, 99, 235, 0.28);
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.24);
  font-weight: 800;
}

.member-status-badge.is-cancelled {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  color: #fff;
  border: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.24);
  font-weight: 800;
}

.member-status-badge.is-payment.is-paid {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  border: 1px solid rgba(22, 163, 74, 0.3);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.28);
  font-weight: 800;
}

.member-status-badge.is-payment.is-ready {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #fff;
  border: 1px solid rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.28);
  font-weight: 800;
}

.inquiry-fab {
  position: fixed;
  right: 22px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #14100c 0%, #2f2118 46%, #cb5b30 100%);
  color: #fff7ef;
  box-shadow: 0 22px 44px rgba(24, 15, 9, 0.34);
  cursor: pointer;
}

.inquiry-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.inquiry-fab-icon svg {
  width: 20px;
  height: 20px;
}

.inquiry-fab-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.inquiry-layout {
  display: block;
}

.inquiry-layout > * + * {
  margin-top: 16px;
}

.inquiry-chat-layout {
  gap: 0;
}

.inquiry-form {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(33, 24, 17, 0.12);
  background: linear-gradient(180deg, #fffaf5 0%, #f8f3ed 100%);
}

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

.inquiry-chat-top {
  display: grid;
  gap: 12px;
}

.inquiry-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.inquiry-chat-head h4 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 800;
  color: #1f140f;
}

.inquiry-refresh-btn {
  min-width: 112px;
}

.inquiry-history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.inquiry-history-head h4 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 800;
  color: #1f140f;
}

.inquiry-submit-row {
  display: flex;
  justify-content: flex-end;
}

.inquiry-submit-row .btn-primary {
  min-width: 140px;
}

.inquiry-auth-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(33, 24, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.inquiry-auth-row {
  margin: 0;
}

.inquiry-auth-note {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(33, 24, 17, 0.08);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.inquiry-history-section {
  border: 1px solid rgba(33, 24, 17, 0.12);
  border-radius: 20px;
  background: #f8f3ed;
  padding: 18px;
}

.inquiry-chat-history {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(203, 91, 48, 0.1), transparent 30%),
    linear-gradient(180deg, #faf7f2 0%, #f3efe8 100%);
}

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

.inquiry-chat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
  max-height: min(52dvh, 560px);
  overflow: auto;
  padding: 18px;
}

.inquiry-chat-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
}

.inquiry-chat-line.user {
  align-items: flex-end;
}

.inquiry-chat-line.admin {
  align-items: flex-start;
}

.inquiry-chat-sender {
  margin: 0 6px;
  font-size: 11px;
  font-weight: 800;
  color: #7d6a5a;
}

.inquiry-chat-bubble {
  position: relative;
  max-width: min(78%, 560px);
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(33, 24, 17, 0.08);
  line-height: 1.55;
  font-size: 14px;
  word-break: break-word;
}

.inquiry-chat-bubble .meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.78;
}

.inquiry-chat-bubble.user {
  background: linear-gradient(135deg, #df6f41 0%, #cb5b30 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.inquiry-chat-bubble.user::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 14px;
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.14);
}

.inquiry-chat-bubble.user::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 15px;
  border-width: 7px 0 7px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #cb5b30;
}

.inquiry-chat-bubble.admin {
  background: #fff;
  color: #1f140f;
  border: 1px solid rgba(33, 24, 17, 0.1);
}

.inquiry-chat-bubble.admin::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 14px;
  border-width: 8px 8px 8px 0;
  border-style: solid;
  border-color: transparent rgba(33, 24, 17, 0.1) transparent transparent;
}

.inquiry-chat-bubble.admin::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 15px;
  border-width: 7px 7px 7px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.inquiry-chat-note {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
}

.inquiry-chat-compose {
  display: grid;
  gap: 8px;
}

.inquiry-chat-compose-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.inquiry-chat-compose textarea {
  min-height: 106px;
  resize: vertical;
}

.inquiry-chat-compose .btn-primary {
  min-width: 110px;
  min-height: 54px;
}

.inquiry-thread-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(33, 24, 17, 0.08);
  box-shadow: 0 12px 28px rgba(20, 14, 10, 0.08);
}

.inquiry-thread-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.inquiry-thread-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.inquiry-thread-summary-copy {
  min-width: 0;
  flex: 1;
}

.inquiry-thread-title {
  font-size: 17px;
  font-weight: 800;
  color: #1f140f;
  word-break: break-word;
}

.inquiry-thread-summary-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #675748;
  font-weight: 700;
}

.inquiry-thread-summary-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.inquiry-thread-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(33, 24, 17, 0.06);
  color: #675748;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.inquiry-thread-card.is-open .inquiry-thread-toggle-icon {
  transform: rotate(45deg);
  background: rgba(203, 91, 48, 0.12);
  color: #c2410c;
}

.inquiry-thread-detail[hidden] {
  display: none !important;
}

.inquiry-thread-detail {
  overflow: hidden;
  opacity: 1;
  margin-top: 10px;
}

.inquiry-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.inquiry-status-badge.is-pending {
  background: rgba(249, 115, 22, 0.14);
  color: #b45309;
}

.inquiry-status-badge.is-answered {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.24);
}

.inquiry-bubble {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
}

.inquiry-bubble.is-question {
  background: rgba(33, 24, 17, 0.04);
  border: 1px solid rgba(33, 24, 17, 0.08);
}

.inquiry-bubble.is-answer {
  background: linear-gradient(135deg, rgba(15, 79, 73, 0.08) 0%, rgba(20, 184, 166, 0.14) 100%);
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.inquiry-bubble.is-pending-note {
  background: rgba(249, 115, 22, 0.08);
  border: 1px dashed rgba(249, 115, 22, 0.22);
}

.inquiry-bubble-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #675748;
}

.inquiry-bubble-label span {
  font-size: 11px;
  color: #7d6a5a;
}

.inquiry-bubble-text {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.7;
  color: #281c14;
}

.inquiry-empty {
  padding: 24px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed rgba(33, 24, 17, 0.16);
  text-align: center;
  color: var(--muted);
}

.member-orders-empty {
  padding: 28px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed rgba(33, 24, 17, 0.18);
  text-align: center;
  color: var(--muted);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 800;
}

.modal-head h3 {
  margin: 0;
  font-size: 22px;
  font-family: "Space Grotesk", sans-serif;
}

.modal-close {
  border: none;
  background: rgba(33, 24, 17, 0.06);
  color: var(--text);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

#memberDashboardModal .modal-card {
  max-height: 70vh;
}

#memberDashboardModal .modal-head {
  position: static;
  align-items: flex-start;
}

#memberDashboardModal .modal-close {
  position: sticky;
  top: 0;
  z-index: 4;
  align-self: flex-start;
  box-shadow: 0 10px 24px rgba(12, 8, 6, 0.14);
}

.modal-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.label-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.label-hint-alert {
  color: #dc2626;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(33, 24, 17, 0.12);
  font-size: 14px;
  font-family: inherit;
}

.form-row textarea {
  resize: vertical;
}

.order-payment-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-payment-btn {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(33, 24, 17, 0.14);
  background: #fff;
  color: #3a2a21;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.18s ease;
}

.order-payment-btn:hover {
  border-color: rgba(203, 91, 48, 0.45);
  color: #9c441e;
}

.order-payment-btn.is-active {
  background: linear-gradient(135deg, #cb5b30 0%, #e77c42 100%);
  border-color: #cb5b30;
  color: #fff;
  box-shadow: 0 12px 26px rgba(203, 91, 48, 0.24);
}

.form-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-row.sms-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.form-status {
  min-height: 18px;
  font-size: 13px;
  color: var(--muted);
}

.form-status.is-error {
  color: #c13f2b;
}

.form-status.is-success {
  color: #1d7a52;
}

.terms-box {
  max-height: 180px;
  overflow: auto;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(33, 24, 17, 0.12);
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.6;
  white-space: normal;
  color: var(--text);
}

.terms-box p,
.terms-box ul,
.terms-box ol {
  margin: 0 0 10px;
}

.terms-box p:last-child,
.terms-box ul:last-child,
.terms-box ol:last-child {
  margin-bottom: 0;
}

.terms-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.terms-check input {
  width: 16px;
  height: 16px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(203, 91, 48, 0.3);
}

.btn-secondary {
  background: rgba(33, 24, 17, 0.08);
  color: var(--text);
}

@media (max-width: 1100px) {
  .hero-main,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero,
  .product-detail-price-grid,
  .product-detail-meta {
    grid-template-columns: 1fr;
  }

  .shop-seo-grid {
    grid-template-columns: 1fr;
  }

  .catalog-category-bar {
    gap: 8px;
  }

  .catalog-showcase,
  .catalog-showcase-gallery {
    grid-template-columns: 1fr;
  }

  .catalog-showcase-gallery {
    width: min(100%, 420px);
    margin: 0 auto;
    justify-self: stretch;
  }

  .catalog-showcase-shot.is-primary,
  .catalog-showcase-shot.is-secondary {
    min-height: 280px;
  }

  .catalog-showcase-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "note";
    justify-content: stretch;
    gap: 14px;
    width: min(100%, 560px);
  }

  .catalog-showcase-note {
    width: 100%;
    justify-self: stretch;
    text-align: left;
  }

  .catalog-category-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  .section-hero {
    grid-template-columns: 1fr;
  }

  .service-gallery {
    justify-items: start;
  }

  .service-shot-primary,
  .service-shot-secondary {
    width: min(360px, 100%);
    margin-right: 0;
    transform: none;
  }

  .product-detail-media-wrap {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .shop-shell {
    width: min(100% - 16px, 100%);
  }

  body.shop-landing {
    padding-top: 82px;
  }

  .top-auth-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: min(100% - 16px, 100%);
    padding: 7px 0;
  }

  .top-auth-menu {
    flex: 0 0 auto;
    width: auto;
    max-width: calc(100% - 96px);
    min-width: fit-content;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 2px;
    gap: 3px;
  }

  .top-auth-menu::-webkit-scrollbar {
    display: none;
  }

  .top-auth-brand {
    flex: 0 1 auto;
    min-width: 0;
    gap: 7px;
  }

  .top-auth-brand .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .top-auth-brand .brand-name {
    font-size: 10px;
    letter-spacing: 0.14em;
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-auth-user,
  .top-auth-link {
    flex: 0 0 auto;
    min-height: 34px;
    font-size: 11px;
    white-space: nowrap;
  }

  .top-auth-user {
    padding: 0 8px;
  }

  .top-auth-link {
    padding: 7px 11px;
  }

  .top-auth-point-badge {
    min-width: 36px;
    margin-left: 4px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .modal-overlay {
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
  }

  .modal-card {
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100dvh - 20px);
    margin: 0 auto;
    padding: 18px 14px calc(16px + env(safe-area-inset-bottom));
    border-radius: 20px;
    overflow-x: hidden;
  }

  .modal-form,
  .form-row,
  .form-row > div,
  .order-summary,
  .choice-product,
  .order-payment-choice,
  .order-quantity-wrap,
  .inquiry-layout,
  .inquiry-form,
  .inquiry-history-section {
    min-width: 0;
    max-width: 100%;
  }

  .form-row input,
  .form-row select,
  .form-row textarea,
  .order-qty-btn,
  #orderQuantity {
    min-width: 0;
    max-width: 100%;
  }

  .modal-head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding-bottom: 8px;
    margin-bottom: 14px;
  }

  .modal-head h3 {
    font-size: 17px;
  }

  .modal-close {
    padding: 8px 12px;
  }

  #memberDashboardModal .modal-card {
    max-height: 70dvh;
  }

  #memberDashboardModal .modal-head {
    position: static;
    background: transparent;
    padding-bottom: 0;
  }

  .inquiry-fab {
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    min-height: 52px;
    padding: 0 14px 0 12px;
    gap: 8px;
  }

  .inquiry-fab-icon {
    width: 30px;
    height: 30px;
  }

  .inquiry-fab-label {
    font-size: 13px;
  }

  .inquiry-chat-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-history-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .inquiry-auth-note {
    min-height: auto;
    padding: 13px 14px;
  }

  .inquiry-refresh-btn {
    width: 100%;
  }

  .inquiry-chat-list {
    min-height: 280px;
    max-height: 48dvh;
    padding: 16px 14px;
  }

  .inquiry-chat-bubble {
    max-width: calc(100% - 18px);
  }

  .inquiry-chat-compose-box {
    grid-template-columns: 1fr;
  }

  .inquiry-chat-compose .btn-primary {
    width: 100%;
  }

  .inquiry-thread-summary {
    flex-direction: column;
  }

  .inquiry-thread-summary-side {
    width: 100%;
    justify-content: space-between;
  }

  .inquiry-submit-row .btn-primary {
    width: 100%;
  }

  .order-summary,
  .choice-product {
    gap: 10px;
    padding: 14px;
  }

  .order-name,
  .choice-name {
    font-size: 14px;
  }

  .order-price-dual {
    margin-top: 10px;
  }

  .order-price,
  .choice-price {
    font-size: 18px;
  }

  .choice-price-dual {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
  }

  #orderDate1,
  #orderDate2 {
    font-size: 13px;
    padding: 11px 10px;
    letter-spacing: -0.02em;
  }

  .service-shot-primary,
  .service-shot-secondary {
    width: 100%;
  }

  .form-row.two-col,
  .form-row.sms-row {
    grid-template-columns: 1fr;
  }

  .order-payment-choice {
    grid-template-columns: 1fr;
  }

  .order-quantity-wrap {
    max-width: 100%;
  }

  .member-order-top {
    flex-direction: column;
  }

  .member-order-top-side {
    width: 100%;
    justify-content: space-between;
  }

  .member-order-price {
    font-size: 18px;
  }

  .hero-nav {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }

  .hero-nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .shop-footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .feature-card,
  .section,
  .product-card,
  .empty-state {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .product-card h2,
  .product-card h3 {
    font-size: 19px;
  }

  .catalog-showcase {
    padding: 18px;
    border-radius: 20px;
  }

  .catalog-showcase-copy h2 {
    font-size: 24px;
  }

  .catalog-showcase-shot {
    border-radius: 18px;
  }

  .catalog-showcase-shot.is-secondary {
    min-height: 220px;
  }

  .catalog-showcase-note {
    padding: 14px 14px 15px;
    border-radius: 18px;
  }

  .catalog-showcase-note strong {
    font-size: 18px;
  }

  .catalog-showcase-note p {
    font-size: 13px;
  }

  .product-price {
    font-size: 30px;
  }

  .product-price-dual {
    gap: 10px;
  }

  .product-price-badge {
    width: 100%;
    justify-content: space-between;
  }

  .product-price-badge strong {
    font-size: 20px;
  }

  .product-detail-breadcrumb {
    font-size: 12px;
  }

  .product-detail-summary {
    font-size: 16px;
  }

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

  .product-detail-actions .btn-primary,
  .product-detail-actions .btn-secondary {
    width: 100%;
  }

  .product-detail-description-card h2 {
    font-size: 23px;
  }
}
