:root {
  --forest: #f58220;
  --forest-dark: #b95614;
  --navy: #382116;
  --brass: #4e7a3c;
  --coral: #ffb23e;
  --ink: #2b211b;
  --muted: #756258;
  --line: #efd6c3;
  --surface: #fff7ef;
  --soft: #fff0df;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(56, 33, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf5;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.6;
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 12px;
  color: var(--ink);
}

textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 130, 32, 0.28);
  outline-offset: 2px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only,
.sr-only-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.96);
  backdrop-filter: blur(12px);
}

.strip-inner,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.strip-inner {
  min-height: 40px;
  padding: 8px 0;
  font-size: 0.9rem;
}

.strip-inner p {
  margin: 0;
  font-weight: 700;
}

.strip-inner div,
.header-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.strip-inner a {
  color: rgba(255, 255, 255, 0.9);
}

.header-main {
  min-height: 82px;
  padding: 16px 0;
}

.brand-link,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.brand-link small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.logo-box {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(56, 33, 22, 0.2);
  border-radius: 8px;
  background: var(--forest);
  color: var(--navy);
  font-weight: 900;
}

.brand-logo-img {
  display: block;
  width: 48px;
  height: 100px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(56, 33, 22, 0.12);
}

.footer-logo-img {
  display: block;
  width: 46px;
  height: 96px;
  max-height: 96px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-brand strong {
  color: var(--navy);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
}

.footer-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.site-footer .footer-brand-copy small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border-radius: 4px;
  background: var(--navy);
  padding: 6px 10px;
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
}

.search-form {
  flex: 0 1 360px;
  margin-left: auto;
}

.search-form label {
  position: relative;
  display: block;
}

.search-form label::before,
.search-form label::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.search-form label::before {
  top: 50%;
  right: 18px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  opacity: 0.68;
  transform: translateY(-58%);
}

.search-form label::after {
  top: calc(50% + 6px);
  right: 13px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  opacity: 0.68;
  transform: rotate(45deg);
  transform-origin: center;
}

.mobile-header-search {
  display: none;
}

.main-nav-search {
  flex: 1 1 360px;
  min-width: 320px;
  max-width: 460px;
  margin-left: auto;
}

.main-nav-search input {
  min-height: 40px;
}

.search-form input {
  background: var(--surface);
  padding-right: 44px;
  text-align: right;
}

.ghost-link,
.cart-link,
.main-nav > a,
.main-nav-item > a,
.main-nav-all-toggle {
  min-height: 40px;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.ghost-link:hover,
.main-nav > a:hover,
.main-nav > a.active,
.main-nav-item > a:hover,
.main-nav-item > a.active,
.main-nav-all-toggle:hover,
.main-nav-all-toggle.active,
.main-nav-all-toggle[aria-expanded="true"] {
  background: var(--surface);
  color: var(--forest);
}

.join-cta {
  background: var(--forest);
  color: var(--white);
}

.join-cta:hover {
  background: var(--forest-dark);
  color: var(--white);
}

.header-logout-form {
  margin: 0;
}

.header-logout-form .logout-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
}

.member-mini-profile {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: max-content;
  min-height: 42px;
  border: 1px solid rgba(56, 33, 22, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 9px 12px;
  color: var(--ink);
}

.member-mini-profile:hover {
  border-color: rgba(245, 130, 32, 0.32);
  background: var(--surface);
}

.member-mini-copy {
  display: grid;
  gap: 1px;
  min-width: max-content;
}

.member-mini-copy strong {
  overflow: visible;
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.1;
  font-weight: 900;
  text-overflow: clip;
  white-space: nowrap;
}

.point-badge-link {
  display: inline-grid;
  min-height: 42px;
  align-content: center;
  gap: 1px;
  border: 1px solid rgba(245, 130, 32, 0.25);
  border-radius: 8px;
  background: #fff7ef;
  padding: 7px 12px;
  color: var(--ink);
}

.point-badge-link span,
.mobile-point-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
}

.point-badge-link strong,
.mobile-point-summary strong {
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 900;
}

.mobile-member-summary,
.mobile-point-summary {
  display: none;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
}

.cart-link b {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--brass);
  color: var(--white);
  font-size: 0.75rem;
}

.main-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  overflow: visible;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.main-nav > a,
.main-nav-all-toggle,
.main-nav-item {
  flex: 0 0 auto;
}

.main-nav-all-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.all-products-icon {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.all-products-icon::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
  content: "";
}

.main-nav-item {
  position: relative;
  display: flex;
}

.main-nav-item > a {
  display: inline-flex;
  align-items: center;
}

.has-flyout > a::after {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 0.62;
}

.nav-flyout {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  display: none;
  width: max-content;
  min-width: 330px;
  border: 1px solid rgba(239, 214, 195, 0.95);
  background: var(--white);
  box-shadow: 0 18px 34px rgba(56, 33, 22, 0.16);
}

.main-nav-item:hover > .nav-flyout,
.main-nav-item:focus-within > .nav-flyout {
  display: block;
}

.main-nav-item:nth-last-child(-n+3) .nav-flyout {
  right: 0;
  left: auto;
}

.nav-flyout-tabs,
.nav-flyout-panel {
  margin: 0;
  list-style: none;
}

.nav-flyout-tabs {
  position: relative;
  display: grid;
  min-width: 330px;
  min-height: 100%;
  grid-template-columns: 160px minmax(176px, max-content);
  padding: 0;
  background: var(--white);
}

.nav-flyout-tabs > li {
  display: contents;
  width: 160px;
}

.nav-flyout-tab,
.nav-flyout-panel a {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 11px 18px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.nav-flyout-tab {
  grid-column: 1;
  font-weight: 800;
}

.nav-flyout-tabs > li:first-child > .nav-flyout-tab,
.nav-flyout-tabs > li:hover > .nav-flyout-tab,
.nav-flyout-tabs > li:focus-within > .nav-flyout-tab {
  background: var(--forest);
  color: var(--white);
}

.nav-flyout-panel {
  grid-column: 2;
  grid-row: 1 / span 20;
  display: none;
  min-width: 176px;
  border-left: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  align-self: stretch;
}

.nav-flyout-tabs > li:first-child > .nav-flyout-panel {
  display: block;
}

.nav-flyout-tabs:hover > li > .nav-flyout-panel {
  display: none;
}

.nav-flyout-tabs > li:hover > .nav-flyout-panel,
.nav-flyout-tabs > li:focus-within > .nav-flyout-panel {
  display: block;
}

.nav-flyout-panel a:hover,
.nav-flyout-panel a:focus {
  background: var(--surface);
  color: var(--forest-dark);
}

.all-products-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 90;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 42px rgba(56, 33, 22, 0.16);
}

.all-products-mega-inner {
  display: grid;
  max-height: min(560px, calc(100vh - 150px));
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 24px 38px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 34px;
  padding-bottom: 34px;
}

.all-products-column {
  min-width: 0;
}

.all-products-column h2 {
  margin: 0 0 9px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.all-products-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-products-column a {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.42;
  word-break: keep-all;
}

.all-products-column li a {
  color: var(--muted);
}

.all-products-column a:hover,
.all-products-column a:focus {
  color: var(--forest-dark);
}

.site-header.all-products-open .nav-flyout {
  display: none !important;
}

.mobile-bottom-nav {
  display: none;
}

.visual-link {
  display: block;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 130, 32, 0.16), transparent 28%),
    linear-gradient(180deg, #fff2e2 0%, #fffaf5 100%);
}

.hero-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 52px 0;
}

.eyebrow-pill {
  display: inline-flex;
  margin: 0 0 18px;
  border-radius: 8px;
  background: var(--white);
  padding: 9px 12px;
  color: var(--forest);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.primary:hover {
  background: var(--forest-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.button.current,
.button:disabled {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  cursor: default;
}

.button.current:hover,
.button:disabled:hover {
  transform: none;
}

.button.danger {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.14);
  color: #ffd2d2;
}

.button.danger:hover {
  border-color: rgba(239, 68, 68, 0.72);
  background: rgba(239, 68, 68, 0.22);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--forest);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: stretch;
  gap: 16px;
}

.stack {
  display: grid;
  gap: 16px;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(56, 33, 22, 0.12);
  border-radius: 10px;
  background: linear-gradient(140deg, #fff0df, #ffffff);
  box-shadow: var(--shadow);
}

.product-visual.compact {
  min-height: 142px;
}

.product-visual.posture {
  background: linear-gradient(140deg, #fff0df, #ffffff);
}

.product-visual.sets,
.product-visual.education {
  background: linear-gradient(140deg, #fff6eb, #ffffff);
}

.product-visual.rental {
  background: linear-gradient(140deg, #fff0df, #ffffff);
}

.product-visual.partner,
.product-visual.promo {
  background: linear-gradient(140deg, #fff2e8, #ffffff);
}

.product-visual div {
  width: min(78%, 260px);
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
  text-align: center;
}

.product-visual span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-visual strong {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 18px auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 900;
}

.product-visual p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.real-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: var(--white);
}

.hero .real-product-image {
  position: relative;
  z-index: 1;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
}

.hero .product-visual {
  border-color: rgba(245, 130, 32, 0.32);
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 130, 32, 0.2), transparent 38%),
    linear-gradient(145deg, #fff8f1 0%, #ffffff 48%, #ffe9d2 100%);
  box-shadow: 0 20px 46px rgba(117, 58, 25, 0.14);
}

.hero .product-visual::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.hero .visual-grid > .product-visual .real-product-image {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.hero .product-visual.compact .real-product-image {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  padding: 0;
  object-fit: contain;
}

.hero .visual-grid > .product-visual {
  min-height: 300px;
  align-self: stretch;
  aspect-ratio: auto;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  border: 1px solid rgba(245, 130, 32, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff3e8 100%);
  padding: 14px;
  box-shadow: 0 16px 34px rgba(117, 58, 25, 0.1);
}

.quick-points span {
  text-align: center;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.home-point-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid rgba(245, 130, 32, 0.24);
  border-radius: 8px;
  background: #fff7ef;
  padding: 10px 13px;
  color: var(--ink);
}

.home-point-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.home-point-strip strong {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 900;
}

.page-section {
  padding: 64px 0;
}

.no-pad-bottom {
  padding-bottom: 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header p {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-header h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 900;
}

.section-header span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.company-story .section-header,
.company-service-section .section-header {
  max-width: 920px;
}

.company-story .section-header h1,
.company-service-section .section-header h1 {
  font-size: clamp(1.68rem, 2.35vw, 2.35rem);
  line-height: 1.28;
  word-break: keep-all;
}

.company-story .section-header span,
.company-service-section .section-header span {
  max-width: 920px;
  font-size: 0.94rem;
  line-height: 1.68;
  word-break: keep-all;
  text-wrap: pretty;
}

.category-grid,
.trust-grid,
.faq-grid,
.benefit-grid,
.review-grid,
.admin-stats {
  display: grid;
  gap: 18px;
}

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

.category-card,
.panel,
.feature,
.process-panel,
.cta-panel,
.filter-panel,
.product-card,
.empty-box,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.category-card {
  min-height: 176px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.category-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface);
}

.category-card span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.category-card.navy span {
  background: var(--navy);
}

.category-card.brass span {
  background: var(--brass);
}

.category-card.coral span {
  background: var(--coral);
}

.category-card strong,
.panel strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.category-card p,
.panel p,
.feature p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.category-card p {
  white-space: nowrap;
  line-height: 1.45;
}

.band,
.soft-band {
  background: var(--surface);
}

.split-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.text-link {
  color: var(--forest);
  font-weight: 900;
}

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

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

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

.product-card {
  padding: 12px;
  box-shadow: 0 6px 18px rgba(23, 32, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card .product-visual {
  min-height: 210px;
  box-shadow: none;
}

.product-card-body {
  padding: 16px 4px 4px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badges span,
.tone {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 900;
}

.badges span {
  background: var(--surface);
  color: var(--muted);
}

.tone.forest {
  background: rgba(15, 95, 80, 0.1);
  color: var(--forest);
}

.tone.navy {
  background: rgba(30, 58, 95, 0.1);
  color: var(--navy);
}

.tone.brass {
  background: rgba(181, 130, 53, 0.15);
  color: #7a561f;
}

.tone.coral {
  background: rgba(215, 96, 77, 0.12);
  color: var(--coral);
}

.product-card h2 {
  min-height: 52px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 900;
}

.product-card-body > p {
  min-height: 50px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-row,
.detail-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.price-row {
  margin: 16px 0;
}

del {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-row strong,
.detail-price strong {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.two-feature,
.detail-grid,
.detail-info-grid,
.two-col-content,
.checkout-grid {
  display: grid;
  gap: 28px;
}

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

.feature,
.panel,
.process-panel,
.cta-panel {
  padding: 26px;
}

.dark-feature {
  background: var(--forest);
  color: var(--white);
}

.dark-feature p {
  color: rgba(255, 255, 255, 0.86);
}

.membership-guide-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #f58220;
}

.membership-guide-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.membership-guide-card h2 {
  line-height: 1.18;
  white-space: nowrap;
}

.membership-guide-card p {
  max-width: 100%;
  margin: 16px 0 0;
  font-size: 0.93rem;
  line-height: 1.55;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
}

.membership-guide-card .button-row {
  margin-top: 16px;
}

.membership-guide-image {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 16px;
  display: block;
  width: min(320px, 52%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform: translateX(-50%);
}

.feature h2,
.process-panel h2,
.cta-panel h2,
.panel h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 900;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.mini-list div {
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.mini-list strong,
.mini-list span {
  display: block;
}

.mini-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.trust-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid.four {
  margin-top: 34px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 18px;
}

.filter-panel label,
.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.empty-box {
  padding: 48px;
  text-align: center;
}

.empty-box strong {
  font-weight: 900;
}

.empty-box p {
  color: var(--muted);
}

.detail-grid {
  grid-template-columns: 0.9fr 1fr;
  align-items: start;
}

.detail-grid > .product-visual {
  min-height: 480px;
}

.detail-title {
  margin: 20px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.detail-summary {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.detail-price {
  justify-content: flex-start;
  margin: 22px 0;
}

.detail-price strong {
  font-size: 2rem;
}

.buy-panel {
  display: grid;
  gap: 18px;
}

.option-grid,
.button-grid,
.two-cols,
.radio-grid {
  display: grid;
  gap: 12px;
}

.option-grid,
.button-grid,
.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.buy-panel p,
.muted-small {
  margin: 0;
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}

.component-gallery-section {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.component-gallery-head {
  display: grid;
  max-width: 760px;
  gap: 8px;
  margin-bottom: 20px;
}

.component-gallery-head span {
  color: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.component-gallery-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.62rem;
  font-weight: 950;
  line-height: 1.25;
}

.component-gallery-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  word-break: keep-all;
}

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

.component-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(245, 130, 32, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(56, 33, 22, 0.08);
}

.component-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fffaf5 0%, #fff0df 100%);
  object-fit: contain;
}

.component-gallery-card div {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 12px;
}

.component-gallery-card span {
  width: fit-content;
  border-radius: 999px;
  background: var(--soft);
  padding: 4px 8px;
  color: var(--forest-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
}

.component-gallery-card strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.48;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.detail-info-grid {
  grid-template-columns: 1fr 320px;
  align-items: start;
  margin-top: 46px;
}

.info-stack {
  display: grid;
  gap: 18px;
}

.info-section div {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.info-section ul,
.step-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.step-list li {
  display: flex;
  gap: 10px;
}

.step-list b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.82rem;
}

.sticky-panel {
  position: sticky;
  top: 150px;
}

.reviews-panel {
  margin-top: 46px;
}

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

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

.guide-card {
  padding: 24px;
}

.guide-card h2,
.guide-contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.guide-card p,
.guide-contact p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.guide-contact {
  margin-top: 18px;
  padding: 24px;
  background: var(--soft);
}

.company-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff2e2 0%, #fffaf5 100%);
}

.company-hero-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 46px;
  align-items: center;
  padding: 56px 0;
}

.company-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.18;
  font-weight: 900;
  word-break: keep-all;
}

.company-hero-copy h1 span {
  display: block;
}

.company-hero-intro {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.86;
  word-break: keep-all;
}

.company-hero-intro span {
  display: block;
}

.company-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.company-hero-points span {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.company-hero-points strong {
  color: var(--forest-dark);
  font-size: 1rem;
  font-weight: 900;
}

.company-hero-points small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.company-hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-hero-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.company-care-map {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.company-care-center,
.company-care-map > span {
  border: 1px solid rgba(239, 214, 195, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(56, 33, 22, 0.12);
}

.company-care-center {
  display: grid;
  grid-column: 1 / -1;
  gap: 3px;
  padding: 14px;
  text-align: center;
}

.company-care-center strong {
  color: var(--forest-dark);
  font-size: 1.02rem;
  font-weight: 900;
}

.company-care-center span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.company-care-map > span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.company-story-grid,
.company-image-grid,
.company-promise-grid {
  display: grid;
  gap: 18px;
}

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

.company-story-card {
  display: grid;
  gap: 12px;
}

.company-story-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.company-story-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.38;
  word-break: keep-all;
}

.company-story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.56;
  word-break: keep-all;
  text-wrap: pretty;
}

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

.company-service-map article {
  position: relative;
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.company-service-map article:not(:last-child)::after {
  position: absolute;
  top: 32px;
  right: -18px;
  width: 18px;
  border-top: 2px solid var(--forest);
  content: "";
}

.company-service-map b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.company-service-map strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.34;
  word-break: keep-all;
}

.company-service-map p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.56;
  word-break: keep-all;
  text-wrap: pretty;
}

.company-visual-section {
  display: grid;
  gap: 24px;
}

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

.company-image-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(56, 33, 22, 0.08);
}

.company-image-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface);
}

.company-image-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.company-image-grid strong {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.34;
  word-break: keep-all;
}

.company-image-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.52;
  word-break: keep-all;
  text-wrap: pretty;
}

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

.company-promise-grid article {
  border-left: 4px solid var(--forest);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.company-promise-grid span {
  display: block;
  color: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.company-promise-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.38;
  word-break: keep-all;
}

.company-promise-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.54;
  word-break: keep-all;
  text-wrap: pretty;
}

.company-info-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.company-info-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.company-info-panel p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
  word-break: keep-all;
}

.company-info-panel dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.company-info-panel dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.company-info-panel dt {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.54;
  white-space: nowrap;
}

.company-info-panel dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.54;
  word-break: keep-all;
}

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

.privacy-summary article {
  padding: 18px;
}

.privacy-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.privacy-summary strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
}

.privacy-policy {
  padding: 32px;
}

.privacy-policy section + section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.privacy-policy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.35;
}

.privacy-policy p {
  color: var(--muted);
  line-height: 1.85;
}

.privacy-effective {
  display: inline-flex;
  margin: 0 0 18px;
  border-radius: 999px;
  background: var(--soft);
  padding: 8px 12px;
  color: var(--forest-dark) !important;
  font-size: 0.86rem;
  font-weight: 900;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.privacy-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  background: var(--white);
}

.privacy-table-wrap.compact .privacy-table {
  min-width: 720px;
}

.privacy-table th,
.privacy-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.privacy-table th {
  background: var(--soft);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
}

.privacy-table td {
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-table tbody tr:last-child td {
  border-bottom: 0;
}

.privacy-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.privacy-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.privacy-contact p {
  display: grid;
  gap: 5px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.privacy-contact strong {
  display: block;
  margin-top: 0;
  color: var(--navy);
  font-size: 0.86rem;
}

.privacy-contact span {
  color: var(--muted);
  line-height: 1.65;
}

.privacy-note {
  border-left: 4px solid var(--forest);
  background: var(--surface);
  padding: 12px 14px;
}

.link-list a {
  color: var(--forest-dark);
  font-weight: 900;
}

.review-grid article {
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.review-grid strong,
.review-grid small {
  display: block;
}

.review-grid p {
  color: var(--muted);
}

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

.process-panel {
  margin-top: 34px;
  background: var(--surface);
}

.process-panel > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.process-panel article {
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.process-panel span {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-panel strong {
  display: block;
  margin-top: 6px;
}

.cta-panel {
  margin-top: 34px;
  background: var(--ink);
  color: var(--white);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.narrow-form {
  max-width: 760px;
}

.register-form-wrap {
  max-width: 920px;
}

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

.check-row {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.check-row input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.join-shell {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.join-shell .panel {
  padding: 18px;
}

.join-manual {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 100%);
}

.join-eyebrow {
  margin: 0 0 5px !important;
  color: var(--forest);
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0;
}

.join-manual h2,
.join-panel-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.35;
}

.join-manual-copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 520px;
  text-wrap: balance;
  word-break: keep-all;
}

.join-manual-copy span {
  display: block;
}

.join-manual ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-manual li {
  display: grid;
  gap: 6px;
  justify-items: center;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 9px 10px;
  text-align: center;
}

.join-manual b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.72rem;
}

.join-manual span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}

.join-agreement,
.join-info {
  display: grid;
  gap: 12px;
}

.join-info input,
.join-info select,
.join-info textarea {
  min-height: 38px;
  padding: 0 10px;
  font-size: 0.9rem;
}

.join-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.join-field-grid label,
.captcha-row label {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.join-field-grid label > span,
.captcha-row label > span {
  min-height: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

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

.join-info > .button {
  min-height: 40px;
  margin-top: 2px;
}

.join-info > .muted-small {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 9px 10px;
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.join-all-check,
.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.join-all-check {
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  background: var(--soft);
  padding: 7px 10px;
  color: var(--forest-dark);
  font-size: 0.88rem;
}

.join-all-check input,
.agreement-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

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

.agreement-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 11px 12px;
}

.agreement-card.compact {
  align-items: center;
}

.agreement-card > a {
  min-height: 30px;
  border-radius: 8px;
  background: var(--white);
  padding: 5px 9px;
  color: var(--forest-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.agreement-card .agreement-check span {
  display: inline;
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.agreement-card .agreement-check strong {
  display: inline;
  margin: 0 4px 0 0;
  color: var(--forest-dark);
}

.agreement-copy {
  grid-column: 1 / -1;
  max-height: 76px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.agreement-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.agreement-alert {
  margin: 0;
  border-radius: 8px;
  background: rgba(215, 96, 77, 0.12);
  padding: 12px;
  color: var(--coral);
  font-weight: 900;
}

.email-check-field {
  min-width: 0;
}

.email-check-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 6px;
  align-items: stretch;
}

.email-check-control input {
  min-width: 0;
}

.email-check-control .button {
  min-height: 38px;
  width: 100%;
  padding: 0 10px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.email-check-message {
  min-height: 17px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
}

.email-check-message.success {
  color: var(--forest-dark);
}

.email-check-message.error {
  color: var(--coral);
}

.email-check-message.checking {
  color: var(--forest);
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  justify-content: stretch;
}

.captcha-row > div,
.captcha-row > label {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 130, 32, 0.14), rgba(78, 122, 60, 0.08)),
    var(--surface);
  padding: 10px;
}

.captcha-row > label {
  align-content: center;
  background: var(--surface);
}

.captcha-row > div > span,
.captcha-row label > span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.captcha-image {
  display: block;
  width: min(260px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: 32 / 11;
  border: 1px dashed rgba(56, 33, 22, 0.35);
  border-radius: 8px;
  background: var(--white);
}

.captcha-refresh {
  width: fit-content;
  min-height: 32px;
  padding: 5px 9px;
  font-size: 0.78rem;
}

.captcha-answer-input {
  min-height: 42px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Courier New", monospace;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.captcha-row small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.42;
}

.warning,
.notice {
  margin: 0;
  border-radius: 8px;
  background: #fff8eb;
  padding: 12px;
  color: #7a561f;
  font-size: 0.9rem;
  font-weight: 800;
}

.notice {
  margin-top: 24px;
}

.notice.success {
  margin-bottom: 18px;
  background: rgba(15, 95, 80, 0.1);
  color: var(--forest);
}

.notice.error {
  margin-bottom: 18px;
  background: rgba(215, 96, 77, 0.12);
  color: var(--coral);
}

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

.board-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.board-list strong {
  font-weight: 900;
}

.board-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.board-list span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.two-col-content,
.checkout-grid {
  grid-template-columns: 1fr 0.95fr;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.source-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.source-image-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(23, 32, 42, 0.06);
}

.source-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--surface);
  padding: 10px;
}

.source-image-card figcaption {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.source-image-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
}

.source-image-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.radio-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font-weight: 800;
}

.radio-grid input {
  width: auto;
  min-height: auto;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.cart-item .product-visual {
  min-height: 118px;
}

.cart-item h2 {
  margin: 0;
  font-size: 1rem;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.cart-controls input {
  width: 86px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.point-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.point-balance-card {
  display: grid;
  gap: 8px;
}

.point-balance-card > span,
.point-balance-box span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.point-balance-card > strong,
.point-balance-box strong {
  color: var(--forest);
  font-size: 2rem;
  font-weight: 900;
}

.point-balance-card p {
  margin: 0;
  color: var(--muted);
}

.point-balance-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.point-balance-box a {
  color: var(--forest);
  font-weight: 900;
}

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

.point-package-grid label,
.point-package-grid button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  cursor: pointer;
}

.point-package-grid button {
  grid-template-columns: 1fr;
  min-height: 74px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.point-package-grid button:hover,
.point-package-grid button:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(245, 130, 32, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.point-package-grid input {
  width: auto;
  min-height: auto;
  grid-row: span 2;
}

.point-package-grid strong,
.point-package-grid span {
  display: block;
}

.point-package-grid span,
.point-history span,
.point-history em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.point-charge-builder {
  display: grid;
  gap: 12px;
}

.point-charge-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: end;
  border: 1px solid rgba(245, 130, 32, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ef, #fff);
  padding: 15px 16px;
}

.point-charge-total span,
.point-charge-total small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.point-charge-total strong {
  color: var(--orange);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.point-charge-total small {
  grid-column: 1 / -1;
}

.point-charge-builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.point-charge-builder-actions [data-point-charge-submit] {
  flex: 1 1 180px;
}

.point-charge-builder-actions [data-point-charge-reset] {
  flex: 0 0 auto;
}

.point-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.session-timeout-modal[hidden] {
  display: none;
}

.session-timeout-modal {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: min(360px, calc(100vw - 32px));
}

.session-timeout-dialog {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(245, 130, 32, 0.34);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(34, 22, 15, 0.2);
  padding: 18px;
}

.session-timeout-dialog > strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.3;
}

.session-timeout-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: keep-all;
}

.session-timeout-dialog > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.session-timeout-dialog > span b {
  min-width: 2ch;
  color: var(--orange);
  font-size: 1.18rem;
}

.session-timeout-dialog form {
  margin: 0;
}

.session-timeout-dialog .button {
  width: 100%;
}

.point-history {
  display: grid;
  gap: 12px;
}

.point-request-panel {
  align-self: start;
  gap: 10px;
  padding: 20px;
}

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

.point-panel-head h2 {
  font-size: 1.1rem;
}

.point-panel-head span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.point-empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.point-empty-state strong,
.point-empty-state p {
  display: block;
  margin: 0;
}

.point-empty-state p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.point-history article {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.point-request-panel article {
  padding: 13px;
}

.point-request-panel article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status-chip.light {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.status-chip.light.approved {
  border-color: rgba(33, 111, 73, 0.22);
  background: #edf8f2;
  color: var(--forest);
}

.status-chip.light.rejected,
.status-chip.light.cancelled {
  border-color: rgba(180, 35, 24, 0.2);
  background: #fff1f0;
  color: #b42318;
}

.status-chip.light.pending {
  border-color: rgba(180, 119, 15, 0.24);
  background: #fff8e6;
  color: #9a6700;
}

.point-plus {
  color: var(--forest);
}

.point-minus {
  color: #b42318;
}

.mypage-page .section-header {
  max-width: 860px;
}

.mypage-login-panel {
  max-width: 620px;
}

.mypage-login-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.mypage-login-panel p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.mypage-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 8% 8%, rgba(245, 130, 32, 0.14), transparent 28%),
    var(--white);
}

.mypage-member-block {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.mypage-member-block h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.22;
}

.mypage-member-block p:not(.join-eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.mypage-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mypage-badge-row > span:not(.status-chip) {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.status-chip.light.active {
  border-color: rgba(245, 130, 32, 0.28);
  background: #fff7ef;
  color: var(--forest-dark);
}

.mypage-point-box {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(245, 130, 32, 0.24);
  border-radius: 8px;
  background: #fff7ef;
  padding: 18px;
}

.mypage-point-box span,
.mypage-stat-card span,
.mypage-card-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.mypage-point-box strong {
  color: var(--forest);
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 900;
}

.mypage-account-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin-bottom: 18px;
}

.mypage-account-strip > div {
  display: grid;
  align-content: center;
  min-height: 104px;
  background: var(--white);
  padding: 18px;
}

.mypage-account-strip span,
.mypage-account-strip em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.mypage-account-strip strong {
  display: block;
  overflow: hidden;
  margin: 4px 0 5px;
  color: var(--navy);
  font-size: 1.26rem;
  line-height: 1.18;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.mypage-stat-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.mypage-stat-card strong {
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.2;
  font-weight: 900;
}

.mypage-stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  word-break: keep-all;
}

.mypage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.mypage-main-col,
.mypage-side-col,
.mypage-card,
.mypage-order-list,
.mypage-activity-list {
  display: grid;
  gap: 14px;
}

.mypage-card {
  padding: 20px;
}

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

.mypage-card-head h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.35;
}

.mypage-card-head > a {
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.mypage-action-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mypage-action-grid a {
  display: grid;
  gap: 8px;
  min-height: 104px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px 12px;
}

.mypage-action-grid strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.mypage-action-grid span,
.mypage-info-list dd,
.mypage-activity-list span,
.mypage-activity-list em,
.mypage-order-card span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mypage-action-grid span {
  display: block;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mypage-order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.mypage-order-card div {
  display: grid;
  gap: 4px;
}

.mypage-order-card div:last-child {
  justify-items: end;
}

.mypage-order-card strong,
.mypage-order-card em {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.mypage-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mypage-info-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
}

.mypage-info-list dt {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.mypage-info-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.mypage-referral-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 126, 22, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 126, 22, 0.08), rgba(255, 255, 255, 0.9));
  padding: 14px;
}

.mypage-referral-card > div {
  display: grid;
  gap: 4px;
}

.mypage-referral-card span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
}

.mypage-referral-card strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}

.mypage-referral-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mypage-referral-card label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.mypage-referral-card input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0 12px;
  text-transform: uppercase;
}

.mypage-referral-card .button {
  width: 100%;
  justify-content: center;
}

.mypage-referral-card.is-complete {
  background: var(--surface);
}

.mypage-referral-card.is-complete b {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 126, 22, 0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.mypage-logout-form {
  margin-top: 4px;
}

.mypage-activity-list article {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.mypage-activity-list article:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.mypage-activity-list em {
  font-style: normal;
}

.mypage-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.mypage-empty.compact {
  padding: 14px;
}

.mypage-empty strong,
.mypage-empty p {
  display: block;
  margin: 0;
}

.mypage-empty p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.points-body .site-footer {
  display: none;
}

.points-body .mobile-bottom-nav {
  display: none;
}

.points-body .mobile-point-summary {
  display: none;
}

.points-body .page-section {
  display: grid;
  align-content: start;
  min-height: calc(100dvh - 130px);
  padding: 32px 0 24px;
}

.points-body .section-header {
  margin-bottom: 18px;
}

.points-body .section-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.points-body .section-header span {
  max-width: 520px;
  margin-top: 8px;
  line-height: 1.55;
}

.points-body .panel {
  box-shadow: none;
}

.points-body .point-login-panel {
  max-width: 560px;
  padding: 22px;
}

.points-body .point-login-panel p {
  margin: 8px 0 14px;
}

.points-body .point-dashboard {
  gap: 10px;
  margin-bottom: 10px;
}

.points-body .point-balance-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 12px;
  min-height: 0;
  padding: 10px 14px;
}

.points-body .point-balance-card > span {
  font-size: 0.84rem;
}

.points-body .point-balance-card > strong {
  font-size: 1.28rem;
  text-align: right;
}

.points-body .point-balance-card p {
  display: none;
}

.points-body .point-page-grid {
  gap: 16px;
}

.points-body .point-page-grid > form,
.points-body .point-request-panel,
.points-body .point-history {
  padding: 18px;
}

.points-body .point-page-grid > form {
  gap: 12px;
}

.points-body .point-package-grid {
  gap: 8px;
}

.points-body .point-package-grid label,
.points-body .point-package-grid button {
  padding: 10px 11px;
}

.points-body .point-package-grid strong {
  font-size: 0.98rem;
}

.points-body .point-package-grid span {
  font-size: 0.78rem;
}

.points-body .point-history article {
  padding: 10px;
}

.points-body .point-history:not(.point-request-panel) {
  margin-top: 14px;
}

.point-more-note {
  margin: -2px 0 0;
  text-align: right;
}

.point-transaction-panel {
  gap: 10px;
}

.point-transaction-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.point-transaction-panel summary::-webkit-details-marker {
  display: none;
}

.point-transaction-panel summary::after {
  content: '+';
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--forest);
  font-weight: 900;
}

.point-transaction-panel[open] summary::after {
  content: '-';
}

.point-transaction-panel summary strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: #eef1f4;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(190px, 0.55fr) minmax(170px, 0.48fr);
  gap: 52px;
  padding: 48px 0;
}

.footer-grid > section:not(.footer-business) {
  padding-top: 76px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p,
.site-footer small,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-business {
  min-width: 0;
}

.footer-business-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-business-info div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  align-items: start;
}

.footer-business-info .footer-business-wide {
  grid-template-columns: 118px minmax(0, 1fr);
}

.footer-business-info dt {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.footer-business-info dd {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.footer-business small {
  display: block;
}

.footer-phone {
  display: block;
  color: var(--forest);
  font-size: 1.8rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.admin-body {
  background: #111827;
}

.admin-shell {
  min-height: 680px;
  padding: 48px 0;
  color: var(--white);
}

.admin-shell > .container {
  width: min(1600px, calc(100% - 32px));
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-nav a {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
}

.admin-eyebrow {
  margin: 34px 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.admin-shell h1 {
  margin: 24px 0;
  font-size: 2.4rem;
}

.admin-stats {
  grid-template-columns: repeat(4, 1fr);
}

.admin-stats article,
.admin-table article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.admin-stats span,
.admin-table span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.admin-table {
  display: grid;
  gap: 12px;
}

.admin-search,
.admin-member-layout,
.admin-form-grid {
  display: grid;
  gap: 16px;
}

.admin-search {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.admin-search label,
.admin-member-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 900;
}

.admin-member-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  align-items: start;
}

.admin-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.admin-unlock-panel {
  max-width: 560px;
}

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

.admin-panel-head strong {
  font-size: 1.12rem;
  font-weight: 900;
}

.admin-panel-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.admin-member-list {
  display: grid;
  gap: 10px;
  max-height: 720px;
  overflow: auto;
  padding-right: 4px;
}

.admin-member-list a {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.admin-member-list a.active,
.admin-member-list a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.admin-member-list strong {
  color: var(--white);
  font-weight: 900;
}

.admin-member-list small,
.admin-member-list span,
.admin-member-list em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-style: normal;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid .full {
  grid-column: 1 / -1;
}

.admin-form-subtitle {
  margin: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.admin-member-form input,
.admin-member-form select,
.admin-member-form textarea,
.admin-search input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.94);
}

.admin-member-form .static-field strong {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  color: var(--white);
  font-weight: 900;
}

.member-admin-search {
  align-items: end;
  margin-bottom: 12px;
  padding: 12px;
}

.member-admin-search label {
  gap: 4px;
  font-size: 0.78rem;
}

.member-admin-search input {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 0.82rem;
}

.member-admin-search .button {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.82rem;
}

.admin-member-edit-form .admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
}

.admin-member-edit-form label {
  gap: 4px;
  font-size: 0.78rem;
}

.admin-member-edit-form input,
.admin-member-edit-form select,
.admin-member-edit-form textarea {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.admin-member-edit-form textarea {
  min-height: 78px;
}

.admin-member-edit-form .static-field strong {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.admin-member-edit-form .admin-form-actions {
  margin-top: 12px;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.member-status-menu {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.member-status-menu > strong {
  color: var(--white);
  font-weight: 900;
}

.member-status-menu > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-status-menu form {
  margin: 0;
}

.member-role-menu {
  background: rgba(46, 204, 113, 0.08);
}

.manager-nav-logout {
  margin: 0;
}

.manager-nav-logout .button {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

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

.manager-profile-panel form {
  margin: 0;
}

.manager-login-info-panel {
  align-items: start;
}

.manager-login-info-main {
  min-width: 0;
}

.manager-login-info-panel .admin-panel-head {
  margin-bottom: 12px;
}

.manager-login-info-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 8px;
  margin: 0;
}

.manager-login-info-grid div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  padding: 9px 10px;
}

.manager-login-info-grid dt {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
}

.manager-login-info-grid dd {
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.manager-login-panel .narrow-form {
  max-width: 520px;
}

.manager-permission-panel {
  margin-bottom: 18px;
}

.manager-permission-panel .admin-panel-head {
  align-items: start;
}

.manager-permission-panel .admin-panel-head strong {
  margin-top: 0;
  color: #ffcf66;
  font-size: 1.08rem;
}

.manager-permission-panel .admin-panel-head span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.manager-permission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.manager-permission-actions form {
  margin: 0;
}

.manager-admin-stats {
  margin-bottom: 18px;
}

.manager-charge-panel {
  margin-bottom: 18px;
}

.manager-charge-card {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: stretch;
}

.manager-charge-form {
  display: grid;
  gap: 10px;
  align-content: center;
  min-width: 0;
  margin: 0;
}

.manager-charge-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
}

.manager-charge-form input {
  width: 100%;
  min-width: 0;
}

.manager-charge-form > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.manager-charge-form .button {
  min-width: 0;
  text-align: center;
}

.manager-vendor-panel {
  margin-bottom: 18px;
}

.manager-vendor-form {
  display: grid;
  gap: 14px;
}

.manager-vendor-member-search {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.manager-vendor-member-search-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.manager-vendor-member-search-head strong {
  color: var(--white);
  font-weight: 900;
}

.manager-vendor-member-search-head span,
.manager-vendor-member-search-status {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.manager-vendor-member-search-status.success {
  color: #a7f3c0;
}

.manager-vendor-member-search-status.error {
  color: #fca5a5;
}

.manager-vendor-member-search-status.checking {
  color: #facc15;
}

.manager-vendor-member-search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 8px;
}

.manager-vendor-member-search-control input,
.manager-vendor-member-search-control .button {
  min-width: 0;
  min-height: 42px;
}

.manager-vendor-member-results {
  display: grid;
  gap: 8px;
}

.manager-vendor-member-results[hidden] {
  display: none;
}

.manager-vendor-member-results button {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.manager-vendor-member-results button:hover {
  border-color: rgba(46, 204, 113, 0.5);
  background: rgba(46, 204, 113, 0.12);
}

.manager-vendor-member-results strong {
  font-weight: 900;
}

.manager-vendor-member-results span,
.manager-vendor-member-results em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.4;
}

.manager-vendor-type-box {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.manager-vendor-type-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.manager-vendor-type-options label {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

#vendor-type-freelancer:checked ~ .manager-vendor-type-options label[for="vendor-type-freelancer"],
#vendor-type-business:checked ~ .manager-vendor-type-options label[for="vendor-type-business"] {
  border-color: rgba(46, 204, 113, 0.5);
  background: rgba(46, 204, 113, 0.16);
  color: #a7f3c0;
}

.manager-vendor-manuals {
  display: grid;
}

.manager-vendor-manual {
  display: none;
  gap: 5px;
  border: 1px solid rgba(46, 204, 113, 0.18);
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.08);
  padding: 12px;
}

#vendor-type-freelancer:checked ~ .manager-vendor-manuals .manager-vendor-manual.freelancer,
#vendor-type-business:checked ~ .manager-vendor-manuals .manager-vendor-manual.business {
  display: grid;
}

.manager-vendor-manual strong {
  color: var(--white);
  font-weight: 900;
}

.manager-vendor-manual span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.manager-vendor-product-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.manager-vendor-product-field > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
}

.manager-vendor-product-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.manager-vendor-product-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
}

.manager-vendor-product-options input {
  width: 18px;
  height: 18px;
  min-height: auto;
  flex: 0 0 18px;
  margin: 0;
  accent-color: #2ecc71;
}

.manager-vendor-product-options label:has(input:checked) {
  border-color: rgba(46, 204, 113, 0.52);
  background: rgba(46, 204, 113, 0.14);
  color: #a7f3c0;
}

.manager-vendor-product-field small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
}

.manager-vendor-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.manager-vendor-doc-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
}


.manager-vendor-doc-grid input[type="file"] {
  min-width: 0;
  min-height: 42px;
  padding: 9px;
  font-size: 0.8rem;
}

.manager-vendor-note {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(46, 204, 113, 0.18);
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.08);
  padding: 12px;
}

.manager-vendor-note strong {
  color: var(--white);
  font-weight: 900;
}

.manager-vendor-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.member-point-admin {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

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

.member-point-summary > div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.member-point-summary span,
.member-point-log span,
.member-point-log em {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-style: normal;
}

.member-point-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.member-point-adjust-form {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.member-point-adjust-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.member-point-adjust-actions .button {
  width: 100%;
  white-space: nowrap;
}

.member-point-log {
  display: grid;
  gap: 8px;
  max-height: 250px;
  overflow: auto;
}

.member-point-log article {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.member-point-log strong {
  font-weight: 900;
}

.member-point-log .point-plus {
  color: #93f0ae;
}

.member-point-log .point-minus {
  color: #ffb4b4;
}

.member-admin-main-tabs {
  margin-bottom: 14px;
}

.member-point-control-stats {
  margin-bottom: 18px;
}

.member-point-control-panel {
  margin-bottom: 18px;
  overflow: hidden;
}

.member-point-auto-panel {
  margin-bottom: 18px;
}

.member-point-auto-form {
  display: grid;
  gap: 10px;
}

.member-point-auto-form textarea {
  min-height: 96px;
  padding: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.member-point-watch-box {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.member-point-watch-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.member-point-watch-actions .button {
  min-width: 0;
  min-height: 36px;
  padding: 7px 8px;
  font-size: 0.74rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.member-point-watch-status {
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.45;
}

.member-point-watch-status[data-state="success"] {
  color: #a7f3c0;
}

.member-point-watch-status[data-state="warning"] {
  color: #ffcf66;
}

.member-point-watch-status[data-state="error"] {
  color: #ffb4b4;
}

.member-point-watch-status[data-state="busy"] {
  color: #dbeafe;
}

.member-point-auto-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.member-point-auto-row input[type="file"] {
  padding: 9px;
  font-size: 0.78rem;
}

.member-point-auto-row .button {
  white-space: nowrap;
}

.member-point-control-list {
  display: grid;
  gap: 10px;
}

.member-point-control-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(270px, 0.8fr) minmax(390px, 1.15fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.member-point-control-row > * {
  min-width: 0;
}

.member-point-control-main {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.13);
  padding: 10px;
}

.member-point-control-main strong {
  display: block;
}

.member-point-control-main strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.member-point-control-main dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.member-point-control-main dl > div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.member-point-control-main dt,
.member-point-control-main dd {
  margin: 0;
  font-size: 0.78rem;
}

.member-point-control-main dt {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 900;
}

.member-point-control-main dd {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.member-point-control-main .status-chip {
  justify-self: start;
  margin-top: 3px;
}

.member-point-control-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.member-point-control-values span {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.13);
  padding: 10px 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.member-point-control-values strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
}

.member-point-control-form {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(160px, 1fr) auto;
  gap: 10px;
  align-items: end;
  min-width: 0;
}

.member-point-control-form label {
  min-width: 0;
  gap: 5px;
  font-size: 0.76rem;
}

.member-point-control-form input {
  min-width: 0;
  min-height: 36px;
  padding: 0 9px;
  font-size: 0.78rem;
}

.member-point-control-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-self: end;
  min-width: 0;
}

.member-point-control-actions .button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 7px 10px;
  font-size: 0.76rem;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.member-point-control-actions .point-history-button {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  align-content: center;
  gap: 1px;
  overflow: hidden;
  white-space: normal;
}

.member-point-control-actions .point-history-button span {
  display: block;
  max-width: 100%;
  line-height: 1.08;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.member-point-history-panel {
  margin-top: 12px;
}

.member-point-history-page {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.member-point-history-page-full {
  grid-template-columns: minmax(0, 1fr);
}

.member-point-history-page .member-point-history-panel {
  margin-top: 0;
}

.member-point-history-search {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.member-point-history-member-panel {
  position: sticky;
  top: 18px;
}

.member-point-history-member-list {
  display: grid;
  gap: 8px;
  max-height: 68vh;
  overflow: auto;
  padding-right: 2px;
}

.member-point-history-member-list a {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px;
  color: inherit;
  text-decoration: none;
}

.member-point-history-member-list a.active,
.member-point-history-member-list a:hover {
  border-color: rgba(46, 204, 113, 0.45);
  background: rgba(46, 204, 113, 0.1);
}

.member-point-history-member-list strong {
  color: var(--white);
  font-size: 0.86rem;
}

.member-point-history-member-list span,
.member-point-history-member-list em {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.35;
}

.member-point-history-member-list em {
  color: #a7f3c0;
  font-weight: 800;
}

.member-point-history-list {
  display: grid;
  gap: 10px;
}

.member-point-history-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.member-point-print-watermark {
  display: none;
}

.member-point-history-print {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 900;
}

.member-point-history-member-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px;
}

.member-point-history-member-summary > strong {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 900;
}

.member-point-history-member-summary dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.member-point-history-member-summary div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.12);
  padding: 8px 10px;
}

.member-point-history-member-summary dt,
.member-point-history-member-summary dd {
  margin: 0;
}

.member-point-history-member-summary dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
}

.member-point-history-member-summary dd {
  margin-top: 3px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.member-point-history-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.member-point-history-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.member-point-history-head strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.member-point-history-head .status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 34px;
  border: 1px solid rgba(34, 197, 94, 0.48);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  padding: 6px 12px;
  color: #a7f3c0;
  font-size: 0.78rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.member-point-history-times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.member-point-history-times div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.13);
  padding: 10px;
}

.member-point-history-times span,
.member-point-history-meta span,
.member-point-history-meta em {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-style: normal;
}

.member-point-history-times strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.point-history-body .admin-shell {
  padding: 22px 0 30px;
}

.point-history-body .admin-nav {
  gap: 6px;
}

.point-history-body .admin-nav a {
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.82rem;
  line-height: 1.15;
}

.point-history-body .admin-shell h1 {
  margin: 14px 0;
  font-size: 1.85rem;
  line-height: 1.18;
}

.point-history-body .member-point-history-search {
  width: min(100%, 1080px);
  max-width: 100%;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-bottom: 10px;
  padding: 10px;
}

.point-history-body .member-point-history-search label {
  width: auto;
  gap: 4px;
  font-size: 0.78rem;
}

.point-history-body .member-point-history-search input {
  min-height: 34px;
  padding: 0 9px;
  font-size: 0.82rem;
}

.point-history-body .member-point-history-search .button {
  min-height: 34px;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.76rem;
}

.point-history-body .member-point-history-page {
  justify-items: start;
}

.point-history-body .member-point-history-panel {
  width: min(100%, 1080px);
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px;
}

.point-history-body .admin-panel-head {
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.point-history-body .admin-panel-head strong {
  font-size: 1rem;
}

.point-history-body .admin-panel-head span {
  font-size: 0.78rem;
  line-height: 1.25;
}

.point-history-body .member-point-history-member-summary {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 7px;
  margin-bottom: 8px;
  padding: 9px;
}

.point-history-body .member-point-history-member-summary > strong {
  font-size: 0.86rem;
}

.point-history-body .member-point-history-member-summary dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.point-history-body .member-point-history-member-summary div {
  width: auto;
  min-width: 0;
  max-width: none;
  border-radius: 5px;
  padding: 6px 8px;
}

.point-history-body .member-point-history-member-summary dt {
  font-size: 0.66rem;
}

.point-history-body .member-point-history-member-summary dd {
  margin-top: 2px;
  font-size: 0.78rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
  white-space: normal;
}

.point-history-body .member-point-history-tools {
  margin-bottom: 7px;
}

.point-history-body .member-point-history-print {
  min-height: 32px;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.76rem;
}

.point-history-body .member-point-history-list {
  gap: 7px;
  justify-items: stretch;
}

.point-history-body .member-point-history-list > .muted-small {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 9px 12px;
}

.point-history-body .member-point-history-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 7px;
  border-radius: 7px;
  padding: 9px;
}

.point-history-body .member-point-history-head {
  gap: 6px;
}

.point-history-body .member-point-history-head strong {
  font-size: 0.9rem;
}

.point-history-body .member-point-history-head .status-chip {
  min-width: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 900;
}

.point-history-body .member-point-history-times {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.point-history-body .member-point-history-times div {
  width: auto;
  min-width: 0;
  max-width: none;
  border-radius: 6px;
  padding: 6px 5px;
}

.point-history-body .member-point-history-times span {
  font-size: 0.6rem;
  line-height: 1.15;
}

.point-history-body .member-point-history-times strong {
  margin-top: 2px;
  font-size: 0.66rem;
  line-height: 1.22;
  overflow-wrap: normal;
  white-space: nowrap;
}

.member-point-history-meta {
  display: grid;
  gap: 3px;
}

.status-chip.approved {
  border-color: rgba(34, 197, 94, 0.4);
  color: #a7f3c0;
}

.status-chip.active {
  border-color: rgba(34, 197, 94, 0.4);
  color: #a7f3c0;
}

.status-chip.rejected,
.status-chip.cancelled {
  border-color: rgba(239, 68, 68, 0.42);
  color: #ffb4b4;
}

.point-charge-action-form {
  margin: 0;
}

.member-submission-panel {
  margin-bottom: 18px;
}

.member-excel-import-panel {
  margin-bottom: 18px;
  padding: 16px;
}

.member-excel-import-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(440px, 1.15fr);
  gap: 14px;
  align-items: start;
}

.member-excel-import-card {
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.22);
  padding: 16px;
}

.member-excel-import-card .admin-panel-head {
  margin-bottom: 12px;
}

.member-excel-import-card .admin-panel-head strong {
  font-size: 1rem;
}

.member-excel-import-card .admin-panel-head span {
  font-size: 0.78rem;
}

.member-excel-import-form {
  gap: 9px;
}

.member-excel-import-form .admin-form-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.member-excel-import-form label {
  gap: 5px;
  font-size: 0.78rem;
}

.member-excel-import-form input[type="file"],
.member-excel-import-form select {
  min-height: 34px;
  padding: 6px 9px;
  font-size: 0.82rem;
}

.member-excel-import-note {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 8px;
  background: rgba(251, 146, 60, 0.08);
  padding: 9px 10px;
  color: rgba(255, 244, 232, 0.84);
  font-size: 0.75rem;
  line-height: 1.42;
  word-break: keep-all;
}

.member-excel-import-form .admin-form-actions {
  margin-top: 8px;
}

.member-excel-import-form .button {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.82rem;
}

.member-excel-check-card {
  gap: 0;
}

.member-excel-referral-check {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.member-excel-referral-check form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  margin: 0;
}

.member-excel-referral-check label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
}

.member-excel-referral-check input {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px 9px;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-excel-referral-check .button {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.member-excel-referral-check p,
.member-excel-referral-result span {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.4;
  word-break: keep-all;
}

.member-excel-referral-result {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 9px;
}

.member-excel-referral-result strong {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.member-excel-referral-result.ready {
  border-color: rgba(34, 197, 94, 0.34);
  background: rgba(34, 197, 94, 0.1);
}

.member-excel-referral-result.error {
  border-color: rgba(248, 113, 113, 0.34);
  background: rgba(248, 113, 113, 0.1);
}

.member-excel-check-list {
  display: grid;
  gap: 7px;
}

.member-excel-check-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 10px;
}

.member-excel-check-list strong {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.member-excel-check-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.42;
  word-break: keep-all;
}

.member-excel-empty-check {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 8px;
  background: rgba(96, 165, 250, 0.08);
  padding: 12px;
}

.member-excel-empty-check strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
}

.member-excel-empty-check span {
  color: rgba(219, 234, 254, 0.82);
  font-size: 0.78rem;
  line-height: 1.45;
  word-break: keep-all;
}

.member-excel-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.member-excel-summary-grid div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 10px;
}

.member-excel-summary-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
}

.member-excel-summary-grid strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.member-excel-summary-grid .danger {
  border-color: rgba(248, 113, 113, 0.36);
  background: rgba(127, 29, 29, 0.18);
}

.member-excel-error-box {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
  border: 1px solid rgba(251, 191, 36, 0.34);
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.08);
  padding: 10px 12px;
}

.member-excel-error-box strong {
  color: #fed7aa;
  font-size: 0.78rem;
  font-weight: 900;
}

.member-excel-error-box span {
  color: #ffedd5;
  font-size: 0.74rem;
  line-height: 1.45;
  word-break: keep-all;
}

.member-excel-preview-table-wrap {
  max-height: 360px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.member-excel-preview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.73rem;
}

.member-excel-preview-table th,
.member-excel-preview-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 9px;
  text-align: left;
  vertical-align: top;
}

.member-excel-preview-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #263143;
  color: #ffffff;
  font-weight: 900;
}

.member-excel-preview-table td {
  color: rgba(255, 255, 255, 0.78);
}

.member-excel-preview-table em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  line-height: 1.35;
  word-break: keep-all;
}

.member-excel-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.member-excel-status.ready {
  border-color: rgba(34, 197, 94, 0.44);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.member-excel-status.skip {
  border-color: rgba(148, 163, 184, 0.34);
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
}

.member-excel-status.error {
  border-color: rgba(248, 113, 113, 0.42);
  color: #fecaca;
  background: rgba(127, 29, 29, 0.18);
}

.member-excel-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}

.member-excel-confirm-actions form {
  margin: 0;
}

.member-excel-confirm-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.member-import-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.58);
  padding: 20px;
}

.member-import-dialog {
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #1f2937;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  padding: 18px;
  color: #ffffff;
}

.member-import-dialog.success {
  border-color: rgba(34, 197, 94, 0.45);
}

.member-import-dialog.error {
  border-color: rgba(248, 113, 113, 0.45);
}

.member-import-dialog strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.member-import-dialog p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  word-break: keep-all;
}

.member-import-dialog dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.member-import-dialog dl div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 9px;
  text-align: center;
}

.member-import-dialog dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
}

.member-import-dialog dd {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
}

.member-import-dialog .button {
  justify-self: end;
  min-height: 34px;
  padding: 7px 14px;
  font-size: 0.8rem;
}

.member-import-progress-dialog {
  display: grid;
  gap: 12px;
  width: min(460px, 100%);
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 8px;
  background: #1f2937;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  padding: 18px;
  color: #ffffff;
}

.member-import-progress-dialog > strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.member-import-progress-dialog p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  word-break: keep-all;
}

.member-import-progress-bar {
  overflow: hidden;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.member-import-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f97316, #22c55e);
  transition: width 0.22s ease;
}

.member-import-progress-percent {
  justify-self: end;
  margin-top: -8px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
}

.member-import-progress-dialog dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.member-import-progress-dialog dl div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  text-align: center;
}

.member-import-progress-dialog dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
}

.member-import-progress-dialog dd {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.member-import-progress-time {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.member-import-progress-time strong {
  color: #ffffff;
}

.member-import-progress-errors {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(248, 113, 113, 0.24);
  border-radius: 8px;
  background: rgba(127, 29, 29, 0.14);
  padding: 9px;
  color: #fecaca;
  font-size: 0.74rem;
  line-height: 1.4;
}

.member-import-progress-errors span {
  display: block;
}

.member-import-progress-dialog .button {
  justify-self: end;
  min-height: 34px;
  padding: 7px 14px;
  font-size: 0.8rem;
}

.member-submission-list {
  display: grid;
  gap: 10px;
}

.member-submission-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.member-submission-card strong,
.member-submission-card span,
.member-submission-card em {
  display: block;
}

.member-submission-card strong {
  color: var(--white);
  font-weight: 900;
}

.member-submission-card span,
.member-submission-card em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-style: normal;
}

.member-submission-documents {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.member-submission-documents span {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
}

.member-submission-documents a {
  border: 1px solid rgba(46, 204, 113, 0.24);
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.1);
  padding: 7px 9px;
  color: #a7f3c0;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.member-submission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.member-submission-actions form {
  margin: 0;
}

.vendor-submission-panel .member-submission-list {
  gap: 12px;
}

.vendor-member-panel {
  margin-bottom: 18px;
}


.vendor-member-sheet-wrap {
  overflow-x: auto;
  border: 1px solid #aeb8c1;
  border-radius: 6px;
  background: #fff;
}

.vendor-member-sheet {
  width: 100%;
  min-width: 1320px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  color: #111;
  font-size: 0.72rem;
}

.vendor-member-sheet th,
.vendor-member-sheet td {
  border: 1px solid #d9d9d9;
}

.vendor-member-sheet th {
  position: relative;
  height: 25px;
  padding: 3px 7px;
  background: linear-gradient(#eef7fd, #d7e8f4);
  border-color: #aeb8c1;
  color: #000;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.vendor-member-sheet td {
  height: 26px;
  padding: 4px 7px;
  background: #fff;
  color: #1b1b1b;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.vendor-member-sheet tbody tr:nth-child(even) td {
  background: #fbfbfb;
}

.vendor-member-sheet tbody tr:hover td {
  background: #fff8d8;
}

.vendor-member-sheet .col-no {
  width: 46px;
  text-align: center;
}

.vendor-member-sheet .strong {
  font-weight: 900;
}

.vendor-member-sheet th:nth-child(2),
.vendor-member-sheet td:nth-child(2) {
  width: 160px;
}

.vendor-member-sheet th:nth-child(3),
.vendor-member-sheet td:nth-child(3),
.vendor-member-sheet th:nth-child(4),
.vendor-member-sheet td:nth-child(4) {
  width: 82px;
}

.vendor-member-sheet th:nth-child(5),
.vendor-member-sheet td:nth-child(5) {
  width: 170px;
}

.vendor-member-sheet th:nth-child(6),
.vendor-member-sheet td:nth-child(6) {
  width: 116px;
}

.vendor-member-sheet th:nth-child(7),
.vendor-member-sheet td:nth-child(7) {
  width: 220px;
}

.vendor-member-sheet th:nth-child(8),
.vendor-member-sheet td:nth-child(8) {
  width: 94px;
}

.vendor-member-sheet th:nth-child(9),
.vendor-member-sheet td:nth-child(9) {
  width: 122px;
}

.vendor-member-sheet th:nth-child(10),
.vendor-member-sheet td:nth-child(10) {
  width: 70px;
  text-align: center;
}

.vendor-member-sheet th:nth-child(11),
.vendor-member-sheet td:nth-child(11) {
  width: 126px;
}

.vendor-member-sheet th:nth-child(12),
.vendor-member-sheet td:nth-child(12) {
  width: 54px;
}

.vendor-member-sheet .empty {
  height: 42px;
  color: #555;
  text-align: center;
}

.vendor-member-sheet .action-cell {
  padding: 2px 5px;
  text-align: center;
}

.sheet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 20px;
  border: 1px solid #aeb8c1;
  border-radius: 3px;
  background: #f4f7fa;
  color: #111;
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
}

.sheet-action:hover {
  background: #e3eff9;
}

.admin-member-table-layout {
  grid-template-columns: 1fr;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.admin-member-table-layout > .admin-panel {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.admin-member-list-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: min(640px, 100%);
}

.admin-member-list-tools > span {
  white-space: nowrap;
}

.member-admin-inline-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.member-admin-inline-search input {
  width: min(360px, 34vw);
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px 9px;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 800;
}

.member-admin-inline-search .button {
  min-height: 32px;
  padding: 7px 10px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.admin-member-detail-panel {
  width: min(960px, 100%);
  max-width: 960px;
}

.admin-member-sheet-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  border: 1px solid #aeb8c1;
  border-radius: 6px;
  background: #fff;
}

.admin-member-sheet {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background: #fff;
  color: #111;
  font-size: 0.72rem;
}

.admin-member-sheet th,
.admin-member-sheet td {
  border: 1px solid #d9d9d9;
}

.admin-member-sheet th {
  height: 25px;
  padding: 3px 7px;
  background: linear-gradient(#eef7fd, #d7e8f4);
  border-color: #aeb8c1;
  color: #000;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.admin-member-sheet td {
  height: 26px;
  padding: 4px 7px;
  background: #fff;
  color: #1b1b1b;
  line-height: 1.25;
  overflow: visible;
  text-overflow: clip;
  vertical-align: middle;
  white-space: nowrap;
}

.admin-member-sheet tbody tr:nth-child(even) td {
  background: #fbfbfb;
}

.admin-member-sheet tbody tr:hover td {
  background: #fff8d8;
}

.admin-member-sheet tbody tr.active td {
  background: #e8f4ff;
  font-weight: 900;
}

.admin-member-sheet tbody tr.role-admin td {
  background: #fff0a6;
  color: #141006;
  font-weight: 900;
}

.admin-member-sheet tbody tr.role-admin:hover td,
.admin-member-sheet tbody tr.role-admin.active td {
  background: #ffe27a;
}

.manager-customer-head {
  align-items: end;
}

.manager-customer-head > div {
  display: grid;
  gap: 4px;
}

.manager-customer-panel .admin-member-sheet th:nth-child(2),
.manager-customer-panel .admin-member-sheet td:nth-child(2) {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.manager-customer-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
}

.manager-customer-search input {
  width: min(260px, 34vw);
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #f8fafc;
  padding: 7px 9px;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 800;
}

.manager-customer-search .button {
  min-height: 32px;
  padding: 7px 10px;
  font-size: 0.76rem;
  white-space: nowrap;
}

.manager-customer-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}

.manager-customer-pagination a,
.manager-customer-pagination strong,
.manager-customer-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.manager-customer-pagination strong {
  border-color: rgba(251, 146, 60, 0.62);
  background: #f97316;
  color: #ffffff;
}

.manager-customer-pagination a:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.admin-member-sheet .col-no {
  width: 46px;
  text-align: center;
}

.admin-member-sheet .strong {
  font-weight: 900;
}

.admin-member-sheet th:nth-child(2),
.admin-member-sheet td:nth-child(2) {
  min-width: 190px;
}

.admin-member-sheet th:nth-child(3),
.admin-member-sheet td:nth-child(3) {
  min-width: 130px;
}

.admin-member-sheet th:nth-child(4),
.admin-member-sheet td:nth-child(4) {
  min-width: 250px;
}

.admin-member-sheet th:nth-child(5),
.admin-member-sheet td:nth-child(5) {
  min-width: 140px;
}

.admin-member-sheet th:nth-child(6),
.admin-member-sheet td:nth-child(6),
.admin-member-sheet th:nth-child(7),
.admin-member-sheet td:nth-child(7) {
  min-width: 108px;
}

.admin-member-sheet th:nth-child(8),
.admin-member-sheet td:nth-child(8),
.admin-member-sheet th:nth-child(9),
.admin-member-sheet td:nth-child(9) {
  min-width: 118px;
}

.admin-member-sheet th:nth-child(10),
.admin-member-sheet td:nth-child(10) {
  width: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center;
}

.admin-member-sheet .col-referral-code {
  width: 82px !important;
  min-width: 82px !important;
  max-width: 82px !important;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center;
}

.admin-member-list-sheet .col-bank-name {
  min-width: 94px;
  max-width: 120px;
  text-align: center;
}

.admin-member-list-sheet th:nth-child(10),
.admin-member-list-sheet td:nth-child(10) {
  width: auto !important;
  min-width: 118px !important;
  max-width: none !important;
  padding-left: 5px;
  padding-right: 5px;
  text-align: left;
}

.admin-member-list-sheet th:nth-child(12),
.admin-member-list-sheet td:nth-child(12) {
  min-width: 220px !important;
}

.admin-member-list-sheet th:nth-child(13),
.admin-member-list-sheet td:nth-child(13) {
  min-width: 118px !important;
}

.admin-member-list-sheet th:nth-child(14),
.admin-member-list-sheet td:nth-child(14) {
  min-width: 64px !important;
}

.admin-member-sheet th:nth-child(11),
.admin-member-sheet td:nth-child(11) {
  min-width: 220px;
}

.admin-member-sheet th:nth-child(12),
.admin-member-sheet td:nth-child(12) {
  min-width: 118px;
}

.admin-member-sheet th:nth-child(13),
.admin-member-sheet td:nth-child(13) {
  min-width: 64px;
}

.admin-member-sheet .empty {
  height: 42px;
  color: #555;
  text-align: center;
}

.admin-member-sheet .action-cell {
  padding: 2px 5px;
  text-align: center;
}

.vendor-submission-card {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  align-items: stretch;
  gap: 16px;
  padding: 16px;
}

.vendor-submission-main {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.vendor-submission-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.vendor-submission-title-row > div:first-child {
  min-width: 0;
}

.vendor-submission-title-row strong {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.25;
}

.vendor-submission-title-row span:not(.status-chip) {
  margin-top: 5px;
}

.vendor-submission-chips {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.vendor-submission-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.vendor-submission-meta div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.13);
  padding: 9px 10px;
}

.vendor-submission-meta dt,
.vendor-submission-meta dd {
  margin: 0;
}

.vendor-submission-meta dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 900;
}

.vendor-submission-meta dd {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.vendor-submission-documents {
  margin-top: 0;
  border: 1px solid rgba(46, 204, 113, 0.16);
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.07);
  padding: 10px;
}

.vendor-submission-actions {
  display: grid;
  align-content: start;
  gap: 8px;
  justify-content: stretch;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 16px;
}

.vendor-submission-actions .button,
.vendor-submission-actions form,
.vendor-submission-actions .member-submission-date-form {
  width: 100%;
}

.vendor-submission-actions .button {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 0.8rem;
  line-height: 1.2;
}

.vendor-submission-actions .member-submission-date-form {
  display: grid;
  gap: 7px;
}

.vendor-submission-actions .member-submission-date-form input {
  min-width: 0;
  min-height: 38px;
  font-size: 0.78rem;
}

.member-submission-date-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: end;
}

.member-submission-date-form label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.member-submission-date-form input {
  min-width: 190px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.94);
  padding: 9px 10px;
  font-size: 0.9rem;
}

.status-chip {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.status-chip.pending {
  border-color: rgba(250, 176, 5, 0.42);
  color: #ffcf66;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.admin-tabs a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
}

.admin-tabs a span {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.admin-tabs a.active,
.admin-tabs a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.member-admin-sub-tabs {
  gap: 8px;
  margin: -6px 0 14px;
}

.member-admin-sub-tabs a {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.member-admin-sub-tabs a.active {
  border-color: rgba(251, 146, 60, 0.55);
  background: rgba(251, 146, 60, 0.18);
}

.shop-admin-stats {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.shop-admin-panel {
  margin-top: 18px;
}

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

.admin-inline-delete {
  margin-top: 16px;
}

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

.admin-submission-list {
  display: grid;
  gap: 12px;
  max-height: 620px;
  overflow: auto;
}

.admin-submission-list article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.admin-submission-list strong,
.admin-submission-list span {
  display: block;
}

.admin-submission-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.admin-submission-list pre {
  overflow: auto;
  margin: 12px 0 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
}

.admin-empty {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.admin-empty strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .manager-profile-panel,
  .manager-charge-card,
  .vendor-submission-card,
  .manager-vendor-doc-grid,
  .member-point-history-member-summary dl,
  .member-excel-import-layout {
    grid-template-columns: 1fr;
  }

  .manager-login-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-member-sheet {
    min-width: 1320px;
  }

  .admin-member-sheet {
    min-width: max-content;
  }

  .admin-member-list-tools {
    min-width: 0;
    justify-content: flex-start;
  }

  .member-admin-inline-search {
    width: 100%;
    justify-content: stretch;
  }

  .member-admin-inline-search input {
    width: 100%;
  }

  .vendor-submission-actions {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    padding-left: 0;
  }

  .vendor-submission-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .member-excel-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-excel-referral-check form {
    grid-template-columns: 1fr;
  }

  .member-excel-confirm-actions {
    justify-content: stretch;
  }

  .member-excel-confirm-actions form,
  .member-excel-confirm-actions .button {
    width: 100%;
  }

  .manager-login-info-grid {
    grid-template-columns: 1fr;
  }

  .vendor-submission-card {
    padding: 14px;
  }

  .vendor-submission-title-row {
    display: grid;
    gap: 8px;
  }

  .vendor-submission-title-row strong,
  .vendor-submission-title-row span:not(.status-chip) {
    word-break: keep-all;
  }

  .vendor-submission-chips {
    justify-content: flex-start;
  }

  .vendor-submission-meta {
    grid-template-columns: 1fr;
  }

  .vendor-member-sheet {
    min-width: 1320px;
  }

  .admin-member-sheet {
    min-width: max-content;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .detail-grid,
  .detail-info-grid,
  .two-feature,
  .two-col-content,
  .checkout-grid,
  .cart-layout,
  .join-manual,
  .company-hero-grid,
  .company-info-panel,
  .mypage-hero-card,
  .mypage-layout,
  .point-dashboard,
  .point-package-grid,
  .member-point-summary,
  .member-point-adjust-form,
  .member-point-control-row,
  .member-point-control-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .product-grid.three,
  .product-grid.four,
  .trust-grid,
  .trust-grid.three,
  .faq-grid,
  .benefit-grid,
  .review-grid,
  .source-image-grid,
  .component-gallery-grid,
  .mypage-account-strip,
  .mypage-summary-grid,
  .mypage-action-grid,
  .admin-stats,
  .admin-member-layout,
  .shop-admin-stats,
  .admin-action-grid,
  .admin-submission-grid,
  .privacy-summary,
  .privacy-contact,
  .company-story-grid,
  .company-service-map,
  .company-image-grid,
  .company-promise-grid,
  .guide-grid,
  .process-panel > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-panel {
    position: static;
  }

  .company-service-map article:not(:last-child)::after {
    display: none;
  }

  .point-balance-box {
    grid-template-columns: 1fr;
  }

  .mypage-order-card {
    grid-template-columns: 1fr;
  }

  .mypage-order-card div:last-child {
    justify-items: start;
  }

  .footer-grid > section:not(.footer-business) {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .manager-customer-head {
    display: grid;
    align-items: start;
  }

  .manager-customer-search {
    justify-content: stretch;
    width: 100%;
  }

  .manager-customer-search input {
    width: 100%;
  }

  .session-timeout-modal {
    right: 12px;
    bottom: 90px;
    width: calc(100vw - 24px);
  }

  .session-timeout-dialog {
    padding: 15px;
  }

  .container {
    width: min(100% - 22px, 1180px);
  }

  .point-history-body .container {
    width: min(100% - 18px, 1180px);
  }

  .point-history-body .admin-shell {
    padding: 18px 0 24px;
  }

  .point-history-body .admin-nav {
    gap: 5px;
  }

  .point-history-body .admin-nav a {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.74rem;
  }

  .point-history-body .admin-shell h1 {
    margin: 12px 0;
    font-size: 1.45rem;
  }

  .point-history-body .member-point-history-search {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .point-history-body .member-point-history-search label {
    width: auto;
    grid-column: 1 / -1;
  }

  .point-history-body .member-point-history-search .button {
    width: 100%;
    min-height: 32px;
    padding: 6px 7px;
    font-size: 0.68rem;
  }

  .point-history-body .member-point-history-page {
    justify-items: stretch;
  }

  .point-history-body .member-point-history-panel {
    width: 100%;
    padding: 9px;
  }

  .point-history-body .admin-panel-head {
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .point-history-body .member-point-history-member-summary {
    width: 100%;
  }

  .point-history-body .member-point-history-member-summary dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .point-history-body .member-point-history-member-summary div {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .point-history-body .member-point-history-member-summary dd {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .point-history-body .member-point-history-list {
    justify-items: stretch;
  }

  .point-history-body .member-point-history-card {
    width: 100%;
  }

  .point-history-body .member-point-history-times {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .point-history-body .member-point-history-times div {
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 5px 4px;
  }

  .point-history-body .member-point-history-times span {
    font-size: 0.52rem;
  }

  .point-history-body .member-point-history-times strong {
    font-size: 0.58rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .strip-inner,
  .header-main,
  .split-header {
    align-items: stretch;
    flex-direction: column;
  }

  .search-form {
    flex-basis: auto;
    width: 100%;
    margin-left: 0;
  }

  .hero-grid {
    min-height: auto;
    padding: 36px 0;
  }

  .company-hero-grid {
    min-height: auto;
    gap: 22px;
    padding: 28px 0 34px;
  }

  .company-hero-copy h1 {
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .company-hero-intro {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.74;
  }

  .visual-grid,
  .company-hero-points,
  .company-story-grid,
  .company-service-map,
  .company-image-grid,
  .company-promise-grid,
  .category-grid,
  .product-grid.three,
  .product-grid.four,
  .trust-grid,
  .trust-grid.three,
  .faq-grid,
  .benefit-grid,
  .review-grid,
  .source-image-grid,
  .admin-stats,
  .admin-member-layout,
  .admin-form-grid,
  .admin-search,
  .shop-admin-stats,
  .admin-action-grid,
  .admin-submission-grid,
  .process-panel > div,
  .option-grid,
  .button-grid,
  .two-cols,
  .radio-grid,
  .filter-panel,
  .join-manual,
  .captcha-row,
  .privacy-summary,
  .privacy-contact,
  .guide-grid,
  .quick-points,
  .member-point-control-values,
  .member-point-control-actions,
  .member-point-history-page,
  .member-point-history-search,
  .member-point-history-times,
  .member-point-auto-row,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .member-point-history-member-panel {
    position: static;
  }

  .member-point-history-member-list {
    max-height: none;
  }

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

  .member-point-control-actions .button {
    flex: 1 1 auto;
  }

  .member-point-control-panel {
    padding: 12px;
  }

  .member-point-auto-panel {
    padding: 12px;
  }

  .member-point-watch-box {
    gap: 8px;
    padding: 9px;
  }

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

  .member-point-watch-actions .button {
    min-height: 32px;
    padding: 6px;
    font-size: 0.66rem;
  }

  .member-point-watch-status {
    padding: 7px 8px;
    font-size: 0.66rem;
  }

  .member-point-auto-form {
    gap: 8px;
  }

  .member-point-auto-form textarea {
    min-height: 82px;
    font-size: 0.72rem;
  }

  .member-point-auto-row {
    gap: 8px;
  }

  .member-point-auto-row .button {
    width: 100%;
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.72rem;
    white-space: normal;
  }

  .member-point-control-panel .admin-panel-head {
    gap: 6px;
  }

  .member-point-control-panel .admin-panel-head strong {
    font-size: 0.92rem;
  }

  .member-point-control-panel .admin-panel-head span {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .member-point-control-list {
    gap: 7px;
  }

  .member-point-control-row {
    gap: 8px;
    padding: 10px;
  }

  .member-point-control-main {
    gap: 6px;
  }

  .member-point-control-main strong {
    font-size: 0.9rem;
  }

  .member-point-control-main dl {
    gap: 4px;
  }

  .member-point-control-main dl > div {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 6px;
  }

  .member-point-control-main dt,
  .member-point-control-main dd {
    font-size: 0.7rem;
  }

  .member-point-control-main .status-chip {
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .member-point-control-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .member-point-control-values span {
    gap: 4px;
    padding: 7px 4px;
    font-size: 0.62rem;
    text-align: center;
  }

  .member-point-control-values strong {
    font-size: 0.72rem;
  }

  .member-point-control-form {
    gap: 7px;
  }

  .member-point-control-form label {
    gap: 4px;
    font-size: 0.68rem;
  }

  .member-point-control-form input {
    min-height: 32px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .member-point-control-actions .button {
    width: 100%;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .member-point-history-panel {
    padding: 12px;
  }

  .member-point-history-card {
    gap: 8px;
    padding: 10px;
  }

  .member-point-history-times {
    gap: 6px;
  }

  .member-point-history-times div {
    padding: 8px;
  }

  .member-point-history-times span,
  .member-point-history-meta span,
  .member-point-history-meta em {
    font-size: 0.66rem;
  }

  .member-point-history-times strong {
    margin-top: 3px;
    font-size: 0.7rem;
  }

  .page-section {
    padding: 42px 0;
  }

  .points-body .page-section {
    min-height: auto;
    padding: 16px 0 18px;
  }

  .points-body .section-header {
    margin-bottom: 12px;
  }

  .points-body .section-header h1 {
    font-size: 1.65rem;
  }

  .points-body .section-header span {
    margin-top: 6px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .points-body .point-login-panel {
    padding: 18px;
  }

  .points-body .point-login-panel .button-row {
    gap: 8px;
  }

  .points-body .point-dashboard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 10px;
  }

  .points-body .point-balance-card {
    gap: 4px;
    padding: 10px;
  }

  .points-body .point-balance-card > span {
    font-size: 0.72rem;
  }

  .points-body .point-balance-card > strong {
    font-size: 1rem;
  }

  .points-body .point-balance-card p {
    display: none;
  }

  .points-body .point-page-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .points-body .point-page-grid > form,
  .points-body .point-request-panel,
  .points-body .point-transaction-panel {
    padding: 13px;
  }

  .points-body .point-page-grid > form {
    gap: 9px;
  }

  .points-body .point-page-grid h2,
  .points-body .point-panel-head h2 {
    font-size: 1rem;
  }

  .points-body .point-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .points-body .point-package-grid label,
  .points-body .point-package-grid button {
    gap: 2px 7px;
    padding: 8px;
  }

  .points-body .point-package-grid strong {
    font-size: 0.9rem;
  }

  .points-body .point-package-grid span {
    font-size: 0.7rem;
  }

  .points-body .point-charge-total {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 13px;
  }

  .points-body .point-charge-total strong {
    text-align: left;
    font-size: 1.45rem;
  }

  .points-body .point-charge-builder-actions .button {
    flex: 1 1 120px;
  }

  .points-body .form-grid label {
    gap: 4px;
    font-size: 0.82rem;
  }

  .points-body .two-cols {
    gap: 8px;
  }

  .points-body input,
  .points-body select,
  .points-body textarea {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .points-body textarea {
    min-height: 54px;
  }

  .points-body .point-request-panel {
    gap: 8px;
  }

  .points-body .point-request-panel article {
    gap: 3px;
    padding: 8px;
  }

  .points-body .point-empty-state {
    padding: 11px;
  }

  .points-body .point-transaction-panel {
    margin-top: 10px;
  }

  .company-hero-points {
    margin-top: 18px;
  }

  .company-hero-visual {
    min-height: auto;
  }

  .company-hero-visual > img {
    min-height: 260px;
  }

  .company-care-map {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 10px;
  }

  .company-care-center {
    grid-column: 1 / -1;
  }

  .company-story-card,
  .company-service-map article,
  .company-promise-grid article {
    padding: 16px;
  }

  .company-info-panel {
    gap: 18px;
    padding: 18px;
  }

  .company-info-panel dl div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .mypage-hero-card,
  .mypage-card {
    padding: 16px;
  }

  .mypage-member-block {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mypage-point-box strong {
    font-size: 1.8rem;
  }

  .mypage-account-strip,
  .mypage-summary-grid,
  .mypage-action-grid {
    grid-template-columns: 1fr;
  }

  .mypage-card-head {
    align-items: flex-start;
  }

  .privacy-policy {
    padding: 22px 16px;
  }

  .privacy-table {
    min-width: 760px;
  }

  .product-visual,
  .detail-grid > .product-visual {
    min-height: 260px;
  }

  .product-card .product-visual {
    min-height: 190px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  body.points-body {
    padding-bottom: 0;
  }

  .site-header {
    box-shadow: 0 8px 22px rgba(56, 33, 22, 0.08);
  }

  .points-body .site-header {
    position: static;
  }

  .top-strip {
    display: none;
  }

  .header-main {
    min-height: auto;
    flex-flow: row wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .brand-link {
    flex: 1 1 0;
    min-width: 0;
    gap: 9px;
  }

  .brand-logo-img {
    width: 38px;
    height: 79px;
    max-height: 79px;
    border-radius: 8px;
  }

  .brand-link strong {
    font-size: 1.22rem;
    line-height: 1.05;
  }

  .brand-link small {
    overflow: hidden;
    max-width: 210px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.7rem;
  }

  .search-form {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    margin-left: 0;
  }

  .mobile-header-search {
    display: block;
  }

  .main-nav-search {
    display: none;
  }

  .search-form input {
    min-height: 42px;
    font-size: 0.94rem;
  }

  .header-actions {
    display: none;
  }

  .mobile-member-summary,
  .mobile-point-summary {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(245, 130, 32, 0.18);
    background: #fff7ef;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mobile-member-summary {
    background: var(--white);
  }

  .mobile-member-summary span,
  .mobile-member-summary strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-break: keep-all;
  }

  .mobile-member-summary span {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-member-summary strong {
    color: var(--forest);
    font-size: 0.84rem;
    font-weight: 900;
  }

  .mobile-point-summary strong {
    font-size: 1.02rem;
  }

  .points-body .search-form {
    display: none;
  }

  .points-body .header-main {
    padding: 8px 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 24px rgba(56, 33, 22, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-bottom-nav.logged-in {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .points-body .mobile-bottom-nav {
    display: none;
  }

  .mobile-bottom-nav form {
    margin: 0;
    min-width: 0;
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 54px;
    place-items: center;
    gap: 3px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 900;
  }

  .mobile-bottom-nav a.active {
    background: var(--soft);
    color: var(--forest-dark);
  }

  .mobile-bottom-nav strong {
    font-size: 0.68rem;
    line-height: 1;
  }

  .mobile-bottom-nav b {
    position: absolute;
    top: 5px;
    right: 20%;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 999px;
    background: var(--brass);
    color: var(--white);
    font-size: 0.66rem;
    line-height: 1;
  }

  .mobile-nav-icon {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    color: currentColor;
  }

  .mobile-nav-icon::before,
  .mobile-nav-icon::after {
    position: absolute;
    content: "";
    box-sizing: border-box;
  }

  .mobile-nav-icon.home::before {
    inset: 8px 3px 2px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 2px;
  }

  .mobile-nav-icon.home::after {
    left: 4px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .mobile-nav-icon.products::before {
    inset: 3px;
    border: 2px solid currentColor;
    border-radius: 5px;
  }

  .mobile-nav-icon.products::after {
    top: 10px;
    left: 3px;
    width: 16px;
    border-top: 2px solid currentColor;
  }

  .mobile-nav-icon.member::before {
    top: 3px;
    left: 7px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .mobile-nav-icon.member::after {
    left: 4px;
    bottom: 3px;
    width: 14px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 10px 10px 4px 4px;
  }

  .mobile-nav-icon.login::before {
    left: 5px;
    right: 5px;
    top: 9px;
    bottom: 3px;
    border: 2px solid currentColor;
    border-radius: 4px;
  }

  .mobile-nav-icon.login::after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  .mobile-nav-icon.logout::before {
    top: 4px;
    bottom: 4px;
    left: 3px;
    width: 11px;
    border: 2px solid currentColor;
    border-right: 0;
    border-radius: 4px 0 0 4px;
  }

  .mobile-nav-icon.logout::after {
    top: 10px;
    right: 3px;
    width: 11px;
    border-top: 2px solid currentColor;
  }

  .mobile-nav-icon.help::before {
    inset: 3px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .mobile-nav-icon.help::after {
    top: 6px;
    left: 10px;
    width: 2px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .mobile-nav-icon.cart::before {
    left: 4px;
    top: 6px;
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px 2px 5px 5px;
  }

  .mobile-nav-icon.cart::after {
    left: 6px;
    bottom: 3px;
    width: 12px;
    height: 3px;
    border-right: 3px solid currentColor;
    border-left: 3px solid currentColor;
  }

  .hero {
    background: linear-gradient(180deg, #fff2e2 0%, #fffaf5 100%);
  }

  .hero-grid {
    gap: 18px;
    padding: 24px 0 28px;
  }

  .eyebrow-pill {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.12;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .home-point-strip {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 11px;
  }

  .home-point-strip span {
    font-size: 0.8rem;
  }

  .home-point-strip strong {
    font-size: 1.05rem;
  }

  .hero .button {
    min-height: 46px;
    padding: 10px 12px;
  }

  .hero .visual-grid {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .hero .visual-grid > .product-visual {
    min-height: 220px;
  }

  .hero .stack,
  .hero .quick-points {
    display: none;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-header h1 {
    font-size: 1.72rem;
    line-height: 1.22;
  }

  .section-header span {
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .category-card {
    display: grid;
    min-height: auto;
    grid-template-columns: 92px 1fr;
    gap: 10px 12px;
    align-items: center;
    padding: 12px;
  }

  .category-card-img {
    grid-row: 1 / span 2;
    width: 92px;
    aspect-ratio: 1 / 1;
  }

  .category-card strong,
  .panel strong {
    margin-top: 0;
  }

  .category-card strong {
    align-self: end;
    font-size: 1rem;
  }

  .category-card p {
    align-self: start;
    margin-top: 0;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .split-header {
    gap: 10px;
  }

  .split-header .text-link {
    align-self: flex-start;
    min-height: 40px;
  }

  .filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .filter-panel label {
    gap: 5px;
    font-size: 0.82rem;
  }

  .filter-search-field {
    grid-column: 1 / -1;
  }

  .filter-panel input,
  .filter-panel select {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.92rem;
  }

  .filter-panel .button {
    grid-column: auto;
    align-self: end;
    min-height: 46px;
  }

  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin: 18px 0;
    padding-bottom: 10px;
    font-size: 0.84rem;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .product-card:hover {
    transform: none;
  }

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

  .product-card .product-visual {
    min-height: 112px;
    height: 112px;
    border-radius: 8px;
  }

  .product-card .real-product-image {
    padding: 7px;
  }

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

  .product-card-body > a {
    display: block;
    min-height: 40px;
  }

  .badges {
    gap: 5px;
  }

  .badges span,
  .tone {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 0.7rem;
  }

  .product-card h2 {
    display: -webkit-box;
    min-height: auto;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 7px 0 0;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .product-card-body > p {
    display: -webkit-box;
    min-height: auto;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 5px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .price-row {
    align-items: center;
    margin: 8px 0;
  }

  .price-row strong {
    font-size: 1rem;
  }

  .product-card .button {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .two-feature,
  .benefit-grid,
  .trust-grid,
  .faq-grid {
    gap: 12px;
  }

  .feature,
  .panel,
  .process-panel,
  .cta-panel {
    padding: 18px;
  }

  .feature h2,
  .process-panel h2,
  .cta-panel h2,
  .panel h2 {
    font-size: 1.28rem;
    line-height: 1.35;
  }

  .footer-grid {
    gap: 20px;
    padding: 34px 0;
  }

  .site-footer {
    margin-top: 44px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-logo-img {
    width: 38px;
    height: 80px;
    max-height: 80px;
  }

  .footer-brand strong {
    font-size: 1.6rem;
  }

  .footer-brand-copy {
    gap: 6px;
  }

  .site-footer .footer-brand-copy small {
    width: auto;
    padding: 5px 8px;
    font-size: 0.72rem;
    line-height: 1.35;
    white-space: normal;
  }

  .footer-business-info {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 14px;
  }

  .footer-business-info .footer-business-wide {
    grid-column: auto;
  }

  .footer-business-info div,
  .footer-business-info .footer-business-wide {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .join-shell {
    gap: 10px;
  }

  .join-shell .panel {
    padding: 14px;
  }

  .join-field-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .join-manual {
    gap: 12px;
  }

  .join-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .join-all-check {
    justify-content: center;
    width: 100%;
  }

  .agreement-card {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .agreement-card > a {
    justify-self: start;
  }

  .agreement-copy {
    max-height: 88px;
  }

  .join-manual h2,
  .join-panel-head h2 {
    font-size: 1.12rem;
  }

  .join-manual-copy {
    max-width: 100%;
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .join-manual li {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .join-manual b {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 700px) {
  body {
    line-height: 1.64;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .page-section {
    padding: 34px 0;
  }

  .section-header,
  .section-header.center {
    margin-bottom: 18px;
    text-align: left;
  }

  .section-header p {
    margin-bottom: 6px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .section-header h1 {
    font-size: 1.56rem;
    line-height: 1.28;
    text-wrap: balance;
  }

  .section-header span {
    max-width: none;
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .hero-grid {
    padding: 22px 0 24px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 1.92rem;
    line-height: 1.18;
    text-wrap: balance;
  }

  .hero-copy,
  .detail-summary,
  .product-card-body > p,
  .category-card p,
  .feature p,
  .panel p,
  .site-footer p,
  .site-footer small {
    line-height: 1.72;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .eyebrow-pill {
    max-width: 100%;
    font-size: 0.74rem;
  }

  .filter-panel {
    align-items: stretch;
    gap: 9px;
    border-radius: 8px;
  }

  .filter-panel label {
    align-content: start;
    gap: 6px;
    line-height: 1.35;
  }

  .filter-panel label span,
  .form-grid label span {
    line-height: 1.35;
  }

  .filter-panel input,
  .filter-panel select,
  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .list-toolbar {
    gap: 4px;
    line-height: 1.55;
  }

  .product-grid.four,
  .product-grid.three,
  .product-grid {
    gap: 10px;
  }

  .product-card {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px;
  }

  .product-card .product-visual {
    min-height: 104px;
    height: 104px;
  }

  .product-card .real-product-image {
    padding: 6px;
  }

  .product-card-body > a {
    min-height: auto;
  }

  .badges {
    gap: 4px;
  }

  .badges span,
  .tone {
    min-height: 23px;
    padding: 3px 7px;
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .product-card h2 {
    margin-top: 5px;
    font-size: 0.92rem;
    line-height: 1.46;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .product-card-body > p {
    margin-top: 4px;
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .price-row {
    align-items: center;
    gap: 8px;
    margin: 7px 0 8px;
  }

.price-row strong {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .price-row .tone {
    margin-left: auto;
  }

  .product-card .button {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .detail-title {
    margin-top: 16px;
    font-size: 1.72rem;
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .detail-summary {
    margin-top: 10px;
    font-size: 0.94rem;
  }

  .detail-price {
    align-items: center;
    gap: 10px;
    margin: 16px 0;
  }

  .detail-price strong {
    font-size: 1.52rem;
    line-height: 1.22;
  }

  .buy-panel {
    gap: 14px;
  }

  .button-grid {
    gap: 9px;
  }

  .button-grid .button,
  .form-grid .button {
    min-height: 46px;
  }

  .feature,
  .panel,
  .process-panel,
  .cta-panel {
    padding: 16px;
  }

  .feature h2,
  .process-panel h2,
  .cta-panel h2,
  .panel h2 {
    font-size: 1.18rem;
    line-height: 1.38;
    text-wrap: balance;
  }

  .category-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px 11px;
  }

  .category-card-img {
    width: 86px;
  }

  .category-card strong {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .category-card p {
    font-size: 0.82rem;
  }

  .company-hero-copy h1 {
    font-size: 2rem;
    line-height: 1.22;
  }

  .company-hero-copy h1 span,
  .company-hero-intro span {
    display: inline;
  }

  .company-hero-copy h1 span + span::before,
  .company-hero-intro span + span::before {
    content: " ";
  }

  .company-hero-intro {
    font-size: 0.95rem;
    line-height: 1.76;
  }

  .company-info-panel dl {
    gap: 8px;
  }

  .company-info-panel dl div,
  .footer-business-info div,
  .footer-business-info .footer-business-wide {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
  }

  .company-info-panel dt,
  .footer-business-info dt {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .company-info-panel dd,
  .footer-business-info dd {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .footer-grid {
    gap: 18px;
    padding: 30px 0;
  }

  .footer-brand strong {
    font-size: 1.42rem;
  }

  .site-footer .footer-brand-copy small {
    font-size: 0.68rem;
  }

  .site-footer h2 {
    margin-bottom: 8px;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    line-height: 1.45;
  }

  .form-grid {
    gap: 13px;
  }

  .form-grid label {
    gap: 6px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .join-manual h2,
  .join-panel-head h2 {
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .join-manual-copy {
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .mobile-bottom-nav {
    padding-right: 5px;
    padding-left: 5px;
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    gap: 2px;
    min-height: 52px;
  }

  .mobile-bottom-nav strong {
    width: 100%;
    overflow: hidden;
    font-size: 0.7rem;
    line-height: 1.1;
    text-align: center;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-nav-icon {
    width: 20px;
    height: 20px;
  }

  .component-gallery-section {
    margin-top: 32px;
    padding-top: 26px;
  }

  .component-gallery-head {
    margin-bottom: 14px;
  }

  .component-gallery-head h2 {
    font-size: 1.3rem;
  }

  .component-gallery-head p {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .component-gallery-grid {
    gap: 10px;
  }

  .component-gallery-card div {
    min-height: 98px;
    padding: 10px;
  }

.component-gallery-card strong {
    font-size: 0.82rem;
    line-height: 1.48;
  }
}

@media print {
  @page {
    margin: 8mm;
  }

  body.printing-point-history {
    background: #fff !important;
    color: #111 !important;
  }

  body.printing-point-history * {
    visibility: hidden !important;
  }

  body.printing-point-history .member-point-history-panel,
  body.printing-point-history .member-point-history-panel * {
    visibility: visible !important;
  }

  body.printing-point-history .member-point-history-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    background: #fff !important;
    padding: 0 !important;
    color: #111 !important;
    box-shadow: none !important;
  }

  body.printing-point-history .member-point-print-watermark {
    display: block !important;
    visibility: visible !important;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 20;
    width: 72mm;
    max-width: 56vw;
    height: auto;
    opacity: 0.11;
    filter: grayscale(1) contrast(1.12);
    pointer-events: none;
    transform: translate(-50%, -50%);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.printing-point-history .member-point-history-tools,
  body.printing-point-history .member-point-history-tools * {
    display: none !important;
    visibility: hidden !important;
  }

  body.printing-point-history .admin-panel-head {
    margin-bottom: 8px;
    border-bottom: 2px solid #111;
    padding-bottom: 6px;
    color: #111 !important;
  }

  body.printing-point-history .admin-panel-head strong,
  body.printing-point-history .admin-panel-head span,
  body.printing-point-history .member-point-history-head strong,
  body.printing-point-history .member-point-history-times strong {
    color: #111 !important;
  }

  body.printing-point-history .admin-panel-head strong {
    font-size: 1rem !important;
  }

  body.printing-point-history .admin-panel-head span {
    font-size: 0.78rem !important;
  }

  body.printing-point-history .member-point-history-list {
    display: block !important;
  }

  body.printing-point-history .member-point-history-member-summary {
    gap: 4px !important;
    margin-bottom: 5px !important;
    border: 1px solid #c9ced6 !important;
    background: transparent !important;
    padding: 5px !important;
    color: #111 !important;
  }

  body.printing-point-history .member-point-history-member-summary > strong {
    color: #111 !important;
    font-size: 0.72rem !important;
  }

  body.printing-point-history .member-point-history-member-summary dl {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 3px !important;
  }

  body.printing-point-history .member-point-history-member-summary div {
    border: 1px solid #d3d8df !important;
    border-radius: 3px !important;
    background: transparent !important;
    padding: 3px 4px !important;
  }

  body.printing-point-history .member-point-history-member-summary dt {
    color: #4b5563 !important;
    font-size: 0.48rem !important;
    line-height: 1.05 !important;
    white-space: nowrap;
  }

  body.printing-point-history .member-point-history-member-summary dd {
    margin-top: 1px !important;
    color: #111 !important;
    font-size: 0.58rem !important;
    line-height: 1.1 !important;
    overflow-wrap: normal !important;
    white-space: nowrap;
  }

  body.printing-point-history .member-point-history-card {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center !important;
    gap: 0 10px !important;
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #c9ced6 !important;
    border-radius: 4px !important;
    background: transparent !important;
    margin: 0 0 3px !important;
    min-height: 34px;
    padding: 5px 7px !important;
    color: #111 !important;
  }

  body.printing-point-history .member-point-history-card:nth-of-type(20n) {
    break-after: page;
    page-break-after: always;
  }

  body.printing-point-history .member-point-history-card:last-of-type {
    break-after: auto;
    page-break-after: auto;
  }

  body.printing-point-history .member-point-history-head {
    display: grid !important;
    grid-column: auto !important;
    min-width: 0;
    align-content: center !important;
    justify-content: start !important;
    gap: 2px !important;
  }

  body.printing-point-history .member-point-history-head strong {
    font-size: 0.74rem !important;
    line-height: 1.08 !important;
    white-space: nowrap;
  }

  body.printing-point-history .member-point-history-times {
    grid-column: auto !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: center !important;
    gap: 8px !important;
  }

  body.printing-point-history .member-point-history-times div {
    min-height: 27px;
    display: grid !important;
    align-content: center !important;
    border: 1px solid #d3d8df !important;
    border-radius: 5px !important;
    background: transparent !important;
    padding: 3px 5px !important;
  }

  body.printing-point-history .member-point-history-times span {
    color: #4b5563 !important;
    font-size: 0.52rem !important;
    line-height: 1.05 !important;
    white-space: nowrap;
  }

  body.printing-point-history .member-point-history-times strong {
    margin-top: 1px !important;
    font-size: 0.59rem !important;
    line-height: 1.12 !important;
    overflow-wrap: normal !important;
    white-space: nowrap;
  }

  body.printing-point-history .status-chip {
    width: auto !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    min-height: 0 !important;
    padding: 0 !important;
    font-size: 0.64rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    white-space: nowrap;
  }
}

@media (min-width: 701px) {
  .product-grid {
    align-items: stretch;
  }

  .product-card {
    display: flex;
    height: 100%;
    flex-direction: column;
  }

  .product-card .visual-link {
    display: block;
    flex: 0 0 auto;
  }

  .product-card-body {
    display: grid;
    flex: 1;
    grid-template-rows: auto 4.65rem 3.1rem 38px auto;
    align-content: start;
    row-gap: 9px;
  }

  .product-card-body > a {
    display: block;
    min-width: 0;
    overflow: hidden;
  }

  .product-card h2 {
    display: -webkit-box;
    min-height: 4.65rem;
    max-height: 4.65rem;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .product-card-body > p {
    display: -webkit-box;
    min-height: 3.1rem;
    max-height: 3.1rem;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.55;
  }

  .price-row {
    min-height: 38px;
    align-items: center;
    margin: 0;
  }

  .product-card .button {
    align-self: end;
  }
}

@media (max-width: 700px) {
  .membership-guide-card {
    min-height: auto;
  }

  .membership-guide-card h2 {
    white-space: normal;
  }

  .membership-guide-card p {
    font-size: 0.84rem;
    line-height: 1.55;
    white-space: normal;
  }

  .membership-guide-image {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(280px, 100%);
    margin: 20px auto 0;
    transform: none;
  }
}
