@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("./public/fonts/pretendard/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-pretendard: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fairway: rgb(17, 58, 42);
  --deep: var(--fairway);
  --deep-2: rgb(13, 45, 33);
  --green: #12A869;
  --mint: #EAF7F0;
  --ivory: #F7F6EF;
  --paper: #FBFBF9;
  --line: #DCE5DD;
  --line-soft: #DCE5DD;
  --ink: #111614;
  --muted: rgba(17, 22, 20, 0.62);
  --warm: #E7D8B8;
  --gold: #E7D8B8;
  --gold-deep: #E7D8B8;
  --section-title-color: #123B2A;
  --section-body-color: #68736D;
  --gradient-deep: linear-gradient(100deg, var(--fairway) 0%, var(--deep-2) 100%);
  --gradient-gold: linear-gradient(100deg, #E7D8B8 0%, #E7D8B8 100%);
  --shadow: 0 18px 46px -34px rgba(17, 58, 42, 0.42);
  --glass-bg: rgba(255, 255, 255, 0.01);
  --glass-bg-soft:
    linear-gradient(140deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 42%, rgba(255, 255, 255, 0.005) 100%);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 0.6px 4px 0 rgba(0, 0, 0, 0.25);
  --glass-highlight:
    inset 5px 5px 15px rgba(255, 255, 255, 0.08),
    inset -5px -5px 15px rgba(255, 255, 255, 0.08);
  --glass-lite-overlay:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 55%, rgba(255, 255, 255, 0.012) 100%);
  --glass-lite-overlay-mint:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.028) 48%, rgba(234, 247, 240, 0.05) 100%);
  --icon-card-glass-3: rgba(255, 255, 255, 0.03);
  --icon-card-edge-light: rgba(255, 255, 255, 0.58);
  --icon-card-edge-dark: rgba(6, 20, 14, 0.065);
  --header-glass-bg-soft:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.02) 100%);
  --header-glass-border: rgba(255, 255, 255, 0.18);
  --header-glass-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  --header-glass-highlight:
    inset 5px 5px 15px rgba(255, 255, 255, 0.08),
    inset -5px -5px 15px rgba(255, 255, 255, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image: url("./assets/figma/bg-desktop.png?v=20260604-23");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink);
  font-family: var(--font-pretendard);
  letter-spacing: 0;
}

@media (max-width: 760px) {
  body {
    background-image: url("./assets/figma/bg-mobile.png?v=20260604-23");
  }
}

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

:where(button, input, select, textarea, a, p, span, strong, small, em, b, h1, h2, h3, h4, h5, h6, label, li, dt, dd, th, td) {
  font-family: var(--font-pretendard);
}

button {
  cursor: pointer;
}

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

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

img,
svg {
  display: block;
}

.ui-icon,
.section-icon,
.process-icon,
.service-icon,
.header-icon-img,
.mini-cart-img,
.hover-action-icon,
.trust-icon,
.bundle-cart-img,
.chevron-img {
  display: block;
  object-fit: contain;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 214px 1fr auto;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto 28px;
  padding: 0 28px;
  border: 1px solid var(--header-glass-border);
  border-radius: 22px;
  background: var(--header-glass-bg-soft);
  backdrop-filter: blur(12px) saturate(1.04);
  -webkit-backdrop-filter: blur(12px) saturate(1.04);
  box-shadow: var(--header-glass-shadow), var(--header-glass-highlight);
}

.brand-lockup {
  display: inline-grid;
  place-items: center;
  width: 62px;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-lockup span {
  display: none;
}

.site-nav,
.header-actions,
.action-row,
.badge-row,
.hero-dots,
.thumb-row,
.qty-control {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: clamp(20px, 2.8vw, 44px);
}

.nav-menu-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link,
.site-nav a {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-link::after,
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--fairway);
  opacity: 0;
  transform: scaleX(0.2);
  transition: transform 180ms ease, opacity 180ms ease;
  pointer-events: none;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 6px;
}

.auth-link {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #FFFFFF;
  padding: 0 13px;
  color: var(--ink);
  font-size: 10.4px;
  font-weight: 900;
  white-space: nowrap;
}

.auth-link-primary {
  border-color: rgba(17, 58, 42, 0.12);
  background: var(--fairway);
  color: #FFFFFF;
}

.text-btn,
.icon-btn,
.mobile-menu {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--ink);
  font-weight: 900;
}

.text-btn {
  grid-auto-flow: column;
  gap: 8px;
  padding: 0 16px;
}

.text-btn b {
  color: var(--deep);
}

.icon-btn,
.mobile-menu {
  width: 42px;
}

.image-icon-btn {
  position: relative;
  overflow: visible;
  border: 0;
  background: transparent;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.plain-header-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}

.header-glyph-img {
  display: block;
  width: 22px;
  height: 22px;
}

.inline-action-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

.shop-icon-22 {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 32px;
}

.checkout-method-icon:has(.shop-icon-22) {
  width: 32px;
  height: 32px;
}

.image-icon-btn b {
  position: absolute;
  right: -5px;
  top: -3px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #12A869;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 950;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 42px;
  align-items: center;
  width: min(860px, 100%);
  margin: 42px auto 0;
  padding: 38px;
}

.auth-copy p {
  margin: 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.auth-copy h1 {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.15;
}

.auth-copy span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
}

.auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #FFFFFF;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.signup-choice-page {
  display: flex;
  justify-content: center;
  margin: 28px auto 0;
}

.login-choice-page {
  display: flex;
  justify-content: center;
  margin: 28px auto 0;
}

.signup-choice-card {
  width: min(420px, 100%);
  display: grid;
  gap: 28px;
  padding: 10px 0 0;
}

.login-choice-card {
  width: min(420px, 100%);
  display: grid;
  gap: 20px;
  padding: 10px 0 0;
}

.signup-choice-header {
  text-align: center;
}

.signup-choice-header h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
}

.signup-choice-header p,
.signup-choice-header span {
  display: block;
  margin: 0;
  color: rgba(17, 22, 20, 0.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.signup-choice-header span {
  color: var(--muted);
  font-size: 13px;
}

.login-choice-header {
  margin-bottom: 4px;
}

.login-social-stack {
  display: grid;
  gap: 8px;
}

.login-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 14px 28px -24px rgba(17, 58, 42, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.login-social-kakao {
  background: #FEE500;
}

.login-social-naver {
  background: #03C75A;
  color: #FFFFFF;
}

.login-social-naver > span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #03C75A;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.login-divider {
  margin: 2px 0 -2px;
}

.login-member-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.login-member-tabs button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.login-member-tabs button.is-active {
  color: var(--ink);
}

.login-form {
  display: grid;
  gap: 0;
}

.login-field {
  display: grid;
  gap: 8px;
  padding: 12px 0 10px;
}

.login-field > span:first-child {
  color: rgba(17, 22, 20, 0.42);
  font-size: 12px;
  font-weight: 800;
}

.login-field input {
  width: 100%;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  outline: 0;
}

.login-field input::placeholder {
  color: rgba(17, 22, 20, 0.3);
  font-size: 14px;
  font-weight: 650;
}

.password-input-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
}

.password-input-wrap button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 22, 20, 0.46);
}

.password-input-wrap svg {
  width: 18px;
  height: 18px;
}

.login-submit-btn {
  width: 100%;
  margin-top: 18px;
}

.guest-order-submit-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: #F3F5F3;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.login-helper-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: -4px;
}

.login-helper-links span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-helper-links button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 12px;
  font-weight: 800;
}

.login-helper-links > button {
  color: var(--deep);
}

.auth-assist-card {
  gap: 22px;
}

.auth-assist-form {
  border: 1px solid rgba(220, 229, 221, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 20px 22px 22px;
  box-shadow: 0 18px 34px -30px rgba(6, 20, 14, 0.3);
}

.auth-assist-result {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  border: 1px solid rgba(18, 168, 105, 0.18);
  border-radius: 14px;
  background: rgba(234, 247, 240, 0.82);
  padding: 14px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.auth-assist-result[hidden] {
  display: none;
}

.auth-assist-result[data-status="error"] {
  border-color: rgba(191, 60, 48, 0.2);
  background: rgba(255, 245, 242, 0.92);
  color: #8c2d24;
}

.auth-assist-result strong,
.auth-assist-result b,
.auth-assist-result span {
  display: block;
}

.auth-assist-result strong {
  font-size: 12px;
  font-weight: 900;
}

.auth-assist-result b {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.auth-assist-result span {
  color: rgba(17, 22, 20, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.auth-assist-nav {
  margin-top: 0;
}

.id-signup-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 950;
}

.social-signup-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.kakao-signup-btn,
.naver-signup-btn {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 28px -22px rgba(17, 58, 42, 0.42);
}

.kakao-signup-btn {
  background: #FEE500;
  color: #111614;
}

.kakao-bubble {
  width: 17px;
  height: 15px;
  border-radius: 50%;
  background: #111614;
  position: relative;
}

.kakao-bubble::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  background: #111614;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.signup-benefit-banner {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 10px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 248, 242, 0.94) 50%, rgba(247, 246, 239, 0.96) 100%);
}

.signup-benefit-banner::before,
.signup-benefit-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 52px;
  transform: translateY(-50%);
  background: rgba(244, 249, 244, 0.96);
}

.signup-benefit-banner::before {
  left: -14px;
  border-radius: 0 999px 999px 0;
}

.signup-benefit-banner::after {
  right: -14px;
  border-radius: 999px 0 0 999px;
}

.signup-coupon-top,
.signup-coupon-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.signup-coupon-top {
  padding-bottom: 14px;
}

.signup-coupon-top span {
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.signup-coupon-top b {
  border-radius: 999px;
  background: var(--gradient-deep);
  padding: 6px 10px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 850;
}

.signup-coupon-body {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 10px 20px;
  text-align: center;
}

.signup-coupon-body p,
.signup-coupon-body h2,
.signup-coupon-body strong,
.signup-coupon-body small {
  margin: 0;
}

.signup-coupon-body p {
  color: rgba(17, 58, 42, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.signup-coupon-body h2 {
  margin-top: 6px;
  color: var(--deep);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
}

.signup-coupon-body strong {
  margin-top: 12px;
  color: #B28224;
  font-size: 54px;
  font-weight: 950;
  line-height: 0.95;
}

.signup-coupon-body small {
  margin-top: 10px;
  color: rgba(17, 22, 20, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.signup-coupon-foot {
  padding-top: 14px;
}

.signup-coupon-foot span {
  color: rgba(17, 22, 20, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.signup-coupon-foot em {
  border-radius: 6px;
  background: rgba(231, 216, 184, 0.42);
  padding: 6px 9px;
  color: var(--deep);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.signup-divider {
  position: relative;
  display: flex;
  justify-content: center;
  color: rgba(17, 22, 20, 0.36);
  font-size: 13px;
  font-weight: 800;
}

.signup-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0;
  background: transparent;
}

.signup-divider span {
  position: relative;
  padding: 0 18px;
  background: transparent;
  color: rgba(17, 22, 20, 0.68);
}

.id-signup-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  box-shadow: 0 12px 24px rgba(3, 52, 37, 0.18);
}

.id-signup-btn::after {
  content: "›";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1;
}

.naver-signup-btn {
  background: #03C75A;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.signup-form-page {
  width: min(850px, 100%);
  margin: 28px auto 0;
}

.signup-form-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  font-weight: 950;
  line-height: 1.2;
}

.signup-form-title p {
  margin: 8px 0 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.signup-detail-form {
  display: grid;
  gap: 24px;
  padding: 32px 34px 36px;
}

.signup-detail-form fieldset {
  display: grid;
  gap: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.signup-detail-form legend {
  width: 100%;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--deep);
  padding-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.signup-field {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: stretch;
  min-height: 40px;
}

.signup-field > label:first-child {
  display: flex;
  align-items: center;
  background: #F3F6F3;
  padding: 0 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.signup-field.required > label:first-child::before {
  content: "* ";
  color: #D35A37;
}

.signup-field input,
.signup-field select {
  width: min(100%, 410px);
  height: 24px;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #FFFFFF;
  padding: 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.signup-radio-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.signup-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.signup-radio-row input {
  width: auto;
  height: auto;
}

.signup-form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(530px, 100%);
  margin-top: 8px;
  align-items: stretch;
}

.signup-form-actions button {
  width: 100%;
  height: 52px;
  min-height: 52px;
  margin: 0;
  padding: 0 22px;
  box-sizing: border-box;
  font-size: 15px;
}

.signup-form-actions .secondary-btn,
.signup-form-actions .primary-btn {
  margin-top: 0;
}

.signup-form-actions .primary-btn {
  background: var(--deep);
  color: #FFFFFF;
  box-shadow: none;
}

.signup-complete-page {
  width: min(720px, 100%);
  margin: 38px auto 0;
}

.signup-complete-card {
  display: grid;
  gap: 18px;
  padding: 42px;
  text-align: center;
}

.signup-complete-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.signup-complete-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 950;
  line-height: 1.18;
}

.signup-complete-card p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.signup-complete-card p strong {
  color: var(--deep);
}

.signup-complete-notice {
  display: grid;
  gap: 6px;
  margin: 8px auto 2px;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #F7FAF7;
  padding: 18px 20px;
  text-align: left;
}

.signup-complete-notice b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.signup-complete-notice span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.signup-complete-actions {
  margin: 8px auto 0;
}

.mobile-menu {
  display: none;
  position: relative;
  overflow: hidden;
  grid-template-rows: repeat(3, 3px);
  align-content: center;
  justify-items: center;
  gap: 3px;
  width: 38px;
  min-height: 38px;
  border: 1px solid rgba(220, 229, 221, 0.92);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 246, 239, 0.92) 100%);
  color: var(--deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 8px 18px -18px rgba(17, 58, 42, 0.34);
  backdrop-filter: blur(8px) saturate(1.04);
  -webkit-backdrop-filter: blur(8px) saturate(1.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.mobile-menu::after {
  content: none;
}

.mobile-menu:hover,
.mobile-menu:focus-visible,
.mobile-menu.is-open {
  border-color: rgba(17, 58, 42, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 247, 240, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 22px -18px rgba(17, 58, 42, 0.38);
}

.mobile-menu span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--deep);
  box-shadow: 0 1px 1px rgba(17, 58, 42, 0.1);
}

.product-menu {
  position: absolute;
  top: 71px;
  display: none;
  width: 230px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.desktop-product-menu {
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
}

.mobile-product-menu {
  right: 18px;
  display: none;
}

.product-menu.is-open {
  display: grid;
}

.mobile-product-menu.is-open {
  display: none;
}

.product-menu a {
  min-height: 42px;
  padding: 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
}

.mobile-product-menu .product-menu-account {
  margin-top: 4px;
  border-top: 1px solid rgba(17, 58, 42, 0.08);
  color: var(--deep);
  font-weight: 800;
}

.product-menu a:hover {
  background: rgba(234, 247, 240, 0.92);
  color: var(--deep);
}

@media (hover: hover) {
  .site-header .nav-link:hover,
  .site-header .site-nav a:hover {
    color: var(--deep);
  }

  .site-header .nav-link:hover::after,
  .site-header .site-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .product-menu a:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -22px rgba(17, 58, 42, 0.42);
  }

  :where(
    .auth-link,
    .text-btn,
    .icon-btn:not(.image-icon-btn),
    .secondary-btn,
    .ghost-btn,
    .light-btn,
    .chip-row button,
    .thumb-row button,
    .mini-cart-btn,
    .store-product,
    .kakao-signup-btn,
    .naver-signup-btn,
    .mypage-side button,
    .admin-side button
  ):not(:disabled):hover {
    transform: translateY(-2px);
    border-color: rgba(17, 58, 42, 0.22);
    box-shadow: 0 18px 30px -24px rgba(17, 58, 42, 0.34);
  }

  :where(
    .auth-link-primary,
    .primary-btn,
    .gold-cart-btn,
    .gallery-more-btn,
    .detail-mini-cta-btn,
    .secondary-btn.dark,
    .secondary-btn.warm
  ):not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 20px 34px -22px rgba(17, 58, 42, 0.36);
  }

  .outline-light-btn:not(:disabled):hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.28);
  }

  .hover-action-btn:not(:disabled):hover,
  .bundle-cart-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -22px rgba(17, 58, 42, 0.36);
  }

  .plain-header-icon:not(:disabled):hover,
  .image-icon-btn:not(:disabled):hover {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 10px 18px rgba(17, 58, 42, 0.16));
  }

  .hero-dots button:not(:disabled):hover {
    transform: scale(1.12);
    background: rgba(17, 58, 42, 0.32);
  }

  .hero-dots button.is-active:hover {
    background: var(--deep);
  }
}

main {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

main.inspection-main {
  width: min(1680px, calc(100% - 48px));
  padding-bottom: 0;
}

.hero-transition {
  --hero-scroll-progress: 0;
  --hero-sequence-progress: 0;
  position: relative;
  height: clamp(980px, 220vh, 1880px);
  margin: 0 0 28px;
}

.hero-transition-stage {
  position: sticky;
  top: 18px;
  height: min(820px, calc(100vh - 36px));
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--ivory);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-transition-video,
.hero-transition-sky,
.hero-transition-ball {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-transition-video,
.hero-transition-ball {
  object-fit: cover;
}

.hero-transition-video {
  z-index: 1;
  opacity: calc(1 - (var(--hero-sequence-progress) * 0.72));
  transition: opacity 420ms ease;
}

.hero-transition-sky {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(247, 246, 239, 0.34) 56%, rgba(234, 247, 240, 0.82) 100%),
    url("./assets/figma/bg-desktop.png") center / cover no-repeat;
  opacity: calc(0.48 + (var(--hero-sequence-progress) * 0.38));
}

.hero-transition-ball {
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc((1 - var(--hero-sequence-progress)) * -12px));
  transition: opacity 220ms ease;
}

.hero-transition.is-intro-ended .hero-transition-ball {
  opacity: 1;
}

.hero-transition-field {
  position: absolute;
  z-index: 2;
  left: -6%;
  right: -6%;
  bottom: -2px;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(234, 247, 240, 0) 0%, rgba(234, 247, 240, 0.72) 30%, rgba(220, 229, 221, 0.92) 100%),
    linear-gradient(90deg, rgba(6, 20, 14, 0.1) 0%, rgba(231, 216, 184, 0.22) 48%, rgba(18, 168, 105, 0.12) 100%);
  opacity: calc(0.34 + (var(--hero-sequence-progress) * 0.58));
  transform: translateY(calc((1 - var(--hero-sequence-progress)) * 44px));
  pointer-events: none;
}

.hero-transition-field::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background:
    repeating-linear-gradient(97deg, rgba(17, 58, 42, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(234, 247, 240, 0.54));
}

.hero-transition-hole {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: clamp(84px, 9vw, 132px);
  height: clamp(24px, 2.8vw, 38px);
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(6, 20, 14, 0.72) 0%, rgba(6, 20, 14, 0.58) 32%, rgba(6, 20, 14, 0.12) 62%, transparent 70%),
    rgba(17, 58, 42, 0.12);
  box-shadow:
    inset 0 2px 8px rgba(6, 20, 14, 0.22),
    0 18px 34px rgba(6, 20, 14, 0.08);
}

.hero-transition-copy,
.hero-transition-products {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-transition.is-intro-ended .hero-transition-copy,
.hero-transition.is-intro-ended .hero-transition-products {
  opacity: 1;
  transform: translateY(0);
}

.hero-transition-copy {
  left: clamp(24px, 4.6vw, 64px);
  bottom: clamp(136px, 19vw, 250px);
  width: min(520px, calc(100% - 48px));
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(220, 229, 221, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 5px 5px 15px rgba(255, 255, 255, 0.28),
    inset -5px -5px 15px rgba(220, 229, 221, 0.18),
    0 18px 46px -34px rgba(17, 58, 42, 0.42);
  backdrop-filter: blur(12px);
}

.hero-transition-copy p {
  margin: 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.hero-transition-copy h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4.1vw, 58px);
  line-height: 1.08;
  font-weight: 950;
}

.hero-transition-copy span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.55;
}

.hero-transition-products {
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  width: min(560px, calc(100% - 36px));
}

.hero-transition-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(220, 229, 221, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px -28px rgba(17, 58, 42, 0.42);
  cursor: pointer;
  text-align: left;
}

.hero-transition-product-media {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--mint);
}

.hero-transition-product-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.hero-transition-product b,
.hero-transition-product small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-transition-product b {
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.hero-transition-product small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .hero-transition {
    height: 238vh;
    margin-bottom: 18px;
  }

  .hero-transition-stage {
    top: 10px;
    height: min(760px, calc(100svh - 20px));
    min-height: 620px;
    border-radius: 26px;
  }

  .hero-transition-sky {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(247, 246, 239, 0.28) 50%, rgba(234, 247, 240, 0.86) 100%),
      url("./assets/figma/bg-mobile.png") center / cover no-repeat;
  }

  .hero-transition-copy {
    left: 16px;
    right: 16px;
    top: 46px;
    bottom: auto;
    width: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .hero-transition-copy p {
    font-size: 12px;
  }

  .hero-transition-copy h1 {
    font-size: clamp(28px, 8.5vw, 42px);
    line-height: 1.14;
  }

  .hero-transition-copy span {
    font-size: 14px;
  }

  .hero-transition-products {
    left: 14px;
    right: 14px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: auto;
    gap: 8px;
  }

  .hero-transition-product {
    min-height: 66px;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 9px 12px;
    border-radius: 14px;
  }

  .hero-transition-product-media {
    width: 46px;
    height: 46px;
  }

  .hero-transition-field {
    height: 43%;
  }
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.hero-track {
  display: flex;
  transition: transform 720ms ease;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 1320 / 450;
  overflow: hidden;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero-image-link {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.hero-image-link:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: -6px;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 44px;
  width: min(460px, 46%);
  transform: translateY(-50%);
  z-index: 2;
}

.hero-copy--mobile-only {
  display: none;
}

.hero-grade-marks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slide .hero-grade-mark {
  position: absolute;
  display: block;
  width: 110px;
  height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  appearance: none;
  -webkit-appearance: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(6, 20, 14, 0.16));
  opacity: 0.88;
  user-select: none;
  pointer-events: auto;
}

.hero-slide .hero-grade-mark-btn {
  line-height: 0;
  cursor: pointer;
}

.hero-slide .hero-grade-mark-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.hero-slide .hero-grade-mark:focus-visible {
  outline: 3px solid rgba(11, 61, 46, 0.28);
  outline-offset: 6px;
}

.hero-slide .hero-grade-mark--s {
  top: 8%;
  right: 11%;
  width: clamp(118px, 10.8vw, 168px);
  transform: rotate(-7deg);
}

.hero-slide .hero-grade-mark--a {
  top: 36%;
  right: 34%;
  width: clamp(82px, 7.7vw, 122px);
  transform: rotate(4deg);
  opacity: 0.82;
}

.hero-slide .hero-grade-mark--b {
  right: 8%;
  bottom: 14%;
  width: clamp(78px, 7.2vw, 112px);
  transform: rotate(8deg);
  opacity: 0.8;
}

.hero-slide--quality img {
  object-position: center center;
}

.hero-slide--quality::after {
  content: none;
}

.hero-slide--quality .hero-copy {
  z-index: 2;
}

.hero-slide--quality .hero-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(17, 58, 42, 0.08);
  border-radius: 999px;
  background: rgba(234, 247, 240, 0.94);
  box-shadow: 0 10px 22px -20px rgba(17, 58, 42, 0.42);
}

.hero-copy span,
.page-title p,
.section-head p,
.breadcrumb,
.product-top span,
.buy-panel > p {
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 14px 0 0;
  padding-bottom: 4px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
  line-height: 1.18;
}

.hero-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-copy--buttons-only {
  top: auto;
  bottom: 44px;
  left: 58px;
  width: auto;
  transform: none;
}

.hero-copy--buttons-only .hero-cta-row {
  margin-top: 0;
}

.primary-btn,
.secondary-btn,
.gold-cart-btn,
.ghost-btn,
.light-btn,
.outline-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

:where(
  .auth-link,
  .text-btn,
  .icon-btn,
  .mobile-menu,
  .primary-btn,
  .secondary-btn,
  .gold-cart-btn,
  .ghost-btn,
  .light-btn,
  .outline-light-btn,
  .chip-row button,
  .thumb-row button,
  .hover-action-btn,
  .mini-cart-btn,
  .bundle-cart-btn,
  .gallery-more-btn,
  .detail-mini-cta-btn,
  .store-product,
  .kakao-signup-btn,
  .naver-signup-btn,
  .mypage-side button,
  .admin-side button,
  .hero-dots button
) {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.gold-cart-btn {
  min-height: 58px;
  border: 2px solid #e59500;
  border-radius: 14px;
  background: linear-gradient(90deg, #ffe9ad 0%, #f2b544 54%, #df8a00 100%);
  color: var(--deep);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.62),
    0 12px 24px -18px rgba(214, 132, 0, 0.85);
  font-size: 17px;
  font-weight: 950;
}

.gold-cart-btn svg {
  width: 22px;
  height: 22px;
}

.gold-cart-btn .inline-action-icon {
  width: 22px;
  height: 22px;
}

.gold-cart-btn:disabled {
  background: linear-gradient(90deg, #f1ead7 0%, #e7dbc0 100%);
  color: #8c928d;
  border-color: #d8c9a9;
  box-shadow: none;
}

.primary-btn {
  margin-top: 24px;
  border: 1px solid var(--warm);
  background: var(--gradient-gold);
  color: var(--deep-2);
  box-shadow: 0 16px 28px -22px rgba(17, 58, 42, 0.32);
}

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

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  justify-content: center;
  gap: 9px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--line);
}

.hero-dots button.is-active {
  width: 24px;
  background: var(--deep);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-height: 92px;
  padding: 18px 22px;
  align-items: center;
}

.trust-strip article + article {
  border-left: 1px solid var(--line-soft);
}

.trust-icon {
  width: 40px;
  height: 40px;
}

.trust-strip strong {
  display: block;
  font-size: 14px;
  font-weight: 950;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.section-head,
.page-title {
  margin: 44px 0 22px;
}

.page-title.compact {
  margin-top: 0;
}

.section-head h1,
.page-title h1 {
  margin: 7px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.24;
}

.page-title span {
  display: block;
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

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

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

.product-grid.small .product-media,
.product-grid.small .product-media-link {
  overflow: hidden;
}

.product-grid.small .product-media img {
  max-width: min(220px, 68%);
  max-height: calc(100% - 28px);
  object-fit: contain;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 12px 30px -28px rgba(17, 58, 42, 0.32);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.55;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(135deg, #FFFFFF 0%, #F7F7F5 100%);
}

.product-media-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.product-media img,
.best-media img {
  transition: transform 180ms ease, filter 180ms ease;
}

.product-media img {
  width: min(244px, 76%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.1));
}

.product-body {
  padding: 20px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-top b {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 12px;
  line-height: 28px;
}

.product-card h2 {
  min-height: 54px;
  margin: 13px 0 0;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.35;
}

.product-card p {
  min-height: 66px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.product-card dl {
  display: grid;
  gap: 5px;
  margin: 16px 0 0;
}

.product-card dl div {
  display: grid;
  grid-template-columns: 44px 1fr;
  color: var(--muted);
  font-size: 13px;
}

.product-card dt,
.product-card dd {
  margin: 0;
}

.product-bottom {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.product-bottom strong {
  font-size: 20px;
  font-weight: 950;
}

.card-cart-btn {
  width: 100%;
}

.round-action {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.panel-card {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.compact {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 13px;
}

.gold-cart-btn.compact {
  min-height: 46px;
  border-radius: 10px;
  font-size: 14px;
}

.home-filter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 12px;
  padding: 22px 26px;
}

.home-filter p,
.home-section-head p {
  margin: 0;
  color: var(--section-title-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.home-filter span,
.detail-story-hero span,
.composition-grid span,
.detail-bottom-cta span {
  display: block;
  margin-top: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.chip-row button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #FFFFFF;
  padding: 0 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.chip-row button.is-active {
  border-color: var(--deep);
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.home-filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.home-section {
  margin-top: 12px;
  padding: 26px;
}

.home-protected-section {
  margin-top: 12px;
}

.home-protected-section img {
  display: block;
  width: 100%;
  height: auto;
}

.home-system-section {
  font-family: var(--font-pretendard);
  color: var(--ink);
  padding: 26px;
}

.home-grade-overview {
  scroll-margin-top: 116px;
}

.home-system-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
  margin-bottom: 22px;
}

.home-system-head h2 {
  margin: 0;
  color: var(--section-title-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.home-system-head p {
  margin: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.home-system-image-body {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
}

.home-system-image-body img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.home-grade-system-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.98fr 0.98fr;
  gap: 22px;
  align-items: stretch;
}

.home-grade-system-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 184px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  padding: 26px 24px;
  box-shadow: 0 18px 34px -28px rgba(17, 58, 42, 0.3);
}

.home-grade-system-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(18, 168, 105, 0.09);
  pointer-events: none;
}

.home-grade-system-card.strong {
  border-color: rgba(17, 58, 42, 0.24);
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.home-grade-system-card.soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(234, 247, 240, 0.82) 100%);
}

.home-grade-system-card.warm {
  border-color: rgba(231, 216, 184, 0.9);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 246, 239, 0.92) 100%);
}

.home-grade-letter {
  display: grid;
  place-items: center;
  justify-self: center;
  z-index: 1;
  width: 108px;
  height: 118px;
  border: 1px solid rgba(220, 229, 221, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 18px 28px -24px rgba(5, 35, 24, 0.45);
}

.home-grade-letter img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
  transform: translateY(2px);
  filter: drop-shadow(0 12px 14px rgba(5, 35, 24, 0.12));
}

.home-grade-system-card.strong .home-grade-letter {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

.home-grade-system-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  word-break: keep-all;
}

.home-grade-system-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--section-body-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

.home-grade-system-card.strong p {
  color: rgba(255, 255, 255, 0.86);
}

.home-grade-system-card small {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.home-grade-system-card small span {
  border-radius: 999px;
  background: rgba(18, 168, 105, 0.1);
  padding: 5px 9px;
  color: var(--deep);
}

.home-grade-system-card.strong small span {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.home-grade-system-card small b {
  color: currentColor;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
}

.home-process-system-grid {
  display: grid;
  grid-template-columns: repeat(var(--process-count), minmax(0, 1fr));
  gap: 22px;
  padding-top: 4px;
}

.home-process-system-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 8px 10px 0;
  text-align: center;
}

.home-process-system-grid article + article::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -20px;
  width: 18px;
  height: 18px;
  border-top: 3px solid #D09913;
  border-right: 3px solid #D09913;
  transform: rotate(45deg);
}

.home-process-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.home-process-icon .process-icon {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
}

.home-process-system-grid b {
  margin-top: 6px;
  color: #D09913;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.home-process-system-grid strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  word-break: keep-all;
}

.home-process-system-grid small {
  color: var(--section-body-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.home-filter > div:first-child,
.home-section-head > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
}

.home-section-head h1 {
  margin: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.home-section-head span {
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.best-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.best-item {
  display: grid;
  gap: 10px;
}

.best-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 12px 28px -28px rgba(17, 58, 42, 0.36);
}

.best-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 48%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 245, 0.94) 100%);
  backdrop-filter: blur(6px) saturate(1.03);
  -webkit-backdrop-filter: blur(6px) saturate(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -16px 24px rgba(255, 255, 255, 0.05);
}

.best-media img {
  width: min(132px, 80%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.1));
}

.best-media-placeholder-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 20px;
  text-align: center;
}

.best-media-placeholder-copy strong {
  color: var(--deep);
  font-size: 18px;
  font-weight: 950;
}

.best-media-placeholder-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.best-media b {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 24px;
  border-radius: 999px;
  background: var(--deep);
  color: #FFFFFF;
  font-size: 11px;
}

.product-hover-zone {
  isolation: isolate;
}

.product-hover-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 58, 42, 0.02) 0%, rgba(17, 58, 42, 0.62) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hover-actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hover-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 26px -18px rgba(17, 58, 42, 0.42);
}

.hover-action-icon {
  width: 18px;
  height: 18px;
}

.hover-action-btn.add {
  border-color: var(--warm);
  background: var(--gradient-gold);
  gap: 0;
}

.hover-action-btn.wish.is-active {
  border-color: var(--deep);
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.product-hover-zone:hover::after,
.product-hover-zone:focus-within::after,
.product-card:hover .product-hover-zone::after,
.best-card:hover .product-hover-zone::after {
  opacity: 1;
}

.product-hover-zone:hover .hover-actions,
.product-hover-zone:focus-within .hover-actions,
.product-card:hover .hover-actions,
.best-card:hover .hover-actions {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.product-hover-zone:hover img,
.product-hover-zone:focus-within img,
.product-card:hover .product-hover-zone img,
.best-card:hover .product-hover-zone img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 20px 24px rgba(17, 58, 42, 0.18));
}

.best-body {
  padding: 14px;
}

.best-body span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.best-body h2 {
  min-height: 38px;
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.best-body p {
  min-height: 34px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.best-body strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 950;
}

.best-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 10px 24px -24px rgba(17, 58, 42, 0.4);
}

.best-review.no-action {
  grid-template-columns: 1fr;
}

.best-review small {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.best-review-stars {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0;
}

.mini-cart-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #F4FBF7;
  overflow: hidden;
  padding: 4px;
}

.mini-cart-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1));
}

.reason-grid,
.detail-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article,
.detail-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  min-height: 104px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #FFFFFF;
  padding: 18px;
}

.section-icon {
  width: 58px;
  height: 58px;
}

.reason-grid .section-icon,
.detail-benefits .section-icon {
  width: 44px;
  height: 44px;
  justify-self: center;
}

.reason-grid h2,
.detail-benefits h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
}

.reason-grid p,
.detail-benefits p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.grade-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grade-guide article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 142px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 18px;
  background: #FFFFFF;
}

.grade-guide article.strong {
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.grade-guide article.soft {
  background: rgba(234, 247, 240, 0.92);
}

.grade-guide article.warm {
  background: #F7F6EF;
}

.grade-guide b {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep);
  font-size: 30px;
  font-weight: 950;
}

.grade-guide h2 {
  margin: 0;
  font-size: 16px;
}

.grade-guide p,
.grade-guide span {
  margin: 7px 0 0;
  color: inherit;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  opacity: 0.82;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-strip.dense {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-strip article {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 126px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 18px 12px;
  text-align: center;
}

.process-strip article + article::before {
  content: "›";
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 24px;
  font-weight: 900;
}

.process-strip b {
  color: var(--muted);
  font-size: 12px;
}

.process-strip strong {
  font-size: 13px;
  font-weight: 950;
}

.process-strip small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.process-icon {
  width: 54px;
  height: 54px;
}

.process-strip:not(.dense) .process-icon {
  width: 58px;
  height: 58px;
}

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

.service-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--icon-card-glass-3) 0%, rgba(255, 255, 255, 0.012) 100%),
    var(--gradient-deep);
  background-clip: padding-box;
  color: #FFFFFF;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  backdrop-filter: blur(10px) saturate(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 2px rgba(6, 20, 14, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(6, 20, 14, 0.28),
    0 18px 30px -28px rgba(6, 20, 14, 0.45);
  isolation: isolate;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 11px;
  box-shadow:
    inset 7px 7px 18px rgba(255, 255, 255, 0.06),
    inset -7px -7px 18px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.service-grid article > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 36px;
  height: 36px;
  justify-self: center;
  align-self: center;
}

.service-grid h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
}

.service-grid p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.store-select-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
}

.store-notice {
  display: grid;
  align-content: center;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(234, 247, 240, 0.92);
  padding: 30px;
}

.store-notice h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
}

.store-notice p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.7;
}

.store-notice > div {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.secondary-btn.dark {
  border-color: var(--fairway);
  background: var(--fairway);
  color: #FFFFFF;
}

.store-product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.store-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 122px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FFFFFF;
  padding: 16px;
  text-align: left;
}

.store-product > img:not(.chevron-img) {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.store-product span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.store-product strong {
  min-width: 0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.store-product small {
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.store-product b {
  min-width: 0;
  color: var(--fairway);
  font-size: 12px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.chevron-img {
  width: 24px;
  height: 24px;
}

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

.bundle-card {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FFFFFF;
  padding: 18px;
}

.bundle-media {
  display: grid;
  grid-template-columns: 64px 18px 64px;
  align-items: center;
  gap: 8px;
  min-height: 72px;
}

.bundle-media img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.bundle-media span {
  color: var(--muted);
  font-weight: 950;
}

.bundle-card h2 {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 950;
}

.bundle-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.bundle-card strong {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 950;
}

.bundle-cart-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.bundle-cart-img {
  width: 24px;
  height: 24px;
  filter: brightness(0.8);
}

.home-bottom-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 21px;
  border-radius: 12px;
  background: var(--fairway);
  color: #FFFFFF;
  padding: 28px 42px;
  box-shadow: var(--shadow);
}

.home-bottom-cta h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
}

.home-bottom-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.home-bottom-cta-btn {
  min-width: 200px;
}

.secondary-btn.warm {
  border-color: #E7D8B8;
  background: #E7D8B8;
  color: var(--fairway);
}

.detail-story {
  display: grid;
  gap: 24px;
  margin-top: 12px;
}

.inspection-page {
  margin: 0;
  display: flex;
  justify-content: center;
}

.inspection-page-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.detail-story-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  padding: 34px;
}

.detail-story-hero h2 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 950;
  line-height: 1.25;
}

.detail-story-hero span,
.detail-bottom-cta span {
  color: rgba(255, 255, 255, 0.82);
}

.detail-story-hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.detail-story-hero img {
  width: min(260px, 100%);
  justify-self: center;
  filter: drop-shadow(0 20px 24px rgba(17, 58, 42, 0.22));
}

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

.product-detail-frame-shot {
  overflow: hidden;
  margin-top: 19px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.product-detail-frame-shot.protected-image-zone {
  position: relative;
  width: min(var(--protected-image-max-width, 520px), 100%);
  margin-right: auto;
  margin-left: auto;
}

.product-detail-frame-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #FFFFFF;
}

.protected-image-zone img {
  filter: none;
}

.protected-detail-cta-hitbox {
  position: absolute;
  left: 5%;
  bottom: 1.4%;
  width: 32%;
  height: 2.8%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.protected-detail-cta-hitbox:focus-visible {
  outline: 3px solid rgba(242, 181, 68, 0.92);
  outline-offset: 2px;
}

.composition-grid,
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.composition-grid article,
.detail-card-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #FFFFFF;
  padding: 18px;
}

.composition-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 950;
}

.composition-grid p,
.detail-card-grid p,
.detail-bottom-cta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.detail-card-grid img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--mint);
}

.detail-card-grid h2 {
  margin: 14px 0 0;
  font-size: 17px;
}

.detail-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  padding: 28px 32px;
}

.detail-bottom-cta h2 {
  margin: 6px 0 0;
  font-size: 26px;
}

.detail-bottom-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  gap: 10px;
  width: min(1320px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 0 0 64px;
}

.site-footer-card {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  padding: 28px 28px 18px;
  box-shadow: var(--shadow);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(110px, 0.78fr)) minmax(180px, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand-lockup {
  display: inline-grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  width: fit-content;
}

.footer-brand-lockup img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-text {
  display: grid;
  gap: 2px;
}

.footer-brand-text strong {
  font-size: 15px;
  font-weight: 950;
}

.footer-brand-text span {
  color: rgba(17, 22, 20, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.footer-brand p {
  max-width: 210px;
  margin: 0;
  color: rgba(17, 22, 20, 0.62);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 950;
}

.footer-column a {
  color: rgba(17, 22, 20, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 6px;
}

.footer-contact a {
  color: var(--deep);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.footer-contact p,
.footer-contact span {
  margin: 0;
  color: rgba(17, 22, 20, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

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

.footer-bottom p,
.footer-bottom small {
  margin: 0;
  color: rgba(17, 22, 20, 0.54);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.detail-layout,
.cart-layout,
.checkout-layout,
.mypage-layout,
.admin-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
  gap: 34px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.detail-gallery,
.buy-panel,
.detail-check-strip,
.detail-info-section,
.detail-spec-section,
.summary-panel,
.checkout-form,
.mypage-side,
.mypage-content,
.admin-side,
.admin-content,
.empty-card,
.info-panels article,
.store-grid article,
.customer-grid article,
.story-panel,
.coupon-card,
.process-card,
.stat-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.detail-gallery,
.buy-panel {
  border-radius: 18px;
  padding: 20px;
}

.gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 370px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background:
    var(--glass-lite-overlay),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 252, 251, 0.92) 100%);
  backdrop-filter: blur(6px) saturate(1.03);
  -webkit-backdrop-filter: blur(6px) saturate(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -18px 26px rgba(255, 255, 255, 0.05);
}

.gallery-stage::before {
  content: "";
  position: absolute;
  width: min(320px, 70%);
  aspect-ratio: 1;
  border-radius: 999px;
  background: #F3F3F1;
}

.gallery-stage img,
.gallery-stage video {
  position: relative;
  z-index: 1;
  width: min(354px, 78%);
  height: auto;
  object-fit: contain;
}

.gallery-stage video {
  width: min(560px, 96%);
  max-height: 410px;
  border-radius: 12px;
  background: #FFFFFF;
}

.gallery-stage.has-video {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.gallery-stage.has-video::before {
  content: none;
}

.gallery-stage.has-video .gallery-more-btn {
  top: auto;
  bottom: 22px;
}

.gallery-more-btn {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  min-height: 40px;
  border: 1px solid #df8a00;
  border-radius: 10px;
  background: var(--gradient-gold);
  padding: 0 20px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 18px -16px rgba(214, 132, 0, 0.8);
}

.gallery-note {
  margin: 12px 0 0;
  border-radius: 9px;
  background: #edf8f2;
  padding: 10px 14px;
  color: rgba(17, 22, 20, 0.55);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.thumb-row {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.thumb-row button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #FFFFFF;
  padding: 0;
}

.thumb-row button.is-active {
  border-color: var(--deep);
  box-shadow: inset 0 0 0 1px var(--deep);
}

.thumb-row img {
  display: block;
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

.ghost-btn {
  width: 100%;
  margin-top: 18px;
}

.badge-row {
  justify-content: flex-end;
  gap: 8px;
}

.badge-row span,
.badge-row b {
  min-height: 30px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
  line-height: 30px;
}

.badge-row span {
  background: var(--mint);
}

.badge-row b {
  background: var(--deep);
  color: #FFFFFF;
}

.buy-panel {
  position: relative;
  padding: 24px 28px 26px;
}

.buy-eyebrow {
  margin: 8px 0 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.buy-panel h1 {
  margin: 12px 0 0;
  font-size: clamp(26px, 2.15vw, 31px);
  font-weight: 950;
  line-height: 1.16;
}

.buy-panel small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.detail-price {
  display: block;
  margin-top: 14px;
  font-size: 26px;
  font-weight: 950;
}

.stock-line {
  display: block;
  margin-top: 6px;
  color: var(--deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.detail-summary-table {
  display: grid;
  overflow: hidden;
  margin: 14px 0 0;
  border: 1px solid #d4eadf;
  border-radius: 9px;
  background: #edf8f2;
}

.detail-summary-table div {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 32px;
}

.detail-summary-table div + div {
  border-top: 1px solid #d9eadf;
}

.detail-summary-table dt,
.detail-summary-table dd {
  margin: 0;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.detail-summary-table dt {
  color: var(--deep);
}

.detail-summary-table dd {
  color: rgba(17, 22, 20, 0.72);
}

.option-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.option-group {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.option-group p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.option-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-group button {
  min-width: 62px;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f8f5;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 850;
}

.option-group button.is-active {
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.option-group button[data-option-kind="grade"][data-option-value="B"] {
  border-color: #d8c59e;
  background: #e7d8b8;
  color: var(--deep);
}

.option-group button[data-option-kind="grade"][data-option-value="B"].is-active {
  border-color: var(--deep);
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.selected-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--deep);
  border-radius: 10px;
  padding: 10px 14px;
  background: #FFFFFF;
}

.selected-box span {
  grid-column: 1 / -1;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.action-row {
  gap: 10px;
}

.buy-panel .action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}

.buy-panel .gold-cart-btn,
.buy-panel .secondary-btn {
  min-height: 50px;
}

.action-row .gold-cart-btn,
.action-row .secondary-btn {
  flex: 1 1 0;
}

.action-row .gold-cart-btn {
  min-width: 210px;
}

.action-row.center {
  justify-content: center;
}

.detail-trust {
  margin-top: 12px;
}

.detail-check-strip {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 28px;
}

.detail-check-strip header p,
.detail-info-section header p,
.detail-spec-section header p {
  margin: 0;
  color: var(--deep);
  font-size: 20px;
  font-weight: 950;
}

.detail-check-strip header span,
.detail-info-section header span,
.detail-spec-section header span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.detail-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 78px;
}

.detail-check-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
}

.detail-check-grid article + article {
  border-left: 1px solid var(--line-soft);
}

.detail-check-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #edf8f2;
}

.detail-check-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.detail-check-ball img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.detail-check-grid strong {
  display: block;
  font-size: 13px;
  font-weight: 950;
}

.detail-check-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.42;
}

.detail-info-section,
.detail-spec-section {
  margin-top: 21px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow:
    0 24px 48px -36px rgba(17, 58, 42, 0.34),
    0 10px 24px -20px rgba(17, 22, 20, 0.2);
  padding: 24px 24px 16px;
}

.detail-section-head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 22px;
}

.detail-info-section .detail-section-head p,
.detail-spec-section .detail-section-head p {
  flex: 0 0 auto;
  color: var(--section-title-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.detail-info-section .detail-section-head span,
.detail-spec-section .detail-section-head span {
  margin-top: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

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

.detail-info-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  min-height: 110px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fff;
  padding: 20px 22px;
  box-shadow: 0 12px 30px -28px rgba(17, 58, 42, 0.28);
}

.detail-info-media {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #FFFFFF 0%, #FFFFFF 36%, #F4F4F2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px -18px rgba(0, 0, 0, 0.14);
}

.detail-info-ball {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.detail-info-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.detail-info-grid strong,
.detail-feature-card strong,
.detail-spec-table-card strong {
  display: block;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.detail-info-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.detail-mini-cta {
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(10, 59, 44, 0.98) 0%, rgba(13, 45, 33, 1) 100%);
  padding: 12px 14px 12px 22px;
  color: #fff;
  box-shadow: 0 16px 30px -24px rgba(6, 20, 14, 0.46);
}

.detail-mini-cta strong {
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.detail-mini-cta span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.detail-mini-cta-btn {
  min-height: 34px;
  border: 1px solid rgba(231, 216, 184, 0.7);
  border-radius: 11px;
  background: var(--gradient-gold);
  padding: 0 22px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 20px -18px rgba(231, 216, 184, 0.8);
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.detail-feature-card,
.detail-spec-table-card {
  min-height: 126px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #fff;
  padding: 20px 22px;
  box-shadow: 0 12px 30px -28px rgba(17, 58, 42, 0.24);
}

.detail-feature-card {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 20px;
  align-items: center;
}

.detail-feature-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.detail-feature-card img {
  width: 88px;
  height: auto;
  justify-self: center;
  object-fit: contain;
}

.detail-spec-table-card dl {
  display: grid;
  margin: 14px 0 0;
  border-top: 1px solid var(--line-soft);
}

.detail-spec-table-card div {
  display: grid;
  grid-template-columns: 118px 1fr;
  border-bottom: 1px solid var(--line-soft);
}

.detail-spec-table-card dt,
.detail-spec-table-card dd {
  margin: 0;
  padding: 13px 0;
  color: rgba(17, 22, 20, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.detail-spec-table-card dt {
  color: var(--muted);
}

.detail-policy-note {
  margin-top: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(234, 247, 240, 0.55);
  padding: 18px 20px;
}

.detail-policy-note strong {
  display: block;
  font-size: 15px;
  font-weight: 950;
}

.detail-policy-note ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(17, 22, 20, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.info-panels,
.store-grid,
.customer-grid,
.grade-grid,
.stat-grid,
.admin-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.info-panels article,
.store-grid article,
.customer-grid article,
.grade-grid article,
.admin-cards article {
  padding: 24px;
}

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

.cart-list,
.order-list {
  display: grid;
  gap: 14px;
}

.cart-item,
.order-row {
  display: grid;
  grid-template-columns: 118px 1fr auto auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #FFFFFF;
  padding: 16px;
  box-shadow: var(--shadow);
}

.cart-item-media {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 12px;
  background:
    var(--glass-lite-overlay-mint),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(234, 247, 240, 0.94) 100%);
  backdrop-filter: blur(6px) saturate(1.03);
  -webkit-backdrop-filter: blur(6px) saturate(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 20px rgba(255, 255, 255, 0.05);
}

.cart-item-media img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.cart-item h2,
.order-row h2 {
  margin: 5px 0;
  font-size: 18px;
}

.cart-item p,
.order-row p {
  color: var(--muted);
  font-size: 13px;
}

.qty-control {
  gap: 10px;
}

.qty-control button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #FFFFFF;
}

.summary-panel {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.cart-layout > .summary-panel {
  position: sticky;
  top: 96px;
  align-self: start;
}

.summary-panel h2 {
  margin: 0 0 6px;
}

.summary-panel > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.summary-panel .grand {
  color: var(--ink);
  font-size: 18px;
}

.summary-panel .primary-btn {
  width: 100%;
}

.checkout-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.checkout-form label,
.profile-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form select,
.profile-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 0 14px;
}

.checkout-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}

.checkout-policy-block {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px 18px;
}

.checkout-policy-block strong {
  display: block;
  font-size: 15px;
  font-weight: 950;
}

.checkout-policy-block p,
.checkout-policy-block small {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.checkout-page-title {
  margin: 38px 0 20px;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.checkout-page-title h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
}

.checkout-page-title span {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(17, 22, 20, 0.66);
}

.checkout-layout--payment {
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 18px;
}

.checkout-main-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(231, 216, 184, 0.76);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 243, 0.96) 100%);
  box-shadow:
    0 16px 42px -34px rgba(17, 58, 42, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.checkout-section {
  display: grid;
  gap: 12px;
}

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

.checkout-section-label,
.checkout-field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.checkout-section-label::before,
.checkout-field-label i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #D5A74A;
  content: "";
  flex: 0 0 auto;
}

.checkout-field-label i {
  display: block;
}

.checkout-field {
  display: grid;
  gap: 8px;
}

.checkout-field input,
.checkout-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(220, 229, 221, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.checkout-field input::placeholder,
.checkout-field select {
  color: rgba(17, 22, 20, 0.46);
}

.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: rgba(17, 58, 42, 0.7);
  box-shadow:
    0 0 0 3px rgba(234, 247, 240, 0.82),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.checkout-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.checkout-method {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  border: 1px solid rgba(220, 229, 221, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: rgba(17, 22, 20, 0.74);
  cursor: pointer;
  box-shadow: 0 10px 24px -26px rgba(17, 58, 42, 0.2);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.checkout-method input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.checkout-method:has(input:checked) {
  border-color: rgba(17, 58, 42, 0.92);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 247, 240, 0.88) 100%);
  color: var(--deep);
  box-shadow:
    inset 0 0 0 1px rgba(17, 58, 42, 0.12),
    0 12px 26px -24px rgba(17, 58, 42, 0.28);
}

.checkout-method:has(input:focus-visible) {
  outline: 2px solid rgba(17, 58, 42, 0.25);
  outline-offset: 2px;
}

.checkout-method-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.checkout-method-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
}

.checkout-method-label {
  font-size: 12px;
  font-weight: 800;
}

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

.checkout-policy-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(220, 229, 221, 0.96);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 239, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.checkout-policy-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 247, 240, 0.92) 100%);
  color: var(--deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 10px 20px -20px rgba(17, 58, 42, 0.24);
}

.checkout-policy-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.checkout-policy-card strong {
  display: block;
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
}

.checkout-policy-card p,
.checkout-policy-card small {
  display: block;
  margin: 5px 0 0;
  color: rgba(17, 22, 20, 0.72);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.checkout-summary-card {
  position: sticky;
  top: 96px;
  gap: 14px;
  padding: 0 18px 18px;
  border: 1px solid rgba(231, 216, 184, 0.78);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 247, 241, 0.95) 100%);
  overflow: hidden;
  box-shadow:
    0 20px 40px -36px rgba(17, 58, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.checkout-summary-cap {
  height: 14px;
  margin: 0 -18px 4px;
  border-radius: 18px 18px 0 0;
  background: var(--gradient-deep);
}

.checkout-summary-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
}

.checkout-summary-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.checkout-summary-seal {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff9eb 0%, #efd28d 100%);
  color: #b6872a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.checkout-summary-seal svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

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

.checkout-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: rgba(17, 22, 20, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.checkout-summary-row strong {
  color: rgba(17, 22, 20, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.checkout-summary-row.empty strong {
  color: rgba(17, 22, 20, 0.5);
}

.checkout-summary-card hr {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: rgba(17, 58, 42, 0.12);
}

.checkout-summary-total {
  align-items: end;
  color: var(--deep);
}

.checkout-summary-total span {
  color: rgba(17, 22, 20, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.checkout-summary-total strong {
  color: var(--deep);
  font-size: 19px;
  font-weight: 900;
}

.checkout-submit-btn {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
  padding: 0 18px;
  border-radius: 10px;
}

.checkout-submit-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.checkout-submit-copy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
}

.checkout-submit-copy b {
  font-size: 16px;
  font-weight: 900;
}

.checkout-summary-note {
  display: block;
  color: rgba(17, 22, 20, 0.6);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.legal-info-grid article strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 950;
}

.legal-info-grid article p,
.legal-info-grid article small {
  color: var(--muted);
  line-height: 1.7;
}

.legal-documents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.legal-documents article {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #FFFFFF;
  padding: 22px;
  box-shadow: var(--shadow);
}

.legal-documents h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.legal-documents img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.complete-page {
  max-width: 760px;
  margin: 40px auto;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: #FFFFFF;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.complete-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.complete-page h1 {
  margin: 0;
  font-size: 34px;
}

.complete-page dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  text-align: left;
}

.complete-page dl div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}

.complete-page dt,
.complete-page dd {
  margin: 0;
}

.complete-page dt {
  color: var(--muted);
  font-size: 12px;
}

.mypage-layout {
  grid-template-columns: 250px 1fr;
}

.mypage-side,
.admin-side {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.mypage-side h2,
.admin-side strong {
  margin: 0 0 10px;
  color: var(--deep);
}

.mypage-side button,
.admin-side button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0 12px;
  text-align: left;
  font-weight: 800;
}

.mypage-side button.is-active,
.admin-side button.is-active {
  background: var(--mint);
  color: var(--deep);
}

.mypage-content,
.admin-content {
  min-height: 640px;
  padding: 24px;
}

.order-row {
  grid-template-columns: minmax(180px, 1fr) 1.6fr auto;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  min-height: 30px;
  border-radius: 999px;
  background: var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 30px;
  text-align: center;
}

.delivery-steps .done,
.delivery-steps .active {
  background: var(--deep);
  color: #FFFFFF;
}

.coupon-card {
  display: grid;
  gap: 10px;
  max-width: 520px;
  padding: 28px;
}

.coupon-card svg {
  width: 42px;
  height: 42px;
  color: var(--deep);
}

.coupon-card b {
  color: var(--deep);
  font-size: 38px;
}

.profile-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.store-hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.store-hero img {
  width: 100%;
  height: auto;
}

.store-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 239, 0.96) 58%, rgba(234, 247, 240, 0.92) 100%);
  padding: 22px;
}

.store-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(6, 20, 14, 0.96) 0%, rgba(17, 58, 42, 0.94) 62%, rgba(18, 91, 61, 0.92) 100%);
  color: #FFFFFF;
  padding: 42px;
}

.store-eyebrow,
.store-prep-panel > div > p {
  margin: 0 0 14px;
  color: #D9C48C;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-showcase-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}

.store-showcase-copy > p:not(.store-eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.58;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-hero-actions .primary-btn,
.store-hero-actions .secondary-btn {
  min-height: 58px;
  margin-top: 0;
  font-size: 18px;
}

.store-hero-actions .secondary-btn {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.store-quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 34px 0 0;
}

.store-quick-facts div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
}

.store-quick-facts dt,
.store-quick-facts dd {
  margin: 0;
}

.store-quick-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 850;
}

.store-quick-facts dd {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.store-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 640px;
}

.store-photo-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 20px;
  background: #F1F5EF;
}

.store-photo-tile-lead {
  grid-row: span 2;
}

.store-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.store-photo-tile-lead img {
  object-position: center 45%;
}

.store-photo-tile-4 img {
  object-position: center 70%;
  transform: scale(1.16);
}

.store-photo-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 46px 20px 18px;
  background: linear-gradient(180deg, rgba(6, 20, 14, 0) 0%, rgba(6, 20, 14, 0.82) 82%);
  color: #FFFFFF;
}

.store-photo-tile figcaption span {
  color: #D9C48C;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.store-photo-tile figcaption strong {
  font-size: 19px;
  font-weight: 950;
  line-height: 1.22;
}

.store-photo-tile figcaption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.store-visit-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.store-visit-band article,
.store-prep-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.store-visit-band article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.store-visit-band .store-visit-lead {
  background:
    linear-gradient(140deg, rgba(234, 247, 240, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.store-visit-lead span {
  color: var(--deep);
  font-size: 14px;
  font-weight: 950;
}

.store-visit-band h2,
.store-prep-panel h2 {
  margin: 0;
  color: var(--deep);
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0;
}

.store-visit-band h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.store-visit-band b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--deep);
  color: #FFFFFF;
  font-size: 18px;
}

.store-visit-band p,
.store-prep-panel li span {
  margin: 0;
  color: rgba(17, 22, 20, 0.68);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.store-grid-compact article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 198px;
}

.store-grid-compact h2,
.store-grid-compact p,
.store-grid-compact small,
.store-grid-compact a {
  margin: 0;
}

.store-grid-compact h2 {
  color: var(--deep);
  font-size: 24px;
  line-height: 1.2;
}

.store-grid-compact p {
  color: var(--ink);
  font-size: 19px;
  font-weight: 780;
  line-height: 1.45;
}

.store-grid-compact small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.store-grid-compact a {
  color: var(--deep);
  font-size: 16px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.store-prep-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 247, 240, 0.92) 100%);
  padding: 28px;
}

.store-prep-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-prep-panel li {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 170px;
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 16px;
  background: #FFFFFF;
  padding: 22px;
}

.store-prep-panel li strong {
  color: var(--deep);
  font-size: 22px;
  font-weight: 950;
}

.store-dark-cta {
  display: block;
}

.dark-cta {
  margin-top: 28px;
  border-radius: 14px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  padding: 42px;
}

.dark-cta h1 {
  max-width: 880px;
  margin: 8px 0 20px;
  font-size: clamp(28px, 4vw, 42px);
}

.light-btn,
.outline-light-btn {
  margin-right: 10px;
}

.light-btn {
  border: 0;
  background: #FFFFFF;
  color: var(--deep);
}

.outline-light-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #FFFFFF;
}

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

.grade-grid article b {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  font-size: 30px;
}

.process-card {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
}

.process-card span {
  display: grid;
  gap: 8px;
  text-align: center;
  font-weight: 850;
}

.process-card b {
  color: var(--deep);
}

.story-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
}

.story-panel img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.admin-layout {
  width: min(1500px, calc(100% - 48px));
  grid-template-columns: 250px 1fr;
  margin: 0 auto;
  padding: 24px 0;
}

.admin-layout + .site-footer {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

th,
td {
  border-bottom: 1px solid var(--line-soft);
  padding: 14px;
  text-align: left;
}

th {
  background: var(--mint);
  color: var(--deep);
}

.empty-card {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.empty-shop-btn {
  min-width: 150px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.cart-move-prompt {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 24px;
}

.cart-move-prompt.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 22, 20, 0.42);
}

.cart-move-card {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #FFFFFF;
  padding: 26px;
  box-shadow: 0 28px 60px -30px rgba(17, 58, 42, 0.45);
}

.cart-move-card p {
  margin: 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.cart-move-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.cart-move-card > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal-card {
  position: relative;
  width: min(860px, 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #FFFFFF;
  padding: 18px;
  box-shadow: 0 28px 60px -30px rgba(17, 58, 42, 0.45);
}

.modal-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.modal-card header button {
  border: 0;
  background: transparent;
}

.modal-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 10px;
  background: #FFFFFF;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  transform: translateY(20px);
  border-radius: 999px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  padding: 14px 20px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-open {
  transform: translateY(0);
  opacity: 1;
}

main.admin-main {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 28px 0 72px;
  font-family: var(--font-pretendard);
}

.admin-auth-main {
  padding: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(234, 247, 240, 0.68) 0%, rgba(255, 255, 255, 0.92) 56%, rgba(247, 246, 239, 0.72) 100%),
    var(--paper);
}

.admin-auth-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
}

.admin-auth-card {
  display: grid;
  gap: 16px;
  width: min(430px, 100%);
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  padding: 28px;
  box-shadow: 0 28px 70px -42px rgba(17, 58, 42, 0.45);
}

.admin-auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  text-decoration: none;
}

.admin-auth-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.admin-auth-logo span {
  display: grid;
  gap: 2px;
}

.admin-auth-logo strong {
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.admin-auth-logo em {
  color: #b28224;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.admin-auth-copy {
  display: grid;
  gap: 6px;
  margin: 8px 0 4px;
}

.admin-auth-copy p,
.admin-auth-copy h1,
.admin-auth-copy span {
  margin: 0;
}

.admin-auth-copy p {
  color: #b28224;
  font-size: 12px;
  font-weight: 950;
}

.admin-auth-copy h1 {
  color: var(--deep);
  font-size: 28px;
  line-height: 1.22;
}

.admin-auth-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.admin-auth-card label,
.admin-modal-form label {
  display: grid;
  gap: 8px;
  color: rgba(17, 22, 20, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.admin-auth-card input,
.admin-modal-form input,
.admin-modal-form select,
.admin-modal-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(17, 58, 42, 0.16);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 0 12px;
  color: var(--ink);
  font-family: var(--font-pretendard);
  font-size: 13px;
  font-weight: 650;
}

.admin-modal-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.admin-customer-required-form {
  gap: 10px;
}

.admin-required-field {
  display: grid;
  gap: 7px;
}

.admin-required-field > label,
.admin-required-label {
  color: rgba(17, 22, 20, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.admin-required-field.is-required > label::before,
.admin-required-field.is-required .admin-required-label::before {
  content: "*";
  margin-right: 2px;
  color: #D35A37;
}

.admin-required-radio-row {
  display: flex;
  align-items: center;
  min-height: 42px;
  gap: 20px;
  border: 1px solid rgba(17, 58, 42, 0.16);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 0 12px;
}

.admin-required-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.admin-modal-form .admin-required-radio-row input[type="radio"] {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.admin-auth-error {
  margin: 0;
  border-radius: 8px;
  background: rgba(205, 72, 47, 0.09);
  padding: 10px 12px;
  color: #b53c25;
  font-size: 12px;
  font-weight: 850;
}

.admin-auth-submit svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.admin-shell {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  min-height: 100vh;
  background: #F8FAF8;
  color: var(--ink);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  height: 100vh;
  border-right: 1px solid rgba(17, 58, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 22px 14px 34px;
}

.admin-sidebar-brand {
  display: grid;
  gap: 2px;
  padding: 0 8px 10px;
  color: var(--deep);
  text-decoration: none;
}

.admin-sidebar-brand strong {
  font-size: 15px;
  font-weight: 950;
}

.admin-sidebar-brand span {
  color: #b28224;
  font-size: 12px;
  font-weight: 950;
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 18px;
}

.admin-nav-group {
  display: grid;
  gap: 6px;
}

.admin-nav-group p {
  margin: 0;
  padding: 0 10px;
  color: rgba(17, 22, 20, 0.52);
  font-size: 11px;
  font-weight: 850;
}

.admin-nav-group button,
.admin-shop-link {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  padding: 0 10px;
  color: rgba(17, 22, 20, 0.74);
  font-family: var(--font-pretendard);
  font-size: 12px;
  font-weight: 850;
  text-align: left;
}

.admin-nav-group button.is-active {
  background: linear-gradient(100deg, #073f2d 0%, #063423 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 22px -16px rgba(17, 58, 42, 0.65);
}

.admin-nav-group button.is-active *,
.admin-nav-group button.is-active span,
.admin-nav-group button.is-active .admin-svg-icon {
  color: #FFFFFF;
}

.admin-nav-group button.is-active svg {
  stroke: #FFFFFF;
}

.admin-support-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 10px;
  background: #F8FBF8;
  padding: 13px;
}

.admin-support-card strong,
.admin-support-card a,
.admin-support-card span {
  margin: 0;
}

.admin-support-card strong {
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
}

.admin-support-card a {
  color: var(--deep);
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
}

.admin-support-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.admin-shop-link {
  color: var(--muted);
}

.admin-workspace {
  min-width: 0;
  padding: 18px 22px 44px;
}

.admin-topbar {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px) auto auto auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-bottom: 18px;
}

.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-breadcrumb b {
  color: var(--ink);
}

.admin-search {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  height: 42px;
  border: 1px solid rgba(17, 58, 42, 0.14);
  border-radius: 8px;
  background: #FFFFFF;
  overflow: hidden;
}

.admin-search input {
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 14px;
  color: var(--ink);
  font-family: var(--font-pretendard);
  font-size: 12px;
  font-weight: 700;
  outline: 0;
}

.admin-search button,
.admin-icon-button,
.admin-profile-button,
.admin-logout {
  border: 1px solid rgba(17, 58, 42, 0.14);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--deep);
  font-family: var(--font-pretendard);
}

.admin-search button {
  display: grid;
  place-items: center;
  height: 100%;
  border-width: 0 0 0 1px;
  border-radius: 0;
}

.admin-search-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.admin-icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.admin-icon-button b {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #cf3e2c;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 17px;
}

.admin-profile-button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  text-align: left;
}

.admin-profile-button > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--deep);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 950;
}

.admin-profile-button em {
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.15;
}

.admin-profile-button small {
  color: var(--muted);
  font-size: 10px;
}

.admin-logout {
  min-height: 42px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
}

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

.admin-page-head p,
.admin-page-head h1,
.admin-page-head span {
  margin: 0;
}

.admin-page-head p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-page-head h1 {
  margin-top: 6px;
  color: var(--deep);
  font-size: 26px;
  line-height: 1.18;
}

.admin-page-head span {
  display: block;
  margin-top: 8px;
  color: rgba(17, 22, 20, 0.64);
  font-size: 13px;
  font-weight: 650;
}

.admin-head-actions,
.admin-panel header > div + .admin-secondary-action {
  display: flex;
  gap: 8px;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.admin-stat-card,
.admin-panel {
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px -30px rgba(17, 58, 42, 0.42);
}

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 14px;
}

.admin-stat-card p,
.admin-stat-card strong,
.admin-stat-card small {
  display: block;
  margin: 0;
}

.admin-stat-card p {
  color: rgba(17, 22, 20, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.admin-stat-card strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.admin-stat-card small {
  margin-top: 4px;
  color: #15975d;
  font-size: 11px;
  font-weight: 850;
}

.admin-stat-card.is-warning small {
  color: #d24c31;
}

.admin-stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
}

.admin-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
}

.admin-panel {
  min-width: 0;
  padding: 16px;
}

.admin-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-panel h2,
.admin-panel span,
.admin-panel p {
  margin: 0;
}

.admin-panel h2 {
  color: var(--deep);
  font-size: 15px;
  font-weight: 950;
}

.admin-panel header span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.admin-primary-action,
.admin-secondary-action,
.admin-table-action,
.admin-insight header button,
.admin-quick-list header button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  border-radius: 7px;
  padding: 0 12px;
  font-family: var(--font-pretendard);
  font-size: 12px;
  font-weight: 900;
}

.admin-primary-action {
  border: 0;
  background: var(--gradient-deep);
  color: #FFFFFF;
}

.admin-primary-action *,
.admin-primary-action span,
.admin-primary-action .admin-svg-icon {
  color: #FFFFFF;
}

.admin-primary-action svg {
  stroke: #FFFFFF;
}

.admin-primary-action[data-admin-modal="downloadExport"],
.admin-primary-action[data-admin-modal="downloadExport"] *,
.admin-primary-action[data-admin-modal="saveSettings"],
.admin-primary-action[data-admin-modal="saveSettings"] * {
  color: #FFFFFF;
}

.admin-primary-action[data-admin-modal="downloadExport"] svg,
.admin-primary-action[data-admin-modal="saveSettings"] svg {
  stroke: #FFFFFF;
}

.admin-secondary-action,
.admin-table-action,
.admin-insight header button,
.admin-quick-list header button {
  border: 1px solid rgba(17, 58, 42, 0.14);
  background: #FFFFFF;
  color: var(--deep);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-data-table {
  min-width: 760px;
  border-collapse: collapse;
}

.admin-data-table th,
.admin-data-table td {
  border-bottom: 1px solid rgba(17, 58, 42, 0.08);
  padding: 10px 9px;
  color: rgba(17, 22, 20, 0.74);
  font-size: 12px;
  vertical-align: middle;
}

.admin-data-table th {
  background: #F7FAF7;
  color: rgba(17, 58, 42, 0.82);
  font-weight: 950;
}

.admin-row-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
}

.admin-row-title strong,
.admin-row-title small {
  display: block;
  margin: 0;
}

.admin-row-title strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.admin-row-title small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.admin-product-thumb,
.admin-row-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--mint);
  overflow: hidden;
}

.admin-product-thumb img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.admin-row-mark {
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  background: #EDF8F2;
  padding: 0 9px;
  color: #147345;
  font-size: 11px;
  font-weight: 950;
}

.admin-status.warning {
  background: #FFF1E9;
  color: #C74E28;
}

.admin-table-value {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.admin-data-table td > small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.admin-panel-side {
  display: grid;
  align-content: start;
  gap: 14px;
}

.admin-insight,
.admin-quick-list {
  display: grid;
  gap: 12px;
}

.admin-chart-area {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  align-items: center;
  --admin-chart-complete: #06442f;
  --admin-chart-complete-dark: #0a3b2b;
  --admin-chart-pending: #2f6fa3;
  --admin-chart-pending-dark: #1f527c;
  --admin-chart-warning: #c9413b;
  --admin-chart-warning-dark: #9f2c28;
  --admin-chart-empty: #ecefed;
}

.admin-donut {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #FFFFFF 0 46%, transparent 47%),
    conic-gradient(
      var(--admin-chart-complete) 0 var(--a),
      var(--admin-chart-pending) var(--a) calc(var(--a) + var(--b)),
      var(--admin-chart-warning) calc(var(--a) + var(--b)) calc(var(--a) + var(--b) + var(--c)),
      var(--admin-chart-empty) 0
    );
}

.admin-donut span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--deep);
  font-size: 13px;
  font-weight: 950;
}

.admin-bars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 128px;
}

.admin-bars span {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 7px;
  height: 128px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.admin-bars i {
  align-self: end;
  justify-self: center;
  width: 34px;
  height: max(18px, var(--value));
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #0b5a3c 0%, var(--admin-chart-complete-dark) 100%);
}

.admin-bars span:nth-child(2) i {
  background: linear-gradient(180deg, var(--admin-chart-pending) 0%, var(--admin-chart-pending-dark) 100%);
}

.admin-bars span:nth-child(3) i {
  background: linear-gradient(180deg, var(--admin-chart-warning) 0%, var(--admin-chart-warning-dark) 100%);
}

.admin-quick-list button:not(.admin-quick-list header button) {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 9px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 9px 10px;
  text-align: left;
}

.admin-quick-list button > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
}

.admin-quick-list strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.admin-quick-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.admin-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: var(--muted);
  text-align: center;
}

.admin-empty strong {
  color: var(--deep);
  font-size: 16px;
}

.admin-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 22, 20, 0.42);
}

.admin-modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 12px;
  background: #FFFFFF;
  padding: 18px;
  box-shadow: 0 30px 70px -36px rgba(17, 58, 42, 0.56);
}

.admin-modal-card header,
.admin-modal-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.admin-modal-card header p,
.admin-modal-card header h2 {
  margin: 0;
}

.admin-modal-card header p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-modal-card header h2 {
  margin-top: 5px;
  color: var(--deep);
  font-size: 20px;
}

.admin-modal-card header button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--deep);
}

.admin-modal-card header svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.admin-modal-form,
.admin-modal-checklist,
.admin-inquiry-reply-form,
.admin-search-results,
.admin-modal-detail {
  display: grid;
  gap: 12px;
}

.admin-inquiry-source {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(247, 250, 247, 0.98) 0%, rgba(234, 247, 240, 0.72) 100%);
  padding: 15px;
}

.admin-inquiry-source span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.admin-inquiry-source strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.admin-inquiry-source b {
  align-self: start;
  border-radius: 999px;
  background: #FFF1E9;
  padding: 7px 10px;
  color: #C74E28;
  font-size: 11px;
  font-weight: 800;
}

.admin-inquiry-source b.is-answered {
  background: var(--mint);
  color: var(--deep);
}

.admin-inquiry-source p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(17, 22, 20, 0.72);
  font-size: 12px;
  line-height: 1.65;
}

.admin-inquiry-reply-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
}

.admin-inquiry-reply-form textarea {
  min-height: 150px;
  border: 1px solid rgba(17, 58, 42, 0.16);
  border-radius: 10px;
  background: #FFFFFF;
  padding: 13px 14px;
  color: var(--ink);
  font-family: var(--font-pretendard);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  resize: vertical;
}

.admin-reply-helper {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.admin-modal-form input[readonly] {
  background: #f7faf7;
  color: rgba(17, 22, 20, 0.62);
}

.admin-modal-helper {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.admin-banner-order-field {
  display: grid;
  gap: 4px;
}

.admin-modal-checklist label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 8px;
  background: #F9FBF9;
  padding: 0 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.admin-modal-detail {
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.admin-modal-detail div {
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 8px;
  padding: 11px;
}

.admin-modal-detail dt,
.admin-modal-detail dd {
  margin: 0;
}

.admin-modal-detail dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.admin-modal-detail dd {
  margin-top: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.admin-search-results button {
  display: grid;
  gap: 4px;
  min-height: 50px;
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 10px 12px;
  text-align: left;
}

.admin-search-results strong {
  color: var(--ink);
  font-size: 13px;
}

.admin-search-results span,
.admin-search-results p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.admin-svg-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.admin-svg-icon svg,
.admin-svg-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.admin-svg-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-nav-group button.is-active .admin-svg-icon svg {
  stroke: #FFFFFF;
}

.admin-shell .admin-primary-action,
.admin-shell .admin-primary-action *,
.admin-shell .admin-nav-group button.is-active,
.admin-shell .admin-nav-group button.is-active *,
.admin-shell .admin-auth-submit,
.admin-shell .admin-auth-submit * {
  color: #FFFFFF !important;
}

.admin-shell .admin-primary-action svg,
.admin-shell .admin-nav-group button.is-active svg,
.admin-shell .admin-auth-submit svg {
  stroke: #FFFFFF !important;
}

.admin-shell .admin-primary-action img,
.admin-shell .admin-nav-group button.is-active img,
.admin-shell .admin-auth-submit img {
  filter: brightness(0) invert(1);
}

.admin-shell .admin-sidebar .admin-nav-group button.is-active,
.admin-shell .admin-sidebar .admin-nav-group button.is-active span,
.admin-shell .admin-sidebar .admin-nav-group button.is-active .admin-svg-icon,
.admin-shell .admin-sidebar .admin-nav-group button.is-active .admin-svg-icon *,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg * {
  color: #FFFFFF !important;
}

.admin-shell .admin-sidebar .admin-nav-group button.is-active svg,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg path,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg circle,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg rect,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg line,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg polyline,
.admin-shell .admin-sidebar .admin-nav-group button.is-active svg polygon {
  stroke: #FFFFFF !important;
}

.admin-shell .admin-sidebar .admin-nav-group button.is-active img {
  filter: brightness(0) invert(1) !important;
}

/* Admin medium text: lower one step while keeping titles and key figures intact. */
.admin-nav-group p,
.admin-page-head p,
.admin-stat-card p,
.admin-stat-card small,
.admin-panel header span,
.admin-data-table th,
.admin-row-title small,
.admin-data-table td > small,
.admin-bars span,
.admin-quick-list small,
.admin-modal-card header p,
.admin-modal-detail dt,
.admin-search-results span,
.admin-search-results p {
  font-weight: 600;
}

.admin-nav-group button,
.admin-shop-link,
.admin-breadcrumb,
.admin-search input,
.admin-profile-button em,
.admin-logout,
.admin-secondary-action,
.admin-table-action,
.admin-insight header button,
.admin-quick-list header button {
  font-weight: 700;
}

.admin-support-card span,
.admin-panel p,
.admin-panel span,
.admin-data-table td,
.admin-quick-list button:not(.admin-quick-list header button),
.admin-search-results button {
  font-weight: 500;
}

.admin-row-title strong,
.admin-status,
.admin-quick-list strong,
.admin-modal-detail dd {
  font-weight: 800;
}

@media (max-width: 1160px) {
  .admin-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .admin-topbar {
    grid-template-columns: 1fr minmax(240px, 1fr) auto auto;
  }

  .admin-logout {
    display: none;
  }

  .admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-panel-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    grid-template-rows: none;
    padding: 16px 16px 28px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-nav-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-nav-group p {
    grid-column: 1 / -1;
  }

  .admin-support-card {
    display: none;
  }

  .admin-workspace {
    padding: 16px 16px 36px;
  }

  .admin-topbar {
    grid-template-columns: 1fr auto auto;
  }

  .admin-breadcrumb,
  .admin-profile-button {
    display: none;
  }

  .admin-search {
    grid-column: 1 / -1;
  }

  .admin-page-head {
    display: grid;
  }

  .admin-stat-grid,
  .admin-panel-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .admin-auth-shell {
    padding: 18px;
  }

  .admin-auth-card {
    padding: 22px;
  }

  .admin-auth-copy h1 {
    font-size: 23px;
  }

  .admin-nav-group {
    grid-template-columns: 1fr;
  }

  .admin-stat-card {
    min-height: 78px;
  }

  .admin-stat-card strong {
    font-size: 19px;
  }

  .admin-chart-area,
  .admin-modal-detail {
    grid-template-columns: 1fr;
  }

  .admin-donut {
    justify-self: center;
  }

  .admin-modal-card footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.hero-carousel,
.panel-card:not(.bestseller-section),
.product-card,
.detail-gallery,
.buy-panel,
.detail-check-strip,
.detail-info-section,
.detail-spec-section,
.summary-panel,
.checkout-form,
.mypage-side,
.mypage-content,
.admin-side,
.admin-content,
.empty-card,
.cart-item,
.order-row,
.info-panels article,
.store-grid article,
.customer-grid article,
.story-panel,
.coupon-card,
.process-card,
.stat-grid article,
.store-notice,
.store-product,
.bundle-card,
.reason-grid article,
.process-strip article,
.detail-info-grid article,
.detail-feature-card,
.detail-spec-table-card,
.detail-policy-note {
  box-shadow: var(--glass-shadow);
}

.bestseller-section,
.bestseller-section .best-card,
.bestseller-section .best-review,
.product-detail-frame-shot,
.home-bottom-cta,
.dark-cta,
.detail-mini-cta,
.site-footer {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 18px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: grid;
  }

  .header-actions .icon-btn {
    display: none;
  }

  main,
  .site-footer {
    width: min(760px, calc(100% - 32px));
  }

  .hero-slide {
    aspect-ratio: 1320 / 540;
  }

  .hero-slide .hero-grade-mark--s {
    top: 7%;
    right: 10%;
    width: clamp(92px, 12vw, 122px);
  }

  .hero-slide .hero-grade-mark--a {
    top: 36%;
    right: 31%;
    width: clamp(72px, 9vw, 94px);
  }

  .hero-slide .hero-grade-mark--b {
    right: 8%;
    bottom: 13%;
    width: clamp(66px, 8.4vw, 86px);
  }

  .home-grade-overview {
    scroll-margin-top: 96px;
  }

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

  .hero-slide--quality img {
    object-position: center center;
  }

  .hero-slide--quality::after {
    content: none;
  }

  .hero-copy--buttons-only {
    right: auto;
    bottom: 26px;
    left: 18px;
    width: calc(100% - 36px);
    border: 0;
    background: transparent;
    padding: 0;
  }

  .hero-copy--buttons-only .hero-cta-row {
    gap: 10px;
  }

  .hero-copy--buttons-only .hero-cta-row > button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .trust-strip,
  .product-grid,
  .best-grid,
  .reason-grid,
  .service-grid,
  .store-product-list,
  .bundle-grid,
  .detail-check-grid,
  .detail-info-grid,
  .detail-benefits,
  .info-panels,
  .store-grid,
  .customer-grid,
  .grade-grid,
  .grade-guide,
  .composition-grid,
  .detail-card-grid,
  .stat-grid,
  .admin-cards {
    grid-template-columns: 1fr 1fr;
  }

  .home-filter,
  .store-select-grid,
  .home-bottom-cta,
  .detail-check-strip,
  .detail-spec-grid,
  .detail-story-hero {
    grid-template-columns: 1fr;
  }

  .home-filter-actions,
  .store-notice > div,
  .detail-mini-cta,
  .detail-bottom-cta {
    align-items: stretch;
  }

  .process-strip,
  .process-strip.dense,
  .home-process-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-grade-system-grid {
    grid-template-columns: 1fr;
  }

  .home-process-system-grid article:nth-child(odd)::before {
    display: none;
  }

  .detail-layout,
  .cart-layout,
  .checkout-layout,
  .mypage-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .cart-item,
  .order-row {
    grid-template-columns: 92px 1fr;
  }

  .cart-layout > .summary-panel {
    position: static;
  }

  .qty-control,
  .cart-item .icon-btn,
  .order-row .secondary-btn {
    grid-column: 2;
    width: fit-content;
  }

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

@media (max-width: 720px) {
  .product-menu {
    right: 16px;
    left: auto;
    width: min(260px, calc(100vw - 32px));
    transform: none;
  }

  .desktop-product-menu {
    display: none !important;
  }

  .mobile-product-menu.is-open {
    display: grid;
  }

  .detail-layout,
  .cart-layout,
  .checkout-layout,
  .mypage-layout,
  .admin-layout {
    gap: 16px;
  }

  .home-section-head,
  .detail-bottom-cta,
  .home-filter-actions {
    display: grid;
  }

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

  .footer-contact {
    justify-items: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-check-grid article:nth-child(3) {
    border-left: 0;
  }

  .process-strip article + article::before {
    display: none;
  }

  .mypage-content,
  .admin-content {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .hero-slide {
    aspect-ratio: 390 / 520;
    min-height: 520px;
  }

  .hero-copy {
    right: 22px;
    bottom: 46px;
    left: 22px;
    top: auto;
    width: auto;
    transform: none;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    padding: 22px;
  }

  .hero-copy--mobile-only {
    display: block;
  }

  .hero-slide.image-only .hero-copy {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px -28px rgba(17, 58, 42, 0.48);
  }

  .hero-slide .hero-grade-mark {
    opacity: 0.66;
    filter: drop-shadow(0 12px 16px rgba(6, 20, 14, 0.12));
  }

  .hero-slide .hero-grade-mark--s {
    top: 16px;
    right: auto;
    bottom: auto;
    left: 34px;
    width: 72px;
    transform: rotate(-7deg);
  }

  .hero-slide .hero-grade-mark--a {
    top: 20px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 58px;
    transform: translateX(-50%) rotate(3deg);
  }

  .hero-slide .hero-grade-mark--b {
    top: 24px;
    right: 34px;
    bottom: auto;
    width: 60px;
    transform: rotate(8deg);
  }

  .home-grade-overview {
    scroll-margin-top: 84px;
  }

  .hero-slide.image-only img {
    transform: scale(1.06);
    transform-origin: center center;
  }

  .hero-slide--store img {
    object-position: 50% 62%;
  }

  .hero-slide--premium img {
    object-position: 50% 58%;
  }
}

@media (max-width: 560px) {
  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .text-btn {
    padding: 0 12px;
    font-size: 13px;
  }

  .cart-move-card > div {
    grid-template-columns: 1fr;
  }

  main {
    width: min(390px, calc(100% - 24px));
    padding-top: 18px;
  }

  .hero-carousel {
    border-radius: 16px;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .primary-btn,
  .secondary-btn,
  .gold-cart-btn,
  .ghost-btn {
    min-height: 44px;
    padding: 0 16px;
  }

  .gold-cart-btn {
    min-height: 54px;
    font-size: 15px;
  }

  .trust-strip,
  .product-grid,
  .best-grid,
  .reason-grid,
  .service-grid,
  .store-product-list,
  .bundle-grid,
  .store-select-grid,
  .detail-check-grid,
  .detail-info-grid,
  .detail-spec-grid,
  .detail-benefits,
  .info-panels,
  .store-grid,
  .customer-grid,
  .grade-grid,
  .grade-guide,
  .composition-grid,
  .detail-card-grid,
  .stat-grid,
  .admin-cards,
  .process-card,
  .process-strip,
  .process-strip.dense,
  .home-process-system-grid,
  .complete-page dl {
    grid-template-columns: 1fr;
  }

  .home-filter,
  .home-section,
  .detail-check-strip,
  .detail-info-section,
  .detail-spec-section {
    padding: 18px;
  }

  .home-system-head h2 {
    font-size: 22px;
  }

  .home-grade-system-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
    min-height: 126px;
    padding: 18px;
  }

  .home-grade-letter {
    width: 70px;
    height: 76px;
    border-radius: 16px;
  }

  .home-grade-letter img {
    width: 78px;
    height: 78px;
  }

  .home-grade-system-card h3 {
    font-size: 17px;
  }

  .home-process-system-grid article + article::before {
    display: none;
  }

.home-bottom-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .store-product {
    grid-template-columns: 76px minmax(0, 1fr) 24px;
    min-height: 104px;
  }

  .store-product > img:not(.chevron-img) {
    width: 72px;
    height: 72px;
  }

  .service-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .home-section-head h1,
  .detail-story-hero h2,
  .detail-bottom-cta h2 {
    font-size: 22px;
  }

  .home-section-head h1 {
    font-size: 13px;
  }

  .grade-guide article {
    grid-template-columns: 78px 1fr;
  }

  .grade-guide b {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .product-card h2 {
    min-height: auto;
  }

  .product-card p {
    min-height: auto;
  }

  .gallery-stage {
    min-height: 280px;
  }

  .gallery-more-btn {
    right: 14px;
    bottom: 14px;
    min-height: 36px;
    padding: 0 14px;
  }

  .gallery-stage.has-video .gallery-more-btn {
    top: auto;
    bottom: 14px;
  }

  .thumb-row {
    gap: 8px;
  }

  .thumb-row button {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .thumb-row img {
    max-width: 32px;
    max-height: 32px;
  }

  .option-group,
  .selected-box,
  .detail-summary-table div,
  .buy-panel .action-row,
  .detail-mini-cta,
  .detail-feature-card,
  .detail-spec-table-card div,
  .story-panel {
    grid-template-columns: 1fr;
  }

  .detail-section-head {
    align-items: flex-start;
    gap: 6px;
  }

  .detail-section-head span {
    font-size: 12px;
  }

  .detail-info-grid article,
  .detail-feature-card,
  .detail-spec-table-card {
    padding: 18px;
  }

  .detail-check-grid article {
    border-left: 0 !important;
    border-top: 1px solid var(--line-soft);
    padding: 14px 0;
  }

  .detail-check-grid article:first-child {
    border-top: 0;
  }

  .action-row {
    display: grid;
  }

  .complete-page {
    padding: 30px 20px;
  }

  .complete-page h1 {
    font-size: 28px;
  }

  .site-footer {
    width: min(390px, calc(100% - 24px));
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-column a,
  .footer-contact p,
  .footer-contact span,
  .footer-brand p {
    font-size: 12px;
  }

  .footer-contact a {
    font-size: 18px;
  }
}

.detail-service-section {
  margin-top: 28px;
}

.detail-related-section,
.detail-final-cta {
  margin-top: 12px;
}

@media (hover: none) {
  .product-hover-zone::after {
    opacity: 1;
  }

  .hover-actions {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}


.customer-service-page {
  display: grid;
  gap: 22px;
}

.customer-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: linear-gradient(135deg, #f4f8f2 0%, #eef4ec 48%, #f8faf5 100%);
  box-shadow: var(--shadow);
  padding: 42px 44px;
}

.customer-service-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-right: 12px;
}

.customer-service-copy p {
  margin: 0;
  color: #cf8d1e;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.customer-service-copy h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.customer-service-copy span {
  max-width: 520px;
  color: rgba(17, 22, 20, 0.74);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.customer-service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.customer-service-summary-item {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 30px 22px;
  text-align: center;
}

.customer-service-summary-item + .customer-service-summary-item {
  border-left: 1px solid var(--line-soft);
}

.customer-service-summary-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.customer-service-summary-item strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.customer-service-summary-item span {
  color: rgba(17, 22, 20, 0.62);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.customer-info-grid {
  margin-top: 0;
}

.customer-info-card {
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.customer-info-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.customer-info-icon-wrap {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #f7f2e4;
  flex: none;
}

.customer-info-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.customer-info-head h2 {
  margin: 0;
  color: var(--section-title-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.customer-info-body {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.customer-info-body p {
  margin: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.customer-info-body p strong {
  display: inline-block;
  min-width: 118px;
  color: var(--ink);
  font-weight: 900;
}

.customer-info-phone {
  color: var(--ink) !important;
  font-size: 30px !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
}

.customer-info-email {
  color: var(--section-body-color) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.customer-info-note {
  color: var(--section-body-color) !important;
  font-size: 13px !important;
}

.customer-info-fact-list {
  display: grid;
  gap: 10px;
}

.customer-info-fact-list p {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.customer-info-fact-list strong {
  min-width: 0;
}

.faq-page {
  display: grid;
  gap: 22px;
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    var(--glass-lite-overlay-mint),
    linear-gradient(135deg, rgba(244, 248, 242, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(247, 246, 239, 0.98) 100%);
  box-shadow: var(--shadow);
  padding: 42px 44px;
}

.faq-hero-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.faq-hero-copy p {
  margin: 0;
  color: #cf8d1e;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.faq-hero-copy h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.faq-hero-copy span {
  max-width: 560px;
  color: rgba(17, 22, 20, 0.72);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.68;
}

.faq-contact-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 220px;
  border: 1px solid rgba(220, 229, 221, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: 0 18px 40px -34px rgba(17, 58, 42, 0.38);
}

.faq-contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #f7f2e4;
}

.faq-contact-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.faq-contact-card strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.faq-contact-card p {
  margin: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.trust-strip article:has(.shop-icon-22),
.reason-grid article:has(.shop-icon-22),
.detail-benefits article:has(.shop-icon-22),
.process-strip article:has(.shop-icon-22),
.detail-check-grid article:has(.shop-icon-22),
.detail-info-grid article:has(.shop-icon-22),
.customer-service-summary-item:has(.shop-icon-22),
.customer-info-card:has(.shop-icon-22),
.faq-contact-card:has(.shop-icon-22) {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 100%),
    var(--icon-card-glass-3);
  background-clip: padding-box;
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  backdrop-filter: blur(10px) saturate(1.04);
  box-shadow:
    inset 0 0 0 1px var(--icon-card-edge-light),
    inset 0 0 0 2px var(--icon-card-edge-dark),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(6, 20, 14, 0.075),
    0 18px 30px -28px rgba(6, 20, 14, 0.32);
}

.service-grid article:has(.shop-icon-22) {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, var(--icon-card-glass-3) 0%, rgba(255, 255, 255, 0.012) 100%),
    var(--gradient-deep);
  background-clip: padding-box;
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  backdrop-filter: blur(10px) saturate(1.04);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 2px rgba(6, 20, 14, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(6, 20, 14, 0.28),
    0 18px 30px -28px rgba(6, 20, 14, 0.45);
}

.faq-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: var(--shadow);
}

.faq-category-strip span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(17, 58, 42, 0.08);
  border-radius: 999px;
  background: rgba(234, 247, 240, 0.94);
  padding: 0 16px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px -34px rgba(17, 58, 42, 0.4);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.faq-item summary strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
}

.faq-item summary b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--deep);
  transition: transform 180ms ease;
}

.faq-item[open] summary b {
  transform: rotate(90deg);
}

.faq-item p {
  margin: 0;
  border-top: 1px solid rgba(220, 229, 221, 0.72);
  padding: 20px 24px 24px 128px;
  color: var(--section-body-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

.notice-page {
  display: grid;
  gap: 22px;
}

.notice-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    var(--glass-lite-overlay-mint),
    linear-gradient(135deg, rgba(244, 248, 242, 0.98) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(247, 246, 239, 0.98) 100%);
  box-shadow: var(--shadow);
  padding: 42px 44px;
}

.notice-hero-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.notice-hero-copy p {
  margin: 0;
  color: #cf8d1e;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.notice-hero-copy h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.notice-hero-copy span {
  max-width: 560px;
  color: rgba(17, 22, 20, 0.72);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.68;
}

.notice-pin-card {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 230px;
  border: 1px solid rgba(220, 229, 221, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: 0 18px 40px -34px rgba(17, 58, 42, 0.38);
}

.notice-pin-card span,
.notice-summary-strip span,
.notice-item summary span {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 32px;
  border-radius: 999px;
  background: var(--mint);
  padding: 0 14px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.notice-pin-card time {
  color: var(--section-body-color);
  font-size: 12px;
  font-weight: 700;
}

.notice-pin-card strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.36;
}

.notice-pin-card p {
  margin: 0;
  color: var(--section-body-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.68;
}

.notice-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: var(--shadow);
}

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

.notice-item {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px -34px rgba(17, 58, 42, 0.4);
}

.notice-item summary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 112px 34px;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}

.notice-item summary::-webkit-details-marker {
  display: none;
}

.notice-item summary strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
}

.notice-item summary time {
  color: var(--section-body-color);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.notice-item summary b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--deep);
  transition: transform 180ms ease;
}

.notice-item[open] summary b {
  transform: rotate(90deg);
}

.notice-item > p {
  margin: 0;
  border-top: 1px solid rgba(220, 229, 221, 0.72);
  padding: 20px 24px 24px 126px;
  color: var(--section-body-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

@media (max-width: 1120px) {
  .customer-service-hero {
    grid-template-columns: 1fr;
  }

  .customer-service-summary {
    grid-template-columns: 1fr;
  }

  .faq-hero {
    grid-template-columns: 1fr;
  }

  .notice-hero {
    grid-template-columns: 1fr;
  }

  .customer-service-summary-item + .customer-service-summary-item {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
}

@media (max-width: 760px) {
  .signup-choice-card {
    width: 100%;
    gap: 22px;
    padding: 0;
  }

  .signup-benefit-banner {
    min-height: 250px;
    padding: 18px;
  }

  .signup-coupon-body h2 {
    font-size: 21px;
  }

  .signup-coupon-body strong {
    font-size: 40px;
  }

  .signup-coupon-top,
  .signup-coupon-foot {
    gap: 10px;
  }

  .signup-form-page {
    margin-top: 20px;
  }

  .signup-detail-form {
    padding: 22px 18px 24px;
  }

  .signup-field {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 42px;
  }

  .signup-field > label:first-child {
    padding: 0 10px;
    font-size: 11px;
  }

  .signup-field input,
  .signup-field select {
    width: 100%;
  }

  .signup-radio-row {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-left: 10px;
  }

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

  .customer-service-hero {
    padding: 24px;
    border-radius: 22px;
  }

  .customer-service-copy h1 {
    font-size: 38px;
  }

  .customer-service-copy span {
    font-size: 15px;
  }

  .faq-hero {
    padding: 24px;
    border-radius: 22px;
  }

  .notice-hero {
    padding: 24px;
    border-radius: 22px;
  }

  .faq-hero-copy h1 {
    font-size: 38px;
  }

  .notice-hero-copy h1 {
    font-size: 38px;
  }

  .faq-hero-copy span {
    font-size: 15px;
  }

  .notice-hero-copy span {
    font-size: 15px;
  }

  .notice-pin-card {
    min-height: 0;
    padding: 22px;
  }

  .faq-contact-card {
    min-height: 0;
    padding: 22px;
  }

  .faq-item summary {
    grid-template-columns: 1fr 34px;
    gap: 10px 14px;
    min-height: 0;
    padding: 18px;
  }

  .faq-item summary span {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 0 14px;
  }

  .faq-item summary strong {
    font-size: 16px;
  }

  .faq-item p {
    padding: 18px;
    font-size: 13px;
  }

  .notice-item summary {
    grid-template-columns: 1fr 34px;
    gap: 10px 14px;
    min-height: 0;
    padding: 18px;
  }

  .notice-item summary span,
  .notice-item summary time {
    justify-self: start;
  }

  .notice-item summary time {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .notice-item summary strong {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 16px;
  }

  .notice-item summary b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .notice-item > p {
    padding: 18px;
    font-size: 13px;
  }

  .customer-info-grid article {
    min-height: 0;
  }

  .customer-info-head {
    align-items: flex-start;
  }

  .customer-info-icon-wrap {
    width: 54px;
    height: 54px;
  }

  .customer-info-phone {
    font-size: 24px !important;
  }

  .customer-info-body p,
  .customer-info-note,
  .customer-info-email {
    font-size: 14px !important;
  }

  .customer-info-fact-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

.customer-info-body p strong {
  min-width: 0;
}
}

.customer-center-image-view {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.customer-center-image-view img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}

.mypage-layout {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.mypage-side {
  position: sticky;
  top: 96px;
  gap: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.mypage-menu-group {
  display: grid;
  gap: 2px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line-soft);
}

.mypage-menu-group:last-of-type {
  border-bottom: 0;
}

.mypage-menu-group h2 {
  margin: 0 22px 8px;
  color: var(--deep);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.32;
}

.mypage-side button {
  width: 100%;
  min-height: 30px;
  border-radius: 0;
  padding: 0 22px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.32;
}

.mypage-side button.is-active {
  background: var(--mint);
  box-shadow: inset 3px 0 0 var(--deep);
  color: var(--deep);
  font-weight: 700;
}

.mypage-logout-btn {
  margin-bottom: 0;
  border-bottom: 1px solid var(--line-soft) !important;
}

.mypage-support-card {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  border: 1px solid rgba(17, 58, 42, 0.1);
  border-radius: 10px;
  background: #F8FBF8;
  padding: 13px;
  box-shadow: none;
}

.mypage-support-card strong,
.mypage-support-card a,
.mypage-support-card span {
  margin: 0;
}

.mypage-support-card strong {
  color: var(--deep);
  font-size: 12px;
  font-weight: 950;
}

.mypage-support-card a {
  color: var(--deep);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
  text-decoration: none;
}

.mypage-support-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.mypage-support-card .secondary-btn {
  width: 100%;
  min-height: 36px;
  margin: 8px 0 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  padding: 0 12px;
  color: var(--deep);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  box-shadow: none;
}

.mypage-content {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.mypage-content .page-title.compact {
  margin: 0 0 28px;
}

.mypage-content .page-title.compact h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.mypage-content .page-title.compact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.mypage-points-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 18px;
  font-family: var(--font-pretendard);
}

.mypage-points-summary article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 118px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mypage-points-summary span,
.mypage-points-summary strong {
  margin: 0;
  letter-spacing: 0;
}

.mypage-points-summary span {
  color: rgba(17, 22, 20, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.mypage-points-summary strong {
  color: var(--deep);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.mypage-points-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 240px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-family: var(--font-pretendard);
  text-align: center;
}

.mypage-points-empty strong,
.mypage-points-empty span {
  margin: 0;
  letter-spacing: 0;
}

.mypage-points-empty strong {
  color: var(--deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.mypage-points-empty span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.mypage-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  width: min(420px, 100%);
  min-height: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  padding: 0 10px 0 18px;
  box-shadow: var(--shadow);
}

.mypage-search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.mypage-search-form button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.button-img-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mypage-period-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.mypage-period-tabs button {
  min-height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  padding: 0 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.mypage-period-tabs button.is-active {
  border-color: var(--deep);
  background: var(--gradient-deep);
  color: #fff;
}

.mypage-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mypage-service-strip article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 90px;
  padding: 20px 24px;
}

.mypage-service-strip article + article {
  border-left: 1px solid var(--line-soft);
}

.mypage-service-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.mypage-service-strip strong,
.order-product-copy strong,
.mypage-card-title strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.mypage-service-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.order-list {
  gap: 34px;
}

.order-row {
  grid-template-columns: 210px 80px minmax(0, 1fr) 190px;
  min-height: 174px;
  gap: 24px;
  border-radius: 8px;
  padding: 24px;
}

.order-meta {
  display: grid;
  gap: 10px;
  align-content: start;
}

.order-meta h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 25px;
  border-radius: 999px;
  background: var(--mint);
  padding: 0 12px;
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
}

.order-meta small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.order-product-thumb {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #f4f6f4;
}

.order-product-thumb img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.order-product-copy {
  display: grid;
  gap: 6px;
  align-content: center;
}

.order-product-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.order-product-copy b {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.order-actions {
  display: grid;
  gap: 8px;
  align-content: center;
}

.order-actions .primary-btn,
.order-actions .secondary-btn,
.mypage-form-card .primary-btn,
.mypage-inline-form .primary-btn,
.mypage-inline-form .secondary-btn,
.mypage-inline-form .gold-cart-btn,
.mypage-info-card .secondary-btn,
.mypage-danger-card .secondary-btn {
  margin-top: 0;
}

.plain-link-btn {
  min-height: auto;
  border: 0;
  background: transparent;
  padding: 0 0 2px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.order-action-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.order-action-pair .secondary-btn {
  min-width: 0;
  padding: 0 8px;
  font-size: 12px;
}

.mypage-inline-form,
.mypage-form-card,
.mypage-toggle-list,
.mypage-danger-card,
.mypage-table {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mypage-inline-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 22px;
  padding: 24px;
}

.mypage-inline-form.address-form {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.address-form-row {
  display: grid;
  gap: 12px;
  align-items: end;
}

.address-form-row-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.address-form-row-bottom {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
}

.address-form-row-bottom .gold-cart-btn {
  min-width: 124px;
}

.mypage-inline-form label,
.mypage-form-card label,
.mypage-danger-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.mypage-inline-form input,
.mypage-inline-form select,
.mypage-form-card input,
.mypage-form-card select,
.mypage-form-card textarea,
.mypage-danger-card input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
}

.mypage-form-card textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.mypage-form-card,
.mypage-danger-card {
  display: grid;
  gap: 16px;
  max-width: 620px;
  padding: 26px;
}

.member-edit-form {
  display: grid;
  gap: 24px;
  width: min(850px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 30px 36px 34px;
  box-shadow: var(--shadow);
}

.member-edit-form fieldset {
  display: grid;
  gap: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.member-edit-form legend {
  width: 100%;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--deep);
  padding-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.member-edit-form .signup-field {
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 36px;
}

.member-edit-form .signup-field > label:first-child {
  background: #f3f6f3;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.member-edit-form .signup-field input,
.member-edit-form .signup-field select {
  width: min(100%, 440px);
  height: 24px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
}

.member-edit-form .signup-radio-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  min-height: 36px;
  gap: 22px;
  padding-left: 10px;
}

.member-edit-form .signup-radio-row label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.2;
}

.member-edit-form .signup-radio-row input[type="radio"] {
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex: 0 0 14px;
}

.member-edit-actions {
  width: min(540px, 100%);
  margin-top: 4px;
}

.member-edit-actions .secondary-btn,
.member-edit-actions .primary-btn {
  margin-top: 0;
  min-height: 54px;
  border-radius: 8px;
}

.member-edit-actions .primary-btn {
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
  box-shadow: none;
}

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

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

.mypage-info-card,
.coupon-card,
.mypage-row {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mypage-info-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.mypage-card-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.mypage-card-title span,
.coupon-card span {
  border-radius: 999px;
  background: var(--mint);
  padding: 5px 10px;
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
}

.mypage-info-card p,
.mypage-info-card small,
.mypage-danger-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mypage-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.mypage-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.mypage-row span {
  color: var(--muted);
  font-size: 12px;
}

.mypage-row strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.mypage-row b {
  color: var(--deep);
  font-size: 13px;
}

.mypage-row.inquiry-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: start;
}

.inquiry-row-main p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.inquiry-row-status {
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 148px;
}

.inquiry-row-status b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--mint);
  padding: 0 12px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
}

.inquiry-row-status b.is-answered {
  background: var(--deep);
  color: #fff;
}

.inquiry-row-status small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

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

.inquiry-row-actions .secondary-btn[disabled] {
  cursor: default;
  opacity: 0.58;
}

.inquiry-answer {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--line-soft);
  background: var(--mint);
  padding: 18px 20px;
}

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

.inquiry-answer-head span {
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-answer-head time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.inquiry-answer p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.mypage-toggle-list {
  display: grid;
  max-width: 720px;
}

.mypage-toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
}

.mypage-toggle-row + .mypage-toggle-row {
  border-top: 1px solid var(--line-soft);
}

.mypage-toggle-row span {
  display: grid;
  gap: 4px;
}

.mypage-toggle-row strong {
  font-size: 15px;
  font-weight: 800;
}

.mypage-toggle-row small {
  color: var(--muted);
  font-size: 13px;
}

.mypage-toggle-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--deep);
}

.mypage-table {
  overflow: hidden;
}

.mypage-table-head,
.mypage-table-row {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.45fr 1fr 130px;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
}

.mypage-table-head {
  background: var(--mint);
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}

.mypage-table-row + .mypage-table-row {
  border-top: 1px solid var(--line-soft);
}

.mypage-table-row span,
.mypage-table-row strong,
.mypage-table-row b {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.mypage-table-row b {
  color: var(--ink);
  font-weight: 800;
}

.secondary-btn.danger {
  border-color: #d9a6a6;
  color: #8d1f1f;
}

.mypage-side .mypage-support-card {
  margin: 16px 14px 14px;
  padding: 13px;
}

.mypage-side .mypage-support-card .secondary-btn {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 0 12px;
  color: var(--deep);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.empty-card {
  padding: 24px;
}

@media (max-width: 1180px) {
  .mypage-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mypage-side {
    position: static;
  }

  .mypage-service-strip,
  .mypage-card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mypage-inline-form.address-form {
    grid-template-columns: 1fr;
  }

  .address-form-row-top,
  .address-form-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .address-form-row-bottom .gold-cart-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .mypage-inline-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-edit-form {
    width: 100%;
  }

  .order-row {
    grid-template-columns: 120px 80px minmax(0, 1fr);
  }

  .order-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plain-link-btn {
    text-align: left;
  }

  .member-edit-form {
    padding: 22px 18px 24px;
  }

  .member-edit-form .signup-field {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .member-edit-form .signup-field > label:first-child {
    min-height: 34px;
  }

  .member-edit-form .signup-field input,
  .member-edit-form .signup-field select {
    width: 100%;
    height: 38px;
  }

  .member-edit-form .signup-radio-row {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 42px;
    padding-left: 0;
  }

  .member-edit-form .signup-radio-row input[type="radio"] {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .mypage-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }

  .mypage-side {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 720px) {
  .mypage-content .page-title.compact h1 {
    font-size: 28px;
  }

  .mypage-points-summary,
  .mypage-service-strip,
  .mypage-card-grid,
  .mypage-card-grid.three,
  .mypage-inline-form,
  .mypage-inline-form.address-form,
  .order-row,
  .order-actions,
  .order-action-pair,
  .mypage-table-head,
  .mypage-table-row {
    grid-template-columns: 1fr;
  }

  .address-form-row-top,
  .address-form-row-bottom {
    grid-template-columns: 1fr;
  }

  .mypage-service-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .order-product-thumb {
    width: 92px;
    height: 92px;
  }

  .plain-link-btn {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .mypage-points-summary article {
    min-height: 98px;
    padding: 18px 14px;
  }

  .mypage-points-summary strong {
    font-size: 26px;
  }

  .mypage-points-empty {
    min-height: 200px;
    padding: 24px 20px;
  }
}

.hero-copy h1,
.auth-copy h1,
.section-head h1,
.page-title h1,
.home-section-head h1,
.buy-panel h1,
.dark-cta h1,
.complete-page h1,
.customer-service-copy h1 {
  font-weight: 800;
}

.product-card h2,
.best-body h2,
.reason-grid h2,
.detail-benefits h2,
.grade-guide h2,
.service-grid h2,
.store-notice h2,
.bundle-card h2,
.home-bottom-cta h2,
.detail-story-hero h2,
.detail-card-grid h2,
.detail-bottom-cta h2,
.footer-column h2,
.footer-contact h2,
.cart-item h2,
.order-row h2,
.summary-panel h2,
.legal-documents h2,
.mypage-side h2,
.cart-move-card h2,
.customer-info-head h2 {
  font-weight: 800;
}

.home-section-head p,
.detail-info-section .detail-section-head p,
.detail-spec-section .detail-section-head p {
  font-weight: 600;
}

@media (max-width: 980px) {
  .checkout-layout--payment {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .checkout-page-title {
    margin: 28px 0 16px;
  }

  .checkout-page-title h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .checkout-page-title span {
    font-size: 14px;
    line-height: 1.5;
  }

  .checkout-main-card {
    gap: 16px;
    padding: 14px;
    border-radius: 16px;
  }

  .checkout-method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-policy-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .checkout-policy-icon {
    width: 38px;
    height: 38px;
  }

  .checkout-policy-icon svg {
    width: 20px;
    height: 20px;
  }

  .checkout-summary-card {
    padding: 0 14px 16px;
    border-radius: 16px;
  }

  .checkout-summary-cap {
    margin: 0 -14px 2px;
  }
}

.review-stat-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-stat-card article {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 122px;
  padding: 31px 18px 24px;
}

.review-stat-card article + article {
  border-left: 1px solid rgba(220, 229, 221, 0.55);
}

.review-stat-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.32;
}

.review-stat-card strong {
  color: var(--deep);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.review-product-list,
.review-write-product,
.review-write-form {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-product-list {
  display: grid;
  padding: 0 28px;
}

.review-product-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 100px;
}

.review-product-row + .review-product-row {
  border-top: 1px solid rgba(220, 229, 221, 0.72);
}

.review-product-thumb {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  overflow: hidden;
  background: #f6f8f5;
}

.review-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.review-product-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.review-product-copy strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.32;
}

.review-product-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.32;
}

.review-write-entry {
  min-width: 140px;
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
  box-shadow: none;
}

.review-empty-state {
  display: grid;
  gap: 6px;
  min-height: 160px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.review-empty-state strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.review-empty-state span {
  color: var(--muted);
  font-size: 13px;
}

.review-write-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  margin: 0 0 32px;
  padding: 30px 66px 30px 32px;
}

.review-status-pill {
  display: inline-grid;
  place-items: center;
  min-width: 120px;
  min-height: 34px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
}

.review-write-form {
  display: grid;
  gap: 0;
  padding: 34px 36px 28px;
}

.review-write-section {
  display: grid;
  gap: 16px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(220, 229, 221, 0.72);
}

.review-write-section + .review-write-section {
  padding-top: 26px;
}

.review-write-section h2,
.review-write-section label[for="review-body"] {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.review-write-section p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-rating-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}

.review-rating-group button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.review-rating-group span {
  color: rgba(17, 58, 42, 0.24);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.review-rating-group button.is-active span,
.review-rating-group button:hover span {
  color: var(--deep);
}

.review-rating-group button:focus-visible {
  outline: 2px solid var(--deep);
  outline-offset: 2px;
}

.review-rating-group button:active span {
  transform: scale(0.92);
}

.review-upload-section {
  grid-template-columns: minmax(0, auto) 1fr;
  align-items: center;
}

.review-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-upload-section h2,
.review-upload-section .review-upload-slots {
  grid-column: 1 / -1;
}

.review-upload-section p {
  align-self: center;
}

.review-upload-slots {
  display: flex;
  gap: 16px;
  align-items: center;
}

.review-upload-slots button {
  display: grid;
  place-items: center;
  position: relative;
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8f5;
  color: var(--muted);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
}

.review-upload-slots button:hover,
.review-upload-slots button:focus-visible {
  border-color: var(--deep);
  background: #fff;
}

.review-upload-slots button:focus-visible {
  outline: 2px solid var(--deep);
  outline-offset: 2px;
}

.review-upload-slots button.has-file {
  padding: 0;
  background: #fff;
}

.review-upload-slots button.has-file img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-upload-slots button.has-file span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(6, 20, 14, 0.72);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  padding: 2px 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-body-section {
  border-bottom: 0;
}

.review-body-section textarea {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--ink);
  font: 400 13px/1.55 var(--font-pretendard);
  resize: vertical;
}

.review-body-section textarea::placeholder {
  color: var(--muted);
}

.review-write-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}

.review-write-actions .secondary-btn,
.review-write-actions .primary-btn {
  min-width: 132px;
  min-height: 42px;
  margin: 0;
}

.review-write-actions .primary-btn {
  min-width: 160px;
  border-color: var(--deep);
  background: var(--deep);
  color: #fff;
  box-shadow: none;
}

@media (max-width: 720px) {
  .mypage-layout {
    gap: 0;
  }

  .mypage-side {
    display: none;
  }

  .mypage-content {
    min-height: auto;
    padding: 0;
  }

  .mypage-content .page-title.compact {
    margin-bottom: 18px;
  }

  .mypage-content .page-title.compact p {
    display: none;
  }

  .mypage-content .page-title.compact h1 {
    font-size: 22px;
    line-height: 1.35;
  }

  .mypage-content .page-title.compact span {
    margin-top: 4px;
    font-size: 12px;
  }

  .review-stat-card {
    margin-bottom: 36px;
  }

  .review-stat-card article {
    min-height: 120px;
    padding: 24px 14px 20px;
  }

  .review-stat-card span {
    font-size: 13px;
  }

  .review-stat-card strong {
    font-size: 30px;
  }

  .review-product-list {
    padding: 0 22px;
  }

  .review-product-row {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    min-height: 148px;
    padding: 24px 0 18px;
  }

  .review-product-row + .review-product-row {
    border-top: 1px solid rgba(220, 229, 221, 0.72);
  }

  .review-product-thumb {
    width: 50px;
    height: 50px;
  }

  .review-write-entry {
    grid-column: 2;
    justify-self: end;
    width: 140px;
  }

  .review-write-product {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    min-height: 96px;
    margin-bottom: 24px;
    padding: 22px;
  }

  .review-write-product .review-status-pill {
    display: none;
  }

  .review-write-form {
    padding: 24px 20px 8px;
  }

  .review-write-section {
    gap: 14px;
    padding-bottom: 24px;
  }

  .review-write-section + .review-write-section {
    padding-top: 24px;
  }

  .review-write-section h2,
  .review-write-section label[for="review-body"] {
    font-size: 16px;
  }

  .review-rating-group button {
    width: 28px;
    height: 34px;
  }

  .review-rating-group span {
    font-size: 28px;
  }

  .review-upload-section {
    grid-template-columns: 1fr;
  }

  .review-upload-slots {
    gap: 14px;
  }

  .review-upload-slots button {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .review-body-section textarea {
    min-height: 96px;
    padding: 18px 16px;
    font-size: 12px;
  }

  .review-write-actions {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
    margin-top: 24px;
  }

  .review-write-actions .secondary-btn,
  .review-write-actions .primary-btn {
    min-width: 0;
    width: 100%;
    min-height: 40px;
  }
}

.bestseller-section,
.home-reason-section,
.home-process-system--inspection,
.home-shipping-section,
.home-bundle-section,
.bestseller-section .best-card,
.bestseller-section .best-media,
.bestseller-section .best-review,
.home-reason-section .reason-grid article,
.home-process-system--inspection .home-system-image-body,
.home-process-system--inspection .home-process-system-grid article,
.home-shipping-section .service-grid article,
.home-bundle-section .bundle-card {
  background: #ffffff;
}

.home-shipping-section .service-grid article {
  border-color: var(--line-soft);
  color: var(--ink);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: var(--glass-shadow);
}

.home-shipping-section .service-grid p {
  color: var(--section-body-color);
}

/* Client readability scale pass: larger text, controls, cards, and product media. */
:root {
  --readable-text: 18px;
  --readable-small: 16px;
  --readable-control: 52px;
  --readable-control-large: 64px;
}

body {
  font-size: var(--readable-text);
}

main,
.site-header,
.site-footer {
  width: min(1480px, calc(100% - 48px));
}

.site-header {
  grid-template-columns: 236px 1fr auto;
  min-height: 98px;
}

.brand-lockup,
.brand-lockup img {
  width: 64px;
  height: 64px;
}

.nav-link,
.site-nav a,
.auth-link,
.product-menu a,
.product-menu button {
  font-size: var(--readable-text);
}

.auth-link,
.text-btn,
.icon-btn,
.plain-header-icon,
.mobile-menu,
.product-menu a,
.product-menu button,
.primary-btn,
.secondary-btn,
.gold-cart-btn,
.ghost-btn,
.light-btn,
.outline-light-btn,
.chip-row button,
.hover-action-btn,
.gallery-more-btn,
.detail-mini-cta-btn,
.mypage-side button,
.admin-side button {
  min-height: var(--readable-control);
}

.auth-link,
.text-btn,
.primary-btn,
.secondary-btn,
.gold-cart-btn,
.ghost-btn,
.light-btn,
.outline-light-btn,
.chip-row button,
.hover-action-btn,
.gallery-more-btn,
.detail-mini-cta-btn,
.mypage-side button,
.admin-side button {
  padding-right: 22px;
  padding-left: 22px;
  font-size: var(--readable-text);
}

.icon-btn,
.plain-header-icon,
.mobile-menu {
  width: var(--readable-control);
  min-width: var(--readable-control);
}

.header-glyph-img,
.inline-action-icon,
.button-img-icon {
  width: 26px;
  height: 26px;
}

.image-icon-btn b {
  min-width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
}

.gold-cart-btn {
  min-height: var(--readable-control-large);
  font-size: 20px;
}

.compact,
.gold-cart-btn.compact {
  min-height: var(--readable-control);
  font-size: var(--readable-text);
}

.product-menu {
  width: min(360px, calc(100vw - 32px));
}

.product-menu a,
.product-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0 24px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
}

.product-menu button.product-menu-account {
  border-top: 1px solid rgba(17, 58, 42, 0.08);
  color: var(--deep);
}

.page-title p,
.section-head p,
.breadcrumb,
.product-top span,
.buy-panel > p {
  font-size: var(--readable-text);
}

.page-title span,
.section-head span,
.home-section-head span {
  font-size: var(--readable-text);
}

.section-head h1,
.page-title h1 {
  font-size: clamp(40px, 3.6vw, 58px);
}

.signup-choice-card,
.login-choice-card {
  width: min(560px, 100%);
}

.signup-choice-header h1 {
  font-size: 38px;
}

.signup-choice-header p,
.signup-choice-header span,
.auth-copy span,
.signup-form-title p,
.signup-complete-card p {
  font-size: var(--readable-text);
}

.login-social-btn,
.id-signup-btn,
.guest-order-submit-btn {
  min-height: var(--readable-control-large);
  font-size: var(--readable-text);
}

.login-member-tabs button {
  min-height: 56px;
  font-size: var(--readable-text);
}

.login-field {
  gap: 10px;
  padding: 16px 0 14px;
}

.login-field > span:first-child,
.auth-form label,
.signup-detail-form legend,
.member-edit-form legend {
  font-size: var(--readable-text);
}

.login-field input,
.login-field input::placeholder,
.auth-form input,
.signup-field input:not([type="radio"]),
.signup-field select,
.member-edit-form .signup-field input:not([type="radio"]),
.member-edit-form .signup-field select {
  font-size: var(--readable-text);
}

.login-field input {
  min-height: var(--readable-control);
}

.password-input-wrap {
  grid-template-columns: minmax(0, 1fr) var(--readable-control);
}

.password-input-wrap button {
  width: var(--readable-control);
  height: var(--readable-control);
}

.password-input-wrap svg {
  width: 24px;
  height: 24px;
}

.login-helper-links button,
.signup-divider,
.signup-coupon-top span,
.signup-coupon-top b,
.signup-coupon-body p,
.signup-coupon-body small,
.signup-coupon-foot span,
.signup-coupon-foot em {
  font-size: var(--readable-small);
}

.signup-benefit-banner {
  min-height: 360px;
  padding: 30px;
}

.signup-coupon-body h2 {
  font-size: 34px;
}

.signup-coupon-body strong {
  font-size: 68px;
}

.signup-form-page {
  width: min(980px, 100%);
}

.signup-form-title h1 {
  font-size: 42px;
}

.signup-detail-form,
.member-edit-form {
  gap: 30px;
  padding: 40px;
}

.signup-field,
.member-edit-form .signup-field {
  grid-template-columns: 174px minmax(0, 1fr);
  min-height: 62px;
}

.signup-field > label:first-child,
.member-edit-form .signup-field > label:first-child {
  padding: 0 20px;
  font-size: var(--readable-text);
}

.signup-field input:not([type="radio"]),
.signup-field select,
.member-edit-form .signup-field input:not([type="radio"]),
.member-edit-form .signup-field select {
  width: min(100%, 560px);
  height: var(--readable-control);
  min-height: var(--readable-control);
  padding: 0 16px;
}

.signup-radio-row,
.member-edit-form .signup-radio-row,
.signup-radio-row label,
.member-edit-form .signup-radio-row label {
  min-height: var(--readable-control);
  font-size: var(--readable-text);
}

.signup-radio-row input[type="radio"],
.member-edit-form .signup-radio-row input[type="radio"] {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-height: 0;
}

.signup-form-actions button,
.member-edit-actions .secondary-btn,
.member-edit-actions .primary-btn {
  height: 62px;
  min-height: 62px;
  font-size: var(--readable-text);
}

.product-grid,
.product-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 28px;
}

.product-card {
  border-radius: 18px;
}

.product-media {
  min-height: 310px;
  aspect-ratio: 1.22;
}

.product-media img,
.product-grid.small .product-media img {
  width: min(390px, 86%);
  max-width: min(390px, 86%);
  max-height: calc(100% - 34px);
}

.product-body {
  padding: 30px;
}

.product-top b {
  min-height: 38px;
  padding: 0 16px;
  font-size: var(--readable-text);
  line-height: 38px;
}

.product-card h2 {
  min-height: auto;
  font-size: 30px;
  line-height: 1.25;
}

.product-card p {
  min-height: 0;
  font-size: var(--readable-text);
}

.product-card dl {
  gap: 10px;
}

.product-card dl div {
  grid-template-columns: 72px 1fr;
  font-size: var(--readable-text);
}

.product-bottom strong {
  font-size: 28px;
}

.card-cart-btn {
  min-height: var(--readable-control-large);
  font-size: var(--readable-text);
}

.round-action,
.mini-cart-btn,
.bundle-cart-btn {
  width: var(--readable-control);
  height: var(--readable-control);
}

.hover-actions {
  gap: 10px;
}

.hover-action-icon {
  width: 24px;
  height: 24px;
}

.best-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 22px;
}

.best-media {
  min-height: 230px;
  aspect-ratio: 1.05;
}

.best-media img {
  width: min(230px, 86%);
}

.best-body {
  padding: 24px;
}

.best-body span,
.best-body p,
.best-review small,
.best-review-stars {
  font-size: var(--readable-small);
}

.best-body h2 {
  min-height: auto;
  font-size: 22px;
}

.best-body strong {
  font-size: 22px;
}

.best-review {
  grid-template-columns: minmax(0, 1fr) var(--readable-control);
  min-height: 72px;
  padding: 14px 16px;
}

.store-product-list,
.bundle-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 22px;
}

.store-product {
  grid-template-columns: 122px minmax(0, 1fr) 30px;
  min-height: 166px;
  padding: 22px;
}

.store-product > img:not(.chevron-img) {
  width: 122px;
  height: 122px;
}

.store-product strong,
.store-product small,
.store-product b {
  font-size: var(--readable-text);
}

.bundle-card {
  min-height: 260px;
  padding: 26px;
}

.bundle-media {
  grid-template-columns: 92px 24px 92px;
  min-height: 104px;
}

.bundle-media img {
  width: 92px;
  height: 92px;
}

.bundle-card h2,
.bundle-card strong {
  font-size: 22px;
}

.bundle-card p {
  font-size: var(--readable-text);
  line-height: 1.55;
}

.bundle-cart-img {
  width: 30px;
  height: 30px;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr);
}

.detail-gallery,
.buy-panel {
  padding: 30px;
}

.gallery-stage {
  min-height: 520px;
}

.gallery-stage img,
.gallery-stage video {
  width: min(500px, 88%);
}

.gallery-more-btn {
  min-height: var(--readable-control);
  font-size: var(--readable-text);
}

.gallery-note,
.buy-eyebrow,
.buy-panel small,
.stock-line,
.detail-check-strip header span,
.detail-info-section .detail-section-head span,
.detail-spec-section .detail-section-head span,
.detail-info-grid small,
.detail-feature-card ul,
.detail-spec-table-card dt,
.detail-spec-table-card dd,
.detail-policy-note ul,
.detail-mini-cta span {
  font-size: var(--readable-text);
}

.thumb-row button {
  width: 66px;
  height: 66px;
  min-height: 66px;
}

.thumb-row img {
  max-width: 54px;
  max-height: 54px;
}

.badge-row span,
.badge-row b {
  min-height: 40px;
  font-size: var(--readable-text);
  line-height: 40px;
}

.buy-panel h1 {
  font-size: clamp(36px, 2.8vw, 46px);
}

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

.detail-summary-table div {
  grid-template-columns: 156px 1fr;
  min-height: var(--readable-control);
}

.detail-summary-table dt,
.detail-summary-table dd,
.option-group p,
.option-group button,
.selected-box span,
.selected-box strong,
.selected-box b {
  font-size: var(--readable-text);
}

.option-stack {
  gap: 16px;
}

.option-group {
  grid-template-columns: 86px 1fr;
  gap: 16px;
}

.option-group div {
  gap: 10px;
}

.option-group button {
  min-width: 86px;
  min-height: var(--readable-control);
  padding: 0 22px;
}

.selected-box {
  padding: 18px 20px;
}

.buy-panel .gold-cart-btn,
.buy-panel .secondary-btn {
  min-height: var(--readable-control-large);
  font-size: var(--readable-text);
}

.detail-check-grid {
  min-height: 112px;
}

.detail-check-grid strong,
.detail-info-grid strong,
.detail-feature-card strong,
.detail-spec-table-card strong,
.detail-policy-note strong,
.detail-mini-cta strong {
  font-size: 22px;
}

.detail-check-grid small {
  font-size: var(--readable-small);
}

.detail-info-grid article {
  grid-template-columns: 72px 1fr;
  min-height: 142px;
}

.detail-info-media {
  width: 68px;
  height: 68px;
}

.detail-info-ball {
  width: 50px;
  height: 50px;
}

.detail-info-icon {
  width: 38px;
  height: 38px;
}

.detail-mini-cta {
  grid-template-columns: minmax(280px, auto) 1fr auto;
  padding: 18px 22px;
}

.detail-mini-cta-btn {
  min-height: var(--readable-control);
}

.detail-feature-card img {
  width: 128px;
}

.checkout-page-title span,
.checkout-section-label,
.checkout-field-label,
.checkout-field input,
.checkout-field select,
.checkout-form label,
.checkout-form input,
.checkout-form select,
.checkout-policy-card strong,
.checkout-policy-card p,
.checkout-policy-card small,
.checkout-summary-row,
.checkout-summary-row strong,
.checkout-summary-total span,
.checkout-summary-note {
  font-size: var(--readable-text);
}

.checkout-field input,
.checkout-field select,
.checkout-form input,
.checkout-form select,
.profile-form input {
  min-height: var(--readable-control);
  padding: 0 18px;
}

.checkout-method {
  min-height: 58px;
}

.checkout-method-label {
  font-size: var(--readable-text);
}

.checkout-method-icon,
.checkout-method-icon svg {
  width: 26px;
  height: 26px;
}

.checkout-policy-card {
  grid-template-columns: 68px 1fr;
  padding: 20px 22px;
}

.checkout-policy-icon {
  width: 58px;
  height: 58px;
}

.checkout-summary-head h2 {
  font-size: 24px;
}

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

.checkout-submit-copy b {
  font-size: 20px;
}

.cart-item {
  grid-template-columns: 158px 1fr auto auto;
  gap: 24px;
  padding: 24px;
}

.cart-item-media {
  width: 150px;
  height: 150px;
}

.cart-item-media img {
  width: 138px;
  height: 138px;
}

.cart-item h2,
.order-row h2 {
  font-size: 22px;
}

.cart-item p,
.order-row p,
.summary-panel,
.summary-panel small,
.summary-panel > div,
.summary-panel .grand {
  font-size: var(--readable-text);
}

.qty-control button,
.cart-item .icon-btn {
  width: var(--readable-control);
  height: var(--readable-control);
  min-height: var(--readable-control);
  font-size: 22px;
}

.mypage-layout {
  grid-template-columns: 310px 1fr;
  gap: 34px;
}

.mypage-side h2,
.mypage-content .page-title.compact span,
.mypage-service-strip strong,
.mypage-service-strip span,
.mypage-search-form input,
.mypage-period-tabs button,
.mypage-inline-form label,
.mypage-form-card label,
.mypage-danger-card label,
.mypage-inline-form input,
.mypage-inline-form select,
.mypage-form-card input,
.mypage-form-card select,
.mypage-form-card textarea,
.mypage-danger-card input,
.mypage-info-card p,
.mypage-info-card small,
.mypage-danger-card p,
.mypage-card-title span,
.coupon-card span,
.mypage-row span,
.mypage-row strong,
.mypage-row b,
.inquiry-row-main p,
.inquiry-row-status b,
.inquiry-row-status small,
.inquiry-answer-head span,
.inquiry-answer-head time,
.inquiry-answer p,
.mypage-toggle-row strong,
.mypage-toggle-row small,
.mypage-table-head,
.mypage-table-row span,
.mypage-table-row strong,
.mypage-table-row b {
  font-size: var(--readable-text);
}

.mypage-side button {
  min-height: var(--readable-control);
}

.mypage-search-form {
  grid-template-columns: minmax(0, 1fr) var(--readable-control);
  min-height: 58px;
}

.mypage-search-form button {
  width: var(--readable-control);
  height: var(--readable-control);
}

.mypage-period-tabs button {
  min-height: var(--readable-control);
}

.mypage-service-strip article {
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 116px;
}

.mypage-service-icon {
  width: 54px;
  height: 54px;
}

.order-row {
  grid-template-columns: 240px 112px minmax(0, 1fr) 230px;
  min-height: 224px;
  gap: 28px;
}

.status-pill {
  min-height: 38px;
  padding: 0 16px;
  font-size: var(--readable-text);
}

.order-meta small,
.order-product-copy span,
.order-product-copy b,
.plain-link-btn,
.order-action-pair .secondary-btn {
  font-size: var(--readable-text);
}

.order-product-copy strong {
  font-size: 22px;
}

.order-product-thumb {
  width: 112px;
  height: 112px;
}

.order-product-thumb img {
  width: 108px;
  height: 108px;
}

.order-actions {
  gap: 10px;
}

.order-actions .primary-btn,
.order-actions .secondary-btn,
.order-action-pair .secondary-btn,
.mypage-form-card .primary-btn,
.mypage-inline-form .primary-btn,
.mypage-inline-form .secondary-btn,
.mypage-inline-form .gold-cart-btn,
.mypage-info-card .secondary-btn,
.mypage-danger-card .secondary-btn {
  min-height: var(--readable-control);
  font-size: var(--readable-text);
}

.mypage-inline-form {
  gap: 16px;
  padding: 30px;
}

.mypage-inline-form input,
.mypage-inline-form select,
.mypage-form-card input,
.mypage-form-card select,
.mypage-danger-card input {
  min-height: var(--readable-control);
  padding: 0 18px;
}

.mypage-form-card textarea {
  min-height: 150px;
  padding: 16px 18px;
}

.address-form-row-bottom .gold-cart-btn {
  min-width: 164px;
}

.mypage-info-card {
  padding: 28px;
}

.empty-card {
  min-height: 260px;
  font-size: var(--readable-text);
}

.empty-card strong {
  font-size: 22px;
}

@media (max-width: 1180px) {
  .order-row {
    grid-template-columns: 170px 112px minmax(0, 1fr);
  }

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

@media (max-width: 980px) {
  main,
  .site-header,
  .site-footer {
    width: min(760px, calc(100% - 32px));
  }

  .site-header {
    grid-template-columns: 78px 1fr 58px;
  }

  .header-actions {
    justify-content: end;
  }

  .header-auth {
    display: none;
  }

  .mobile-product-menu .product-menu-account {
    border-top: 1px solid rgba(17, 58, 42, 0.08);
    color: var(--deep);
  }

  .detail-layout,
  .checkout-layout--payment,
  .cart-layout,
  .mypage-layout {
    grid-template-columns: 1fr;
  }

  .detail-mini-cta,
  .detail-check-strip {
    grid-template-columns: 1fr;
  }

  .checkout-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mypage-side {
    position: static;
  }
}

@media (max-width: 720px) {
  main,
  .site-footer {
    width: min(480px, calc(100% - 34px));
  }

  .site-header {
    width: min(480px, calc(100% - 24px));
    min-height: 78px;
    margin-bottom: 22px;
    padding: 0 14px;
  }

  .brand-lockup,
  .brand-lockup img {
    width: 56px;
    height: 56px;
  }

  .product-menu {
    right: 12px;
    width: min(360px, calc(100vw - 24px));
  }

  .product-menu a,
  .product-menu button {
    min-height: 58px;
  }

  .signup-detail-form,
  .member-edit-form {
    padding: 26px 18px;
  }

  .signup-field,
  .member-edit-form .signup-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signup-field > label:first-child,
  .member-edit-form .signup-field > label:first-child {
    min-height: 44px;
  }

  .signup-field input:not([type="radio"]),
  .signup-field select,
  .member-edit-form .signup-field input:not([type="radio"]),
  .member-edit-form .signup-field select {
    width: 100%;
  }

  .signup-form-actions,
  .member-edit-actions,
  .buy-panel .action-row,
  .action-row,
  .order-actions,
  .order-action-pair,
  .checkout-method-grid,
  .address-form-row-top,
  .address-form-row-bottom,
  .mypage-inline-form,
  .mypage-inline-form.address-form,
  .mypage-card-grid,
  .mypage-card-grid.three,
  .mypage-table-head,
  .mypage-table-row {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-grid.small,
  .best-grid,
  .store-product-list,
  .store-select-grid,
  .bundle-grid,
  .detail-info-grid,
  .detail-spec-grid,
  .service-grid,
  .reason-grid,
  .detail-benefits {
    grid-template-columns: 1fr;
  }

  .store-select-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .store-select-grid > *,
  .store-product-list,
  .store-notice {
    min-width: 0;
    max-width: 100%;
  }

  .product-media {
    min-height: 290px;
  }

  .product-media img,
  .product-grid.small .product-media img {
    width: min(330px, 88%);
  }

  .best-media {
    min-height: 260px;
  }

  .gallery-stage {
    min-height: 380px;
  }

  .gallery-stage img,
  .gallery-stage video {
    width: min(360px, 92%);
  }

  .option-group,
  .detail-summary-table div,
  .selected-box,
  .detail-feature-card,
  .detail-spec-table-card div,
  .cart-item,
  .order-row,
  .store-product {
    grid-template-columns: 1fr;
  }

  .option-group div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-group button {
    width: 100%;
    white-space: normal;
  }

  .cart-item-media,
  .order-product-thumb {
    width: 142px;
    height: 142px;
    justify-self: start;
  }

  .cart-item-media img,
  .order-product-thumb img {
    width: 132px;
    height: 132px;
  }

  .store-product > img:not(.chevron-img) {
    width: 132px;
    height: 132px;
  }

  .address-form-row-bottom .gold-cart-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .option-group div,
  .checkout-method-grid {
    grid-template-columns: 1fr;
  }

  .product-card h2,
  .buy-panel h1 {
    font-size: 28px;
  }

  .section-head h1,
  .page-title h1,
  .signup-form-title h1 {
    font-size: 34px;
  }
}

/* Full-spec mobile readability and commerce extensions */
:root {
  --font-xs: 15px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 22px;
  --font-xl: 28px;
}

.featured-products-section .home-section-head h1,
.review-section .home-section-head h1,
.review-section .home-section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.featured-product-grid {
  align-items: stretch;
}

.product-price-stack {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.product-price-stack span,
.detail-price-block span {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #6d756f;
  font-size: 18px;
}

.product-price-stack del,
.detail-price-block del {
  color: #9aa39d;
}

.product-price-stack b,
.detail-price-block b {
  color: #c75b2c;
  font-weight: 900;
}

.product-price-stack strong {
  color: var(--deep);
  font-size: 28px;
  line-height: 1.1;
}

.product-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  color: #526058;
  font-size: 18px;
}

.product-rating-row span {
  color: #b88721;
  font-weight: 900;
}

.product-rating-row small {
  font-size: 17px;
}

.detail-price-block {
  display: grid;
  gap: 8px;
  margin: 12px 0 8px;
}

.selected-box small {
  display: block;
  margin-top: 8px;
  color: #5c665f;
  font-size: 17px;
  font-style: normal;
}

.option-group button:disabled {
  cursor: not-allowed;
  border-color: #d8ded9;
  background: #f1f4f2;
  color: #9aa39d;
  opacity: 1;
}

.review-section {
  margin-top: 34px;
}

.review-section--detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.review-empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.review-card {
  display: grid;
  gap: 12px;
}

.review-card div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #b88721;
  font-size: 18px;
  font-weight: 900;
}

.review-card strong,
.review-empty-state strong {
  color: var(--deep);
  font-size: 22px;
}

.review-card p,
.review-empty-state span {
  color: #4d5a52;
  font-size: 18px;
  line-height: 1.6;
}

.review-card small {
  color: #717b75;
  font-size: 16px;
}

.review-empty-state {
  display: grid;
  min-height: 180px;
  align-content: center;
  gap: 10px;
}

.signup-inline-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.signup-inline-control input {
  min-width: 0;
}

.signup-inline-control .secondary-btn,
.address-search-btn {
  min-height: 56px;
  padding-inline: 20px;
  font-size: 18px;
  white-space: nowrap;
}

.signup-check-message,
.guest-order-privacy,
.order-privacy-note {
  display: block;
  color: #5d6b62;
  font-size: 17px;
  line-height: 1.5;
}

.signup-check-message[data-status="available"] {
  color: #116b45;
  font-weight: 800;
}

.signup-check-message[data-status="taken"],
.signup-check-message[data-status="error"] {
  color: #b6422e;
  font-weight: 800;
}

.guest-order-privacy {
  margin: 2px 0 10px;
}

.order-privacy-note {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
}

.address-form-row-top {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(160px, 0.6fr) auto;
}

.admin-order-detail-form select,
.admin-product-register-form input,
.admin-product-register-form select {
  min-height: 52px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .review-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .featured-product-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .featured-product-grid .product-card,
  .product-grid .product-card {
    min-width: 0;
  }

  .featured-product-grid .product-media,
  .product-grid .product-media {
    min-height: 190px;
  }

  .featured-product-grid .product-media img,
  .product-grid .product-media img {
    width: min(190px, 100%);
    max-width: 100%;
    max-height: 190px;
  }

  .featured-product-grid .product-body,
  .product-grid .product-body {
    padding: 18px 14px 16px;
  }

  .featured-product-grid .product-card h2,
  .product-grid .product-card h2 {
    font-size: 20px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .featured-product-grid .product-card p,
  .product-grid .product-card p,
  .featured-product-grid .product-card dl,
  .product-grid .product-card dl {
    font-size: 18px;
  }

  .product-price-stack strong {
    font-size: 24px;
  }

  .product-price-stack span,
  .product-rating-row {
    font-size: 18px;
  }

  .product-rating-row small {
    font-size: 18px;
  }

  .product-bottom {
    gap: 10px;
  }

  .card-cart-btn {
    min-height: 54px;
    padding: 0 12px;
    font-size: 18px;
  }

  .review-section--detail,
  .review-card,
  .review-empty-state {
    padding: 22px 18px;
  }

  .signup-inline-control,
  .address-form-row-top {
    grid-template-columns: 1fr;
  }

  .signup-inline-control .secondary-btn,
  .address-search-btn {
    width: 100%;
  }
}

/* Product design polish pass: clearer hierarchy, restrained cards, fixed grade frames */
.home-section.panel-card,
.home-filter.panel-card,
.buy-panel,
.product-card,
.signup-detail-form.panel-card,
.login-choice-card,
.checkout-main-card,
.summary-panel {
  border: 1px solid rgba(17, 58, 42, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px -34px rgba(6, 20, 14, 0.28);
}

.signup-detail-form.panel-card,
.login-choice-card {
  border: 0;
  box-shadow: none;
}

.home-section-head,
.home-system-head {
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 24px;
}

.home-section-head p,
.home-system-head p {
  color: #5f6e65;
  font-size: 18px;
  line-height: 1.55;
}

.home-system-head h2,
.home-section-head h1,
.home-section-head h2 {
  letter-spacing: 0;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 58, 42, 0.24);
  box-shadow: 0 24px 48px -36px rgba(6, 20, 14, 0.4);
}

.product-body h2,
.buy-panel h1,
.signup-form-title h1,
.page-title h1 {
  letter-spacing: 0;
  word-break: keep-all;
}

.product-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.product-bottom {
  margin-top: auto;
}

.product-price-stack,
.detail-price-block {
  border-radius: 8px;
  background: #F7FAF6;
  padding: 14px 16px;
}

.gold-cart-btn,
.primary-btn,
.secondary-btn,
.guest-order-submit-btn,
.id-signup-btn {
  border-radius: 8px;
  letter-spacing: 0;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 181, 68, 0.52);
  outline-offset: 3px;
}

.footer-contact span {
  font-weight: 800;
}

.home-grade-system-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-grade-system-card {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 20px;
  min-height: 168px;
  border-radius: 8px;
  padding: 22px;
}

.home-grade-system-card::after {
  content: none;
}

.home-grade-system-card.strong {
  background: linear-gradient(135deg, #063821 0%, #0B5B3D 100%);
}

.home-grade-system-card.soft {
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF8F1 100%);
}

.home-grade-system-card.warm {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF6E4 100%);
}

.home-grade-letter {
  overflow: hidden;
  width: 96px;
  height: 104px;
  border-radius: 8px;
  padding: 8px;
}

.home-grade-letter img,
.home-grade-system-card .home-grade-letter img {
  width: 82%;
  height: 82%;
  max-width: 100%;
  max-height: 100%;
  transform: none;
  object-fit: contain;
}

.home-grade-system-card small {
  margin-bottom: 10px;
  font-size: 17px;
}

.home-grade-system-card small span {
  border-radius: 8px;
}

.home-grade-system-card small b {
  color: #0B5B3D;
  font-size: 18px;
  letter-spacing: 2px;
}

.home-grade-system-card.strong small b {
  color: #FFFFFF;
}

.home-grade-system-card h3 {
  font-size: 22px;
  line-height: 1.28;
}

.home-grade-system-card p {
  color: #4E5D55;
  font-size: 18px;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .home-grade-system-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-grade-system-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    min-height: 148px;
    padding: 18px;
  }

  .home-grade-letter {
    width: 78px;
    height: 86px;
    padding: 7px;
  }

  .home-grade-system-card h3 {
    font-size: 20px;
  }

  .home-grade-system-card p,
  .home-grade-system-card small {
    font-size: 18px;
  }
}

/* Mobile product-card rebalancing after large-accessibility pass */
@media (max-width: 720px) {
  .featured-product-grid,
  .product-grid,
  .product-grid.small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .featured-product-grid .product-card,
  .product-grid .product-card,
  .product-grid.small .product-card {
    border-radius: 8px;
    box-shadow: 0 12px 24px -22px rgba(6, 20, 14, 0.32);
  }

  .featured-product-grid .product-media,
  .product-grid .product-media,
  .product-grid.small .product-media {
    min-height: 132px;
    aspect-ratio: 1.18;
  }

  .featured-product-grid .product-media img,
  .product-grid .product-media img,
  .product-grid.small .product-media img {
    width: min(132px, 84%);
    max-width: 84%;
    max-height: 120px;
  }

  .featured-product-grid .product-body,
  .product-grid .product-body,
  .product-grid.small .product-body {
    padding: 12px 10px 12px;
  }

  .featured-product-grid .product-top,
  .product-grid .product-top,
  .product-grid.small .product-top {
    align-items: center;
    gap: 6px;
  }

  .featured-product-grid .product-top span,
  .product-grid .product-top span,
  .product-grid.small .product-top span {
    min-width: 0;
    color: #0B3D2E;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .featured-product-grid .product-top b,
  .product-grid .product-top b,
  .product-grid.small .product-top b {
    flex: 0 0 auto;
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 24px;
  }

  .featured-product-grid .product-card h2,
  .product-grid .product-card h2,
  .product-grid.small .product-card h2 {
    display: -webkit-box;
    min-height: 42px;
    margin-top: 9px;
    color: #121816;
    font-size: 17px;
    line-height: 1.22;
    overflow: hidden;
    overflow-wrap: normal;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-product-grid .product-card p,
  .product-grid .product-card p,
  .product-grid.small .product-card p {
    display: -webkit-box;
    min-height: 42px;
    margin-top: 7px;
    color: #6D756F;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.48;
    overflow: hidden;
    overflow-wrap: normal;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-product-grid .product-price-stack,
  .product-grid .product-price-stack,
  .product-grid.small .product-price-stack {
    gap: 4px;
    margin: 9px 0 7px;
    padding: 8px 9px;
  }

  .featured-product-grid .product-price-stack span,
  .product-grid .product-price-stack span,
  .product-grid.small .product-price-stack span {
    gap: 6px;
    font-size: 13px;
    line-height: 1.25;
  }

  .featured-product-grid .product-price-stack strong,
  .product-grid .product-price-stack strong,
  .product-grid.small .product-price-stack strong {
    font-size: 19px;
    line-height: 1.16;
  }

  .featured-product-grid .product-rating-row,
  .product-grid .product-rating-row,
  .product-grid.small .product-rating-row {
    gap: 5px;
    min-height: auto;
    font-size: 13px;
    line-height: 1.25;
  }

  .featured-product-grid .product-rating-row small,
  .product-grid .product-rating-row small,
  .product-grid.small .product-rating-row small {
    flex-basis: 100%;
    color: #6D756F;
    font-size: 13px;
    line-height: 1.35;
  }

  .featured-product-grid .product-card dl,
  .product-grid .product-card dl,
  .product-grid.small .product-card dl {
    display: none;
  }

  .featured-product-grid .product-bottom,
  .product-grid .product-bottom,
  .product-grid.small .product-bottom {
    gap: 8px;
    margin-top: 10px;
  }

  .featured-product-grid .product-bottom strong,
  .product-grid .product-bottom strong,
  .product-grid.small .product-bottom strong {
    display: block;
    min-height: 20px;
    color: #141917;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .featured-product-grid .card-cart-btn,
  .product-grid .card-cart-btn,
  .product-grid.small .card-cart-btn {
    min-height: 44px;
    padding: 0 8px;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
  }

  .featured-product-grid .card-cart-btn svg,
  .product-grid .card-cart-btn svg,
  .product-grid.small .card-cart-btn svg,
  .featured-product-grid .card-cart-btn img,
  .product-grid .card-cart-btn img,
  .product-grid.small .card-cart-btn img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 1180px) {
  .store-showcase {
    grid-template-columns: 1fr;
  }

  .store-showcase-copy {
    min-height: auto;
  }

  .store-photo-grid {
    min-height: 560px;
  }

  .store-visit-band,
  .store-prep-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .store-showcase {
    gap: 14px;
    border-radius: 18px;
    padding: 12px;
  }

  .store-showcase-copy {
    border-radius: 16px;
    padding: 26px 18px 20px;
  }

  .store-eyebrow,
  .store-prep-panel > div > p {
    font-size: 13px;
  }

  .store-showcase-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .store-showcase-copy > p:not(.store-eyebrow) {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.54;
  }

  .store-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .store-hero-actions .primary-btn,
  .store-hero-actions .secondary-btn {
    min-height: 54px;
    font-size: 17px;
  }

  .store-quick-facts {
    gap: 8px;
    margin-top: 24px;
  }

  .store-quick-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 13px 14px;
  }

  .store-quick-facts dt {
    font-size: 13px;
  }

  .store-quick-facts dd {
    font-size: 16px;
  }

  .store-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    min-height: 0;
  }

  .store-photo-tile,
  .store-photo-tile-lead {
    grid-row: auto;
    min-height: 210px;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .store-photo-tile-lead {
    min-height: 430px;
    aspect-ratio: 3 / 4;
  }

  .store-photo-tile figcaption {
    padding: 42px 16px 16px;
  }

  .store-photo-tile figcaption strong {
    font-size: 18px;
  }

  .store-photo-tile figcaption small {
    font-size: 13px;
  }

  .store-visit-band {
    gap: 10px;
    margin-top: 18px;
  }

  .store-visit-band article {
    min-height: 0;
    padding: 18px;
  }

  .store-visit-band h2,
  .store-prep-panel h2 {
    font-size: 24px;
  }

  .store-visit-band h3 {
    font-size: 20px;
  }

  .store-visit-band p,
  .store-prep-panel li span {
    font-size: 16px;
  }

  .store-grid-compact article {
    min-height: 0;
  }

  .store-grid-compact h2 {
    font-size: 21px;
  }

  .store-grid-compact p {
    font-size: 17px;
  }

  .store-prep-panel {
    gap: 18px;
    margin-top: 18px;
    border-radius: 18px;
    padding: 18px;
  }

  .store-prep-panel ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-prep-panel li {
    min-height: 0;
    padding: 18px;
  }

  .store-prep-panel li strong {
    font-size: 20px;
  }

  .store-dark-cta {
    padding: 26px 20px;
  }
}

@media (max-width: 390px) {
  .featured-product-grid,
  .product-grid,
  .product-grid.small {
    gap: 8px;
  }

  .featured-product-grid .product-card h2,
  .product-grid .product-card h2,
  .product-grid.small .product-card h2 {
    font-size: 16px;
  }

  .featured-product-grid .product-price-stack strong,
  .product-grid .product-price-stack strong,
  .product-grid.small .product-price-stack strong {
    font-size: 18px;
  }
}
