@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%);
  --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;
}

.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));
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

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

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

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

.login-field {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 0 10px;
  box-shadow: inset 0 -1px 0 rgba(6, 20, 14, 0.06);
}

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

.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: 1px solid rgba(17, 58, 42, 0.18);
  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%);
  box-shadow: 0 18px 36px -30px rgba(17, 58, 42, 0.42);
}

.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);
  border: 1px solid rgba(17, 58, 42, 0.14);
}

.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 {
  border-bottom: 1px dashed rgba(17, 58, 42, 0.2);
  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 {
  border-top: 1px dashed rgba(17, 58, 42, 0.2);
  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: 1px solid rgba(178, 130, 36, 0.34);
  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: 1px;
  background: var(--line-soft);
}

.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;
  border: 1px solid rgba(3, 52, 37, 0.92);
  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;
}

.signup-form-actions button {
  min-height: 52px;
  font-size: 15px;
}

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

.mobile-menu {
  display: none;
}

.mobile-menu span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--fairway);
}

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

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

.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),
    .mobile-menu,
    .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-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 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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

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

.home-grade-system-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 172px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 26px 24px;
}

.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: rgba(255, 255, 255, 0.76);
}

.home-grade-system-card.warm {
  border-color: rgba(231, 216, 184, 0.9);
  background: rgba(247, 246, 239, 0.9);
}

.home-grade-letter {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(220, 229, 221, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--section-title-color);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

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

.home-grade-system-card p {
  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 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

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

.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 {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 108px;
  border-radius: 12px;
  background: var(--gradient-deep);
  color: #FFFFFF;
  padding: 20px;
}

.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: 0;
  background: transparent;
  box-shadow: none;
}

.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 {
  width: 40px;
  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;
}

.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 {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 10px;
  background: var(--mint);
}

.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: 0;
  font-family: var(--font-pretendard);
}

.admin-auth-main {
  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;
}

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

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

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

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

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

  .hero-slide {
    aspect-ratio: 390 / 520;
  }

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

  .hero-slide {
    min-height: 520px;
  }

  .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: 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: 74px minmax(0, 1fr);
    gap: 16px;
    min-height: 126px;
    padding: 18px;
  }

  .home-grade-letter {
    width: 62px;
    height: 62px;
    font-size: 32px;
  }

  .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 {
    width: 32px;
    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;
}

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

@media (max-width: 1120px) {
  .customer-service-hero {
    grid-template-columns: 1fr;
  }

  .customer-service-summary {
    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;
  }

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

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