* { box-sizing: border-box; }

:root {
  --gold: #b9852b;
  --line: #e8e1d8;
  --bg: #fbfaf8;
}

body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', Arial, sans-serif;
  color: #222;
  background: var(--bg);
}

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

.header {
  position: relative;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.account {
  position: absolute;
  top: 28px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.account .bar {
  width: 1px;
  height: 13px;
  background: #d3cdc4;
}

.mypage-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mypage-trigger {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.mypage-arrow {
  font-size: 10px;
  opacity: 0.7;
}

.mypage-dropdown {
  position: absolute;
  top: 24px;
  right: 0;
  min-width: 148px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 50;
}

.mypage-menu:hover .mypage-dropdown,
.mypage-menu.open .mypage-dropdown {
  display: block;
}

.mypage-dropdown a {
  display: block;
  padding: 8px 10px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
}

.mypage-dropdown a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.password-change-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.password-change-modal.show {
  display: flex;
}

.password-change-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.password-change-box {
  position: relative;
  width: min(380px, calc(100% - 32px));
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.password-change-box h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.password-change-box p {
  margin: 0 0 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

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

.password-change-form label {
  display: grid;
  gap: 6px;
  color: #333;
  font-size: 13px;
}

.password-change-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.password-change-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.password-change-actions button,
.password-change-close {
  border: 1px solid #222;
  background: #222;
  color: #fff;
  cursor: pointer;
}

.password-change-actions .cancel {
  background: #fff;
  color: #222;
}

.password-change-actions button {
  padding: 10px 14px;
}

.password-change-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  padding: 0;
  line-height: 1;
}

/* 마이페이지 */
.mypage-main {
  background: #f7f5ef;
  min-height: 640px;
}

.mypage-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 28px;
}

.mypage-hero h1 {
  margin: 8px 0 12px;
  font-size: 42px;
  font-weight: 700;
}

.mypage-hero p:not(.eyebrow) {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.mypage-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mypage-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}

.mypage-panel.full,
.mypage-actions {
  grid-column: 1 / -1;
}

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

.mypage-panel-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.mypage-panel-head button,
.mypage-actions a,
.mypage-actions button {
  border: 1px solid #222;
  background: #222;
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

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

.mypage-info-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mypage-info-list div:last-child {
  border-bottom: 0;
}

.mypage-info-list dt {
  color: #777;
  font-size: 14px;
}

.mypage-info-list dd {
  margin: 0;
  color: #222;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.mypage-info-list dd[data-empty="true"],
.mypage-empty {
  color: #777;
  font-weight: 400;
}

.mypage-empty {
  padding: 20px;
  border: 1px dashed #d8d3c8;
  background: #faf8f4;
  line-height: 1.7;
}

.mypage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.mypage-actions a {
  background: #fff;
  color: #222;
}

.mypage-danger-zone {
  border: 1px solid rgba(190, 18, 60, 0.18);
  background: rgba(190, 18, 60, 0.04);
  border-radius: 12px;
  padding: 18px;
}

.mypage-danger-zone p {
  margin: 0 0 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.mypage-danger-zone button,
.password-change-actions .danger {
  background: #be123c;
  color: #fff;
}

.mypage-business-box {
  max-width: 620px;
}

.customer-contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.customer-contact-panel article {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.customer-contact-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.customer-contact-panel h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.customer-contact-panel p {
  color: #666;
  line-height: 1.6;
}

.customer-contact-panel a {
  display: inline-flex;
  margin-top: 10px;
  color: #111;
  font-weight: 700;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.mypage-history-item {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 18px;
  background: #fff;
}

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

.mypage-history-head strong {
  font-size: 18px;
  line-height: 1.4;
}

.mypage-history-head span {
  flex: 0 0 auto;
  border: 1px solid #222;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
}

.mypage-history-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mypage-history-meta div {
  display: grid;
  gap: 4px;
}

.mypage-history-meta dt {
  color: #777;
  font-size: 12px;
}

.mypage-history-meta dd {
  margin: 0;
  color: #222;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.mypage-history-detail {
  margin: 14px 0 0;
  color: #555;
  line-height: 1.7;
  white-space: pre-wrap;
}

.logo-wrap { padding: 28px 0 17px; }

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 44px;
  letter-spacing: 9px;
  color: var(--gold);
}

.sub-logo {
  margin-top: 4px;
  color: #777;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav {
  height: 58px;
  display: flex;
  justify-content: center;
  gap: 82px;
  align-items: center;
  border-top: 1px solid #f1ede8;
  font-size: 15px;
}

.nav a {
  height: 58px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav .active { color: var(--gold); }

.nav .active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 38px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #f6f3ef 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 440px;
  padding: 58px 64px 18px;
  position: relative;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 39px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.gold-text {
  margin: 22px 0 38px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 19px;
}

.hero-icons {
  display: flex;
  gap: 42px;
}

.hero-icons div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

.hero-icons span {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.hero-icons img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.world {
  position: absolute;
  right: -8px;
  top: 20px;
  width: 730px;
  height: 350px;
  opacity: .98;
  pointer-events: none;
}

.world img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-cards {
  max-width: 1160px;
  margin: -4px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.main-card {
  height: 150px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px;
  position: relative;
}

.card-icon {
  width: 92px;
  height: 92px;
  background: #f7efe3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 42px;
  font-weight: 500;
  flex: 0 0 92px;
}

.search-icon {
  font-size: 54px;
}

.proposal-icon {
  font-size: 50px;
}

.main-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.main-card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

.arrow {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #d8c39e;
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.slogan {
  text-align: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 21px;
  margin: 34px 0 38px;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 64px;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 28px;
  font-size: 26px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title a {
  color: #666;
  font-size: 14px;
}

.brand-row {
  display: grid;
  grid-template-columns: 36px repeat(6, 1fr) 36px;
  align-items: center;
  gap: 16px;
}

.brand-row button {
  border: none;
  background: transparent;
  font-size: 28px;
  color: #777;
}

.brand-card {
  height: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  place-items: center;
  text-align: center;
}

.brand-card strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 17px;
  margin-bottom: 8px;
}

.brand-card span {
  color: #555;
  font-size: 13px;
}

.brand-card-logo {
  display: block;
  width: 100%;
  max-width: 92px;
  height: 34px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.brand-card.has-brand-image {
  gap: 2px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
}

.dots .on { background: var(--gold); }

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

.status-row div {
  min-height: 125px;
  padding: 8px 34px;
  border-right: 1px solid var(--line);
  position: relative;
}

.status-row div:last-child { border-right: none; }

.status-row span,
.status-row .status-icon {
  position: absolute;
  left: 28px;
  top: 40px;
  color: var(--gold);
}

.status-row span { font-size: 38px; }

.status-row .status-icon {
  width: 52px;
  height: 52px;
}

.status-row p {
  margin: 12px 0 4px 78px;
  color: #555;
}

.status-row strong {
  margin-left: 78px;
  color: var(--gold);
  font-size: 42px;
  font-weight: 500;
}

.status-row em {
  font-style: normal;
  font-size: 18px;
  margin-left: 5px;
  color: #333;
}

.notice {
  color: #888;
  font-size: 12px;
  margin-top: 6px;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  text-align: center;
}

.step { position: relative; padding-top: 8px; }

.step b {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
}

.step span {
  display: block;
  margin: 16px 0 12px;
  color: var(--gold);
  font-size: 44px;
}

.step h3 { margin: 0 0 9px; }

.step p {
  color: #555;
  line-height: 1.55;
  margin: 0;
  font-size: 14px;
}

.process-row i {
  font-style: normal;
  font-size: 28px;
  color: #555;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-row div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: start;
}

.why-row span {
  color: var(--gold);
  font-size: 42px;
  grid-row: span 2;
}

.why-row h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.why-row p {
  margin: 0;
  color: #555;
  line-height: 1.55;
  font-size: 13px;
}

.footer {
  position: relative;
  background: #171717;
  color: #eee;
  padding: 58px 80px 46px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 50px;
}

.footer h2 {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: Georgia, serif;
  letter-spacing: 3px;
  font-size: 32px;
}

.footer h4 { margin: 0 0 18px; }

.footer p {
  color: #d4d4d4;
  line-height: 1.8;
  margin: 0 0 7px;
  font-size: 14px;
}

.sns {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sns span {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.copy {
  position: absolute;
  right: 80px;
  bottom: 24px;
  color: #aaa;
}

@media (max-width: 900px) {
  .account {
    position: static;
    justify-content: center;
    padding-top: 16px;
  }

  .mypage-hero {
    padding: 42px 20px 22px;
  }

  .mypage-hero h1 {
    font-size: 32px;
  }

  .mypage-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 56px;
  }

  .mypage-panel {
    padding: 20px;
  }

  .mypage-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mypage-info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mypage-actions {
    justify-content: stretch;
  }

  .mypage-actions a,
  .mypage-actions button {
    flex: 1 1 160px;
    text-align: center;
  }

  .mypage-history-head {
    flex-direction: column;
  }

  .mypage-history-meta {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px;
  }

  .hero-inner { padding: 42px 24px; min-height: 520px; }

  .hero h1 { font-size: 30px; }

  .world {
    opacity: .35;
    right: -160px;
    top: 80px;
    width: 520px;
    height: 260px;
  }

  .main-cards,
  .status-row,
  .why-row {
    grid-template-columns: 1fr;
  }

  .brand-row { grid-template-columns: 1fr 1fr; }

  .brand-row button { display: none; }

  .process-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-row i { transform: rotate(90deg); }

  .footer {
    grid-template-columns: 1fr;
    padding: 42px 28px 80px;
  }

  .copy {
    left: 28px;
    right: auto;
  }
}

/* 브랜드 페이지 */
.brand-hero {
  background:
    radial-gradient(circle at 78% 45%, rgba(215,177,106,.24), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.brand-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 86px 64px 96px;
  position: relative;
}

.brand-hero-inner::after {
  content: '';
  position: absolute;
  right: 70px;
  top: 54px;
  width: 360px;
  height: 220px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(247,239,226,.78)),
    repeating-linear-gradient(45deg, rgba(185,133,43,.12) 0 1px, transparent 1px 16px);
  border: 1px solid rgba(185,133,43,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.04);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
}

.brand-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.brand-hero-desc {
  position: relative;
  z-index: 2;
  margin: 26px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.brand-search-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 64px 20px;
}

.brand-search-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 30px;
  align-items: center;
}

.brand-search-box h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.brand-search-box p {
  margin: 0;
  color: #666;
}

.search-area {
  display: flex;
  gap: 10px;
}

.search-area input {
  flex: 1;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.search-area input:focus {
  border-color: var(--gold);
}

.search-area button {
  width: 96px;
  border: none;
  border-radius: 6px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.category-tabs {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.category-tabs button {
  height: 40px;
  padding: 0 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: #555;
  cursor: pointer;
}

.category-tabs .on {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.brand-list-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 64px 68px;
}

.brand-list-section .section-title span {
  color: #777;
  font-size: 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.brand-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 22px 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.07);
}

.brand-logo-text {
  height: 72px;
  border: 1px solid #eee4d6;
  border-radius: 6px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  font-size: 17px;
  color: #222;
  background: #fffdf9;
  text-align: center;
}

.brand-logo-text.green {
  color: #197b4b;
  font-weight: 700;
}

.brand-logo-image {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 20px;
  padding: 12px;
  border: 1px solid #eee4d6;
  border-radius: 6px;
  background: #fffdf9;
}

.brand-item h3 {
  margin: 0 0 7px;
  font-size: 21px;
}

.brand-item p {
  margin: 0 0 16px;
  color: #666;
}

.brand-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  min-height: 58px;
}

.brand-tags span {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  background: #f7f1e8;
  color: #8a642c;
  border-radius: 14px;
  font-size: 12px;
}

.brand-item a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.brand-cta {
  max-width: 1152px;
  margin: 0 auto 76px;
  padding: 38px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1b, #2a2722);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.brand-cta h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.brand-cta p {
  margin: 0;
  color: #d8d8d8;
}

.brand-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .brand-hero-inner {
    padding: 56px 24px 70px;
  }

  .brand-hero-inner::after {
    display: none;
  }

  .brand-hero h1 {
    font-size: 31px;
  }

  .brand-search-section,
  .brand-list-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand-search-box {
    grid-template-columns: 1fr;
  }

  .search-area {
    flex-direction: column;
  }

  .search-area button {
    width: 100%;
    height: 48px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-cta {
    margin: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 브랜드 페이지 상단 실제 사진 적용 */
.brand-hero-inner::after {
  display: none;
}

.brand-hero-photo {
  position: absolute;
  right: 64px;
  top: 58px;
  width: 430px;
  height: 270px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(185,133,43,.18);
  box-shadow: 0 22px 46px rgba(0,0,0,.10);
  z-index: 1;
  background: #f6efe5;
}

.brand-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.92) contrast(.98) brightness(1.03);
}

.brand-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(185,133,43,.08));
  pointer-events: none;
}

@media (max-width: 900px) {
  .brand-hero-photo {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 220px;
    margin-top: 32px;
    border-radius: 18px;
  }
}

/* 상품 찾기 페이지 */
.product-hero {
  background:
    radial-gradient(circle at 78% 48%, rgba(215,177,106,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.product-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 64px 90px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
}

.product-hero h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.product-hero-desc {
  margin: 26px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.product-hero-panel {
  display: grid;
  gap: 16px;
}

.panel-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,.045);
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: center;
}

.panel-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f7efe3;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.panel-card strong {
  font-size: 18px;
}

.panel-card p {
  grid-column: 2;
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
}

.product-search-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 64px 20px;
}

.product-search-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 30px;
  align-items: center;
}

.product-search-box h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.product-search-box p {
  margin: 0;
  color: #666;
}

.product-list-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 64px 52px;
}

.product-list-section .section-title span {
  color: #777;
  font-size: 14px;
}

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

.product-item {
  display: grid;
  grid-template-rows: 220px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.07);
}

.product-thumb {
  height: 220px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(185,133,43,.20)),
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.8), transparent 28%),
    #f4eadb;
  display: grid;
  place-items: center;
  color: #9b6f24;
  font-family: Georgia, serif;
  letter-spacing: 3px;
  font-weight: 700;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  display: block;
}

.product-thumb.beige {
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(198,166,111,.24)),
    #efe4d4;
}

.product-thumb.dark {
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(185,133,43,.34)),
    #2a2825;
  color: #e9d2a4;
}

.product-thumb.gold {
  background:
    linear-gradient(135deg, rgba(255,255,255,.42), rgba(185,133,43,.36)),
    #d9bd82;
  color: #fff;
}

.product-thumb.locked {
  background:
    linear-gradient(135deg, rgba(0,0,0,.74), rgba(185,133,43,.44)),
    #171717;
  color: #fff;
}

.product-info {
  padding: 24px 22px 25px;
}

.brand-name {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.product-info > p:not(.brand-name) {
  margin: 0 0 18px;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 34px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  background: #f7f1e8;
  color: #8a642c;
  border-radius: 14px;
  font-size: 12px;
}

.product-info a {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.request-guide {
  max-width: 1152px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 0;
}

.guide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,.035);
}

.guide-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
}

.guide-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.guide-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.product-cta {
  max-width: 1152px;
  margin: 0 auto 76px;
  padding: 38px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1b, #2a2722);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.product-cta h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.product-cta p {
  margin: 0;
  color: #d8d8d8;
}

.product-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 70px;
  }

  .product-hero h1 {
    font-size: 31px;
  }

  .product-search-section,
  .product-list-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-search-box {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .request-guide {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-cta {
    margin: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 상품 제안 페이지 */
.proposal-hero {
  background:
    radial-gradient(circle at 78% 46%, rgba(215,177,106,.25), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.proposal-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 64px 92px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 70px;
  align-items: center;
}

.proposal-hero h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.proposal-hero-desc {
  margin: 26px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.proposal-visual {
  position: relative;
  height: 310px;
}

.visual-card.main {
  position: absolute;
  left: 60px;
  top: 64px;
  width: 330px;
  min-height: 178px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0,0,0,.09);
  z-index: 3;
}

.visual-card span {
  display: inline-flex;
  height: 28px;
  align-items: center;
  padding: 0 12px;
  background: #f7efe3;
  color: var(--gold);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}

.visual-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 22px;
  color: #222;
}

.visual-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.visual-mini {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7efe3;
  border: 1px solid rgba(185,133,43,.22);
  color: var(--gold);
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(0,0,0,.06);
}

.visual-mini.one {
  left: 0;
  top: 20px;
}

.visual-mini.two {
  right: 12px;
  top: 8px;
}

.visual-mini.three {
  right: 0;
  bottom: 18px;
}

.proposal-visual::before,
.proposal-visual::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(185,133,43,.22);
  border-radius: 50%;
}

.proposal-visual::before {
  width: 360px;
  height: 220px;
  left: 32px;
  top: 40px;
  transform: rotate(-12deg);
}

.proposal-visual::after {
  width: 300px;
  height: 170px;
  right: 10px;
  top: 86px;
  transform: rotate(18deg);
}

.proposal-type-section,
.proposal-form-section,
.proposal-process-section,
.proposal-check-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 64px;
}

.proposal-type-section .section-title span {
  color: #777;
  font-size: 14px;
}

.proposal-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proposal-type-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.proposal-type-grid span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f7efe3;
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 20px;
}

.proposal-type-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.proposal-type-grid p {
  margin: 0;
  color: #666;
  line-height: 1.65;
  font-size: 14px;
}

.proposal-form-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 36px;
  align-items: start;
}

.proposal-form-info {
  position: sticky;
  top: 24px;
  background: #171717;
  color: #fff;
  border-radius: 16px;
  padding: 34px 32px;
}

.proposal-form-info h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.proposal-form-info p {
  color: #d8d8d8;
  line-height: 1.75;
  margin: 0;
}

.info-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.info-box h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.info-box ul {
  margin: 0;
  padding-left: 18px;
  color: #dcdcdc;
  line-height: 1.9;
  font-size: 14px;
}

.proposal-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 12px 28px rgba(0,0,0,.045);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proposal-form label {
  display: block;
  margin-bottom: 18px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  height: 48px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
}

.proposal-form textarea {
  height: 132px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: var(--gold);
}

.upload-box {
  border: 1px dashed #d8c39e;
  background: #fffaf2;
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 4px 0 24px;
}

.upload-box span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3e5cf;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.upload-box strong {
  display: block;
  margin-bottom: 5px;
}

.upload-box p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.proposal-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.proposal-process-section {
  border-top: 1px solid var(--line);
}

.proposal-process-section h2 {
  margin: 0 0 28px;
  font-size: 26px;
}

.proposal-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proposal-process-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
}

.proposal-process-grid b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  margin-bottom: 18px;
}

.proposal-process-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.proposal-process-grid p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.proposal-check-section {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 36px;
  align-items: start;
}

.check-left h2 {
  margin: 0;
  font-size: 28px;
}

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

.check-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}

.check-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.check-list p {
  margin: 0;
  color: #666;
}

.proposal-cta {
  max-width: 1152px;
  margin: 0 auto 76px;
  padding: 38px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1b, #2a2722);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.proposal-cta h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.proposal-cta p {
  margin: 0;
  color: #d8d8d8;
}

.proposal-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .proposal-hero-inner,
  .proposal-form-layout,
  .proposal-check-section {
    grid-template-columns: 1fr;
  }

  .proposal-hero-inner,
  .proposal-type-section,
  .proposal-form-section,
  .proposal-process-section,
  .proposal-check-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .proposal-hero h1 {
    font-size: 31px;
  }

  .proposal-visual {
    height: 260px;
  }

  .proposal-type-grid,
  .proposal-process-grid {
    grid-template-columns: 1fr;
  }

  .proposal-form-info {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proposal-cta {
    margin: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 파일 첨부 영역 - 엑셀 포함 */
.file-upload {
  cursor: pointer;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload:hover {
  border-color: var(--gold);
  background: #fff6e8;
}

.file-selected-name {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-selected-name.attached {
  color: #197b4b;
}

/* 회사소개 페이지 */
.company-hero {
  background:
    radial-gradient(circle at 78% 44%, rgba(215,177,106,.26), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.company-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 92px 64px 96px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.company-hero h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 48px;
  line-height: 1.28;
  letter-spacing: -1px;
}

.company-hero-desc {
  margin: 26px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.company-hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.company-hero-buttons a {
  height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 700;
}

.company-hero-buttons a:first-child {
  background: #171717;
  color: #fff;
}

.company-hero-buttons a:last-child {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(255,255,255,.7);
}

.company-hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 24px 50px rgba(0,0,0,.09);
  overflow: hidden;
}

.company-hero-card::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(185,133,43,.14);
}

.company-hero-card span {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 14px;
  background: #f7efe3;
  color: var(--gold);
  border-radius: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
}

.company-hero-card strong {
  display: block;
  margin: 24px 0 18px;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.35;
}

.company-hero-card p {
  margin: 0;
  color: #666;
  line-height: 1.75;
}

.company-about,
.mission-section,
.why-company-section,
.connect-section,
.services-section,
.promotion-section,
.vision-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 64px;
  border-bottom: 1px solid var(--line);
}

.company-section-title h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.45;
}

.company-section-title.center {
  text-align: center;
}

.about-content {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
  align-items: start;
}

.about-content p {
  margin: 0;
  color: #555;
  line-height: 1.9;
  font-size: 18px;
}

.about-content blockquote {
  margin: 0;
  padding: 30px;
  border-left: 4px solid var(--gold);
  background: #fff;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.45;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.mission-card {
  border-radius: 18px;
  background: linear-gradient(135deg, #171717, #2b2720);
  color: #fff;
  padding: 46px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mission-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.45;
}

.mission-card p:not(.eyebrow) {
  margin: 0;
  color: #dedede;
  line-height: 1.85;
  font-size: 16px;
}

.why-compare {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 18px;
  align-items: center;
}

.compare-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  min-height: 300px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.compare-box h3 {
  margin: 0 0 22px;
  font-size: 22px;
}

.compare-box ul {
  margin: 0;
  padding-left: 20px;
  color: #555;
  line-height: 1.95;
}

.compare-box.after {
  border-color: rgba(185,133,43,.35);
  background: #fffaf2;
}

.compare-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 26px;
  margin: 0 auto;
}

.company-slogan {
  margin: 34px 0 0;
  text-align: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
}

.connect-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.connect-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 100px;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.03);
}

.connect-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.service-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 26px;
}

.service-grid h3 {
  margin: 16px 0 12px;
  font-size: 21px;
}

.service-grid p {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

.promotion-inner {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 56px;
  align-items: start;
}

.promotion-inner h2 {
  margin: 0 0 20px;
  font-size: 31px;
  line-height: 1.45;
}

.promotion-inner p:not(.eyebrow) {
  color: #555;
  line-height: 1.85;
  margin: 0;
}

.promotion-list {
  display: grid;
  gap: 13px;
}

.promotion-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
}

.promotion-list strong {
  color: #222;
}

.promotion-list span {
  color: #666;
}

.vision-section {
  border-bottom: none;
}

.vision-card {
  text-align: center;
  background: linear-gradient(135deg, #fff, #f7efe3);
  border: 1px solid rgba(185,133,43,.25);
  border-radius: 20px;
  padding: 54px 90px;
}

.vision-card h2 {
  margin: 0 0 20px;
  font-size: 32px;
}

.vision-card p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: #555;
  line-height: 1.9;
  font-size: 17px;
}

.vision-card strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 23px;
}

.company-cta {
  max-width: 1152px;
  margin: 0 auto 76px;
  padding: 38px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1b, #2a2722);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.company-cta h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.company-cta p {
  margin: 0;
  color: #d8d8d8;
}

.company-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .company-hero-inner,
  .about-content,
  .mission-card,
  .why-compare,
  .promotion-inner {
    grid-template-columns: 1fr;
  }

  .company-hero-inner,
  .company-about,
  .mission-section,
  .why-company-section,
  .connect-section,
  .services-section,
  .promotion-section,
  .vision-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .company-hero h1 {
    font-size: 34px;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .connect-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .promotion-list div {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 38px 24px;
  }

  .company-cta {
    margin: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 고객센터 페이지 */
.customer-hero {
  background:
    radial-gradient(circle at 78% 46%, rgba(215,177,106,.25), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.customer-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 86px 64px 92px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: center;
}

.customer-hero h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.customer-hero-desc {
  margin: 26px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.customer-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 24px 50px rgba(0,0,0,.09);
}

.customer-contact-card span {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 14px;
  background: #f7efe3;
  color: var(--gold);
  border-radius: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
}

.customer-contact-card strong {
  display: block;
  margin: 24px 0 12px;
  font-size: 32px;
  color: var(--gold);
}

.customer-contact-card p {
  margin: 0 0 14px;
  font-size: 18px;
}

.customer-contact-card small {
  color: #777;
  line-height: 1.6;
}

.quick-help-section,
.customer-main-section,
.notice-section,
.customer-info-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 64px;
  border-bottom: 1px solid var(--line);
}

.quick-help-section .section-title span {
  color: #777;
  font-size: 14px;
}

.quick-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-help-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.quick-help-grid span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f7efe3;
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 20px;
}

.quick-help-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.quick-help-grid p {
  margin: 0 0 18px;
  color: #666;
  line-height: 1.65;
  font-size: 14px;
}

.quick-help-grid a {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.customer-main-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 38px;
  align-items: start;
}

.faq-area,
.inquiry-area {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.faq-area h2,
.inquiry-area h2 {
  margin: 0 0 22px;
  font-size: 28px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  float: right;
  color: var(--gold);
}

.faq-list details[open] summary::after {
  content: '-';
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.inquiry-desc {
  margin: -10px 0 24px;
  color: #666;
  line-height: 1.7;
}

.customer-form label {
  display: block;
  margin-bottom: 18px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.customer-form input,
.customer-form select,
.customer-form textarea {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  height: 48px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
}

.customer-form textarea {
  height: 126px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.customer-form input:focus,
.customer-form select:focus,
.customer-form textarea:focus {
  border-color: var(--gold);
}

.customer-upload {
  margin-top: 0;
}

.customer-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.notice-list {
  display: grid;
  gap: 10px;
}

.notice-list a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.03);
}

.notice-list strong {
  font-size: 17px;
}

.notice-list span {
  color: #777;
  font-size: 14px;
}

.customer-info-section {
  border-bottom: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.customer-info-section div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.customer-info-section span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f7efe3;
  color: var(--gold);
  font-size: 30px;
}

.customer-info-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.customer-info-section p {
  margin: 0;
  color: #666;
}

@media (max-width: 900px) {
  .customer-hero-inner,
  .customer-main-section {
    grid-template-columns: 1fr;
  }

  .customer-hero-inner,
  .quick-help-section,
  .customer-main-section,
  .notice-section,
  .customer-info-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .customer-hero h1 {
    font-size: 31px;
  }

  .quick-help-grid,
  .customer-info-section {
    grid-template-columns: 1fr;
  }

  .notice-list a {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 로그인 / 회원가입 / 약관 페이지 */
.auth-page,
.join-hero,
.policy-page {
  background:
    radial-gradient(circle at 78% 42%, rgba(215,177,106,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.auth-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 64px 84px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 74px;
  align-items: center;
}

.auth-copy h1,
.join-hero h1,
.policy-wrap h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.auth-copy > p:not(.eyebrow),
.join-hero p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.auth-benefit {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.auth-benefit div {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
}

.auth-benefit span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.auth-benefit strong {
  display: block;
  margin-bottom: 5px;
}

.auth-benefit p {
  grid-column: 2;
  margin: 0;
  color: #666;
  font-size: 14px;
}

.auth-card,
.join-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
}

.auth-card h2,
.join-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.auth-desc {
  margin: 0 0 24px;
  color: #666;
  line-height: 1.6;
}

.form-helper {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.auth-inline-button {
  margin-top: 8px;
  border: 1px solid #222;
  border-radius: 7px;
  background: #222;
  color: #fff;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.auth-inline-button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.naver-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 8px;
  background: #03c75a;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.naver-btn span {
  width: 26px;
  height: 26px;
  background: #fff;
  color: #03c75a;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.or-line {
  position: relative;
  text-align: center;
  margin: 26px 0;
  color: #888;
  font-size: 13px;
}

.or-line::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}

.or-line span {
  position: relative;
  background: #fff;
  padding: 0 14px;
}

.auth-form label,
.join-form label {
  display: block;
  margin-bottom: 18px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.auth-form input,
.join-form input,
.join-form select {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  height: 48px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
}

.auth-form input:focus,
.join-form input:focus,
.join-form select:focus {
  border-color: var(--gold);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 2px 0 22px;
  font-size: 14px;
}

.check-line {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: #555 !important;
  font-weight: 500 !important;
}

.check-line input {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.auth-options a,
.auth-bottom a,
.agree-box a {
  color: var(--gold);
  font-weight: 700;
}

.auth-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.auth-bottom {
  margin: 22px 0 0;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.join-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 64px 86px;
}

.join-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 64px 78px;
}

.join-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: start;
}

.join-side {
  position: sticky;
  top: 24px;
  background: #171717;
  color: #fff;
  border-radius: 18px;
  padding: 32px;
}

.join-side h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.join-steps {
  display: grid;
  gap: 12px;
}

.join-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #ddd;
}

.join-steps .on {
  background: rgba(185,133,43,.28);
  color: #fff;
}

.join-steps b {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.join-note {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
}

.join-note h3 {
  margin: 0 0 10px;
}

.join-note p {
  margin: 0;
  color: #ddd;
  line-height: 1.7;
  font-size: 14px;
}

.form-section-title {
  margin: 30px 0 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 19px;
  font-weight: 800;
}

.join-form .form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.business-upload {
  margin-top: 4px;
}

.agree-box {
  border: 1px solid var(--line);
  background: #fffdf9;
  border-radius: 10px;
  padding: 18px;
  display: grid;
  gap: 12px;
  margin: 8px 0 24px;
}

.agree-box .all {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: #222 !important;
  font-weight: 800 !important;
}

.policy-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 78px 64px 90px;
}

.policy-updated {
  color: #777;
  margin: 18px 0 28px;
}

.policy-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 22px 24px;
  margin-bottom: 28px;
}

.policy-box.notice {
  background: #fffaf2;
  border-color: rgba(185,133,43,.28);
}

.policy-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.policy-box p {
  margin: 0;
  color: #666;
  line-height: 1.75;
}

.policy-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px;
  box-shadow: 0 12px 28px rgba(0,0,0,.045);
}

.policy-content h2 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: #555;
  line-height: 1.85;
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .auth-wrap,
  .join-layout {
    grid-template-columns: 1fr;
  }

  .auth-wrap,
  .join-hero-inner,
  .join-section,
  .policy-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .auth-copy h1,
  .join-hero h1,
  .policy-wrap h1 {
    font-size: 31px;
  }

  .join-side {
    position: static;
  }

  .auth-card,
  .join-card,
  .policy-content {
    padding: 26px 22px;
  }
}

/* 회원가입 사업자 정보 선택 입력 안내 */
.optional-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.optional-title span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 13px;
  background: #f7efe3;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.optional-guide {
  margin: -4px 0 20px;
  padding: 18px 20px;
  border: 1px solid rgba(185,133,43,.24);
  border-radius: 10px;
  background: #fffaf2;
}

.optional-guide strong {
  display: block;
  margin-bottom: 7px;
  color: #222;
}

.optional-guide p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

.upload-box strong em {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  margin-left: 6px;
  border-radius: 11px;
  background: #f7efe3;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
}

/* 비밀번호 찾기 페이지 */
.password-page {
  background:
    radial-gradient(circle at 78% 42%, rgba(215,177,106,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.password-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 64px 84px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 74px;
  align-items: center;
}

.password-copy h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.password-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.password-guide {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.password-guide div {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
}

.password-guide span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.password-guide strong {
  display: block;
  margin-bottom: 5px;
}

.password-guide p {
  grid-column: 2;
  margin: 0;
  color: #666;
  font-size: 14px;
}

.password-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
}

.password-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.password-form label {
  display: block;
  margin-bottom: 18px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.password-form input {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  height: 48px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
}

.password-form input:focus {
  border-color: var(--gold);
}

.code-area {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf9;
}

.code-input-row {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 8px;
  margin-top: 9px;
}

.code-input-row input {
  margin-top: 0;
}

.code-input-row button {
  border: none;
  border-radius: 7px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.code-area p {
  margin: 4px 0 0;
  color: #777;
  line-height: 1.6;
  font-size: 13px;
}

.new-password-area {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.reset-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .password-wrap {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .password-copy h1 {
    font-size: 31px;
  }

  .password-card {
    padding: 26px 22px;
  }
}

/* 브랜드 상세 페이지 */
.brand-detail-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(215,177,106,.24), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
  border-bottom: 1px solid var(--line);
}

.brand-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px 88px;
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 70px;
  align-items: center;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: #777;
  font-size: 14px;
}

.brand-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.brand-badge-row span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 15px;
  background: #f7efe3;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.brand-detail-copy h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.brand-kor-name {
  margin: 12px 0 0;
  font-size: 24px;
  color: var(--gold);
  font-weight: 800;
}

.brand-detail-desc {
  margin: 24px 0 0;
  color: #555;
  line-height: 1.85;
  font-size: 16px;
  max-width: 640px;
}

.brand-detail-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-detail-actions a {
  height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 700;
}

.brand-detail-actions a:first-child {
  background: #171717;
  color: #fff;
}

.brand-detail-actions a:last-child {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(255,255,255,.72);
}

.brand-detail-photo {
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(185,133,43,.18);
  box-shadow: 0 22px 46px rgba(0,0,0,.10);
  background: #f6efe5;
}

.brand-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.92) contrast(.98) brightness(1.03);
}

.brand-summary-section,
.brand-overview-section,
.brand-products-section,
.brand-business-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 64px;
  border-bottom: 1px solid var(--line);
}

.brand-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-summary-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.brand-summary-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-summary-grid strong {
  font-size: 18px;
  line-height: 1.45;
}

.brand-overview-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: start;
}

.brand-overview-main h2 {
  margin: 0 0 22px;
  font-size: 30px;
}

.brand-overview-main > p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.brand-feature-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.brand-feature-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
}

.brand-feature-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.brand-feature-list span {
  color: #666;
  line-height: 1.6;
}

.brand-info-card {
  position: sticky;
  top: 24px;
  background: #171717;
  color: #fff;
  border-radius: 16px;
  padding: 30px;
}

.brand-info-card h3 {
  margin: 0 0 22px;
  font-size: 24px;
}

.brand-info-card dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.brand-info-card div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand-info-card dt {
  color: #c9c9c9;
  font-size: 13px;
  margin-bottom: 5px;
}

.brand-info-card dd {
  margin: 0;
  font-weight: 700;
}

.brand-info-card a {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
}

.brand-products-section .section-title span {
  color: #777;
  font-size: 14px;
}

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

.brand-product-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.brand-product-thumb {
  height: 174px;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  letter-spacing: 3px;
  font-weight: 800;
  color: #9b6f24;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(185,133,43,.20)),
    #f4eadb;
}

.brand-product-thumb.cream {
  background:
    linear-gradient(135deg, rgba(255,255,255,.50), rgba(215,177,106,.32)),
    #efe4d4;
}

.brand-product-thumb.private {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,0,0,.74), rgba(185,133,43,.44)),
    #171717;
}

.brand-product-grid article > div:last-child {
  padding: 24px 22px 26px;
}

.brand-product-grid p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.brand-product-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.brand-product-grid span {
  display: block;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.brand-product-grid a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}

.brand-business-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 46px;
}

.business-left h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.business-left p {
  margin: 0;
  color: #555;
  line-height: 1.85;
}

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

.business-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.business-list strong {
  color: #222;
}

.business-list span {
  color: #666;
  line-height: 1.6;
}

.brand-detail-cta {
  max-width: 1152px;
  margin: 0 auto 76px;
  padding: 38px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1b, #2a2722);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.brand-detail-cta h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.brand-detail-cta p {
  margin: 0;
  color: #d8d8d8;
}

.brand-detail-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .brand-detail-inner,
  .brand-overview-layout,
  .brand-business-section {
    grid-template-columns: 1fr;
  }

  .brand-detail-inner,
  .brand-summary-section,
  .brand-overview-section,
  .brand-products-section,
  .brand-business-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand-detail-copy h1 {
    font-size: 36px;
  }

  .brand-detail-photo {
    height: 240px;
  }

  .brand-summary-grid,
  .brand-product-grid {
    grid-template-columns: 1fr;
  }

  .brand-info-card {
    position: static;
  }

  .business-list div {
    grid-template-columns: 1fr;
  }

  .brand-detail-cta {
    margin: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 실제 브랜드 3종 상세페이지 */
.real-brand-grid {
  grid-template-columns: repeat(4, 1fr);
}

.featured-brand {
  border-color: rgba(185,133,43,.28);
}

.humiere-card {
  color: #5d3f32;
  background: #f4eee8;
  font-size: 22px;
  letter-spacing: 1px;
}

.knivv-card {
  color: #6b7fa8;
  background: #eef4fb;
  font-family: 'Courier New', monospace;
  font-size: 28px;
  letter-spacing: -1px;
  font-weight: 800;
}

.pallelog-card {
  color: #2f2e2b;
  background: #efe6d9;
  font-family: Georgia, serif;
  font-size: 26px;
}

.real-brand-detail.humiere-theme {
  background:
    radial-gradient(circle at 78% 42%, rgba(97,63,49,.18), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f5eee8 100%);
}

.real-brand-detail.knivv-theme {
  background:
    radial-gradient(circle at 78% 42%, rgba(116,143,190,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #edf4fb 100%);
}

.real-brand-detail.pallelog-theme {
  background:
    radial-gradient(circle at 78% 42%, rgba(187,168,141,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f3ede4 100%);
}

.doc-photo {
  background: #fff;
}

.doc-photo img {
  object-fit: cover;
  object-position: center;
}

.brand-product-thumb.humiere {
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(97,63,49,.22)),
    #f3ebe5;
  color: #6a493a;
}

.brand-product-thumb.knivv {
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(151,176,217,.30)),
    #edf4fb;
  color: #6379a3;
  font-family: 'Courier New', monospace;
}

.brand-product-thumb.pallelog {
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(187,168,141,.34)),
    #efe6d9;
  color: #4b4841;
}

@media (max-width: 900px) {
  .real-brand-grid {
    grid-template-columns: 1fr;
  }
}

/* 크니브 상품 상세페이지 */
.knivv-thumb {
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(151,176,217,.30)),
    #edf4fb !important;
  color: #6379a3 !important;
  font-family: 'Courier New', monospace;
}

.product-detail-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(116,143,190,.23), transparent 36%),
    linear-gradient(180deg, #fff 0%, #edf4fb 100%);
  border-bottom: 1px solid var(--line);
}

.product-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px 88px;
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 70px;
  align-items: center;
}

.product-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.product-badge-row span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 15px;
  background: #edf4fb;
  color: #6379a3;
  font-size: 12px;
  font-weight: 800;
}

.product-detail-copy h1 {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -2px;
}

.product-kor-name {
  margin: 14px 0 0;
  font-size: 24px;
  color: #6379a3;
  font-weight: 800;
}

.product-detail-desc {
  margin: 24px 0 0;
  color: #555;
  line-height: 1.85;
  font-size: 16px;
  max-width: 640px;
}

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

.product-detail-actions a {
  height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 700;
}

.product-detail-actions a:first-child {
  background: #171717;
  color: #fff;
}

.product-detail-actions a:last-child {
  border: 1px solid #7e94ba;
  color: #6379a3;
  background: rgba(255,255,255,.72);
}

.product-detail-photo {
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(116,143,190,.22);
  box-shadow: 0 22px 46px rgba(0,0,0,.10);
  background: #fff;
}

.product-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-spec-section,
.product-overview-section,
.ingredient-code-section,
.related-products-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 64px;
  border-bottom: 1px solid var(--line);
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-spec-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.product-spec-grid span {
  display: block;
  margin-bottom: 10px;
  color: #6379a3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.product-spec-grid strong {
  font-size: 18px;
  line-height: 1.45;
}

.product-overview-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: start;
}

.product-overview-main h2 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.45;
}

.product-overview-main > p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.product-feature-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.product-feature-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
}

.product-feature-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.product-feature-list span {
  color: #666;
  line-height: 1.6;
}

.product-info-card {
  position: sticky;
  top: 24px;
  background: #171717;
  color: #fff;
  border-radius: 16px;
  padding: 30px;
}

.product-info-card h3 {
  margin: 0 0 22px;
  font-size: 24px;
}

.product-info-card dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.product-info-card div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.product-info-card dt {
  color: #c9c9c9;
  font-size: 13px;
  margin-bottom: 5px;
}

.product-info-card dd {
  margin: 0;
  font-weight: 700;
}

.product-info-card a {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 4px;
  background: #6379a3;
  color: #fff;
  font-weight: 800;
}

.ingredient-code-section {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 46px;
  align-items: start;
}

.code-left h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-family: 'Courier New', monospace;
  letter-spacing: -1px;
}

.code-left p {
  margin: 0;
  color: #555;
  line-height: 1.85;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.code-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}

.code-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #6379a3;
  font-family: 'Courier New', monospace;
}

.code-grid span {
  color: #666;
}

.related-products-section .section-title span {
  color: #777;
  font-size: 14px;
}

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

.related-product-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.related-thumb {
  height: 160px;
  display: grid;
  place-items: center;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  font-weight: 800;
  color: #6379a3;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(151,176,217,.30)),
    #edf4fb;
}

.related-product-grid h3 {
  margin: 22px 22px 8px;
  font-size: 21px;
}

.related-product-grid p {
  margin: 0 22px 18px;
  color: #666;
  line-height: 1.6;
}

.related-product-grid a {
  display: inline-block;
  margin: 0 22px 24px;
  color: #6379a3;
  font-weight: 800;
  font-size: 14px;
}

.product-request-cta {
  max-width: 1152px;
  margin: 0 auto 76px;
  padding: 38px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1b, #2a2722);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.product-request-cta h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.product-request-cta p {
  margin: 0;
  color: #d8d8d8;
}

.product-request-cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  background: #6379a3;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .product-detail-inner,
  .product-overview-layout,
  .ingredient-code-section {
    grid-template-columns: 1fr;
  }

  .product-detail-inner,
  .product-spec-section,
  .product-overview-section,
  .ingredient-code-section,
  .related-products-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-detail-copy h1 {
    font-size: 34px;
  }

  .product-detail-photo {
    height: 240px;
  }

  .product-spec-grid,
  .code-grid,
  .related-product-grid {
    grid-template-columns: 1fr;
  }

  .product-info-card {
    position: static;
  }

  .product-request-cta {
    margin: 0 24px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 상품 요청서 작성 페이지 */
.request-hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(116,143,190,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #edf4fb 100%);
  border-bottom: 1px solid var(--line);
}

.request-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px 88px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: center;
}

.request-hero h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 42px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.request-hero-desc {
  margin: 24px 0 0;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.request-summary-card {
  background: #fff;
  border: 1px solid rgba(116,143,190,.22);
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 24px 50px rgba(0,0,0,.09);
}

.request-summary-card span {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 14px;
  background: #edf4fb;
  color: #6379a3;
  border-radius: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 12px;
}

.request-summary-card strong {
  display: block;
  margin: 24px 0 16px;
  font-family: 'Courier New', monospace;
  font-size: 29px;
  line-height: 1.35;
  color: #222;
}

.request-summary-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.request-form-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 64px 74px;
}

.request-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: start;
}

.request-side {
  position: sticky;
  top: 24px;
  background: #171717;
  color: #fff;
  border-radius: 18px;
  padding: 32px;
}

.request-side h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.request-steps {
  display: grid;
  gap: 12px;
}

.request-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #ddd;
}

.request-steps .on {
  background: rgba(116,143,190,.35);
  color: #fff;
}

.request-steps b {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6379a3;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.request-note {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
}

.request-note h3 {
  margin: 0 0 10px;
}

.request-note p {
  margin: 0;
  color: #ddd;
  line-height: 1.7;
  font-size: 14px;
}

.request-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
}

.request-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.request-form label {
  display: block;
  margin-bottom: 18px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  height: 48px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
}

.request-form textarea {
  height: 140px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #6379a3;
}

.request-upload {
  margin-top: 6px;
}

.request-agree-box {
  margin: 8px 0 24px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.request-agree-box p {
  margin: 8px 0 0;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}

.request-submit {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

.request-info-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.request-info-section div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.request-info-section span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #6379a3;
  color: #fff;
  font-weight: 800;
}

.request-info-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.request-info-section p {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .request-hero-inner,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-hero-inner,
  .request-form-section,
  .request-info-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .request-hero h1 {
    font-size: 31px;
  }

  .request-side {
    position: static;
  }

  .request-card {
    padding: 26px 22px;
  }

  .request-info-section {
    grid-template-columns: 1fr;
  }
}

/* 요청 접수 완료 페이지 */
.link-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.complete-page {
  background:
    radial-gradient(circle at 78% 42%, rgba(116,143,190,.22), transparent 36%),
    linear-gradient(180deg, #fff 0%, #edf4fb 100%);
  border-bottom: 1px solid var(--line);
}

.complete-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 64px 88px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: start;
}

.complete-card {
  background: #fff;
  border: 1px solid rgba(116,143,190,.22);
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 24px 50px rgba(0,0,0,.09);
  text-align: center;
}

.complete-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #6379a3;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}

.complete-card h1 {
  margin: 0;
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: 39px;
  line-height: 1.4;
  letter-spacing: -1px;
}

.complete-desc {
  margin: 22px 0 0;
  color: #555;
  line-height: 1.85;
  font-size: 16px;
}

.complete-number {
  margin: 34px 0 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf9;
}

.complete-number span {
  display: block;
  margin-bottom: 8px;
  color: #777;
  font-size: 13px;
}

.complete-number strong {
  display: block;
  color: #6379a3;
  font-size: 22px;
  letter-spacing: .5px;
}

.complete-number p {
  margin: 10px 0 0;
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

.complete-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.complete-actions a {
  height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 800;
}

.complete-actions a:first-child {
  background: #171717;
  color: #fff;
}

.complete-actions a:last-child {
  border: 1px solid #6379a3;
  color: #6379a3;
  background: #fff;
}

.complete-process {
  background: #171717;
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.complete-process h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

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

.complete-step-list div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
}

.complete-step-list b {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9fb0d1;
  font-size: 14px;
}

.complete-step-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.complete-step-list p {
  margin: 0;
  color: #d8d8d8;
  line-height: 1.65;
  font-size: 14px;
}

.complete-help {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.complete-help h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.complete-help p {
  margin: 0 0 18px;
  color: #d8d8d8;
  line-height: 1.65;
  font-size: 14px;
}

.complete-help a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: #6379a3;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .complete-wrap {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .complete-card {
    padding: 34px 22px;
  }

  .complete-card h1 {
    font-size: 30px;
  }

  .complete-process {
    padding: 28px 22px;
  }
}

/* 관리자 페이지 */
.admin-body {
  margin: 0;
  background: #f5f1ea;
  color: #222;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 278px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #171717;
  color: #fff;
  padding: 28px 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  display: block;
  color: #fff;
  padding: 10px 10px 30px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.admin-logo strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 29px;
  letter-spacing: 2px;
}

.admin-logo span {
  display: block;
  margin-top: 7px;
  color: #c9a45d;
  font-size: 13px;
  letter-spacing: 1px;
}

.admin-menu {
  display: grid;
  gap: 7px;
  padding: 26px 0;
}

.admin-menu a {
  color: #cfcfcf;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 14px;
}

.admin-menu a.active,
.admin-menu a:hover {
  background: rgba(201,164,93,.18);
  color: #fff;
}

.admin-side-note {
  margin-top: auto;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 18px;
}

.admin-side-note span {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 13px;
  background: #c9a45d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.admin-side-note p {
  margin: 12px 0 0;
  color: #d8d8d8;
  line-height: 1.65;
  font-size: 13px;
}

.admin-main {
  padding: 34px;
  box-sizing: border-box;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}

.admin-topbar p {
  margin: 0 0 8px;
  color: #9b6f24;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 13px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -1px;
}

.admin-profile {
  background: #fff;
  border: 1px solid #e8dfd3;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 138px;
  box-shadow: 0 8px 20px rgba(0,0,0,.035);
}

.admin-profile span {
  display: block;
  color: #777;
  font-size: 12px;
  margin-bottom: 5px;
}

.admin-profile strong {
  font-size: 17px;
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.admin-overview article,
.admin-panel {
  background: #fff;
  border: 1px solid #e8dfd3;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.admin-overview article {
  padding: 24px 22px;
}

.admin-overview span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.admin-overview strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 34px;
  color: #9b6f24;
}

.admin-overview p {
  margin: 0;
  color: #666;
  font-size: 13px;
}

.admin-grid-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  margin-bottom: 22px;
}

.admin-panel {
  padding: 26px;
  overflow: hidden;
}

.admin-panel.full {
  margin-bottom: 30px;
}

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

.admin-label {
  margin: 0 0 7px;
  color: #9b6f24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.admin-panel h2 {
  margin: 0;
  font-size: 24px;
}

.admin-panel-head button {
  height: 38px;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  background: #171717;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th {
  background: #f7f1e8;
  color: #6c4a18;
  text-align: left;
  padding: 14px 13px;
  white-space: nowrap;
}

.admin-table td {
  border-bottom: 1px solid #eee6db;
  padding: 15px 13px;
  color: #333;
  vertical-align: middle;
}

.status {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status.new {
  background: #edf4fb;
  color: #52709f;
}

.status.review {
  background: #fff4d9;
  color: #9b6f24;
}

.status.done {
  background: #e9f7ef;
  color: #2d7a4d;
}

.status.hold {
  background: #f4eeee;
  color: #9a4a4a;
}

.file-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 9px;
  border-radius: 13px;
  background: #f7efe3;
  color: #9b6f24;
  font-size: 12px;
  font-weight: 800;
}

.file-badge.none {
  background: #eee;
  color: #777;
}

.admin-task-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.admin-task-list li {
  border: 1px solid #eee6db;
  background: #fffdf9;
  border-radius: 12px;
  padding: 17px;
}

.admin-task-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.admin-task-list span {
  color: #666;
  font-size: 13px;
}

.proposal-admin-grid {
  display: grid;
  gap: 13px;
}

.proposal-admin-grid article {
  border: 1px solid #eee6db;
  border-radius: 13px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.proposal-tag {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 13px;
  background: #f7efe3;
  color: #9b6f24;
  font-size: 12px;
  font-weight: 800;
}

.proposal-admin-grid h3 {
  margin: 12px 0 7px;
  font-size: 18px;
}

.proposal-admin-grid p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.proposal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.status-manage-list div {
  border: 1px solid #eee6db;
  border-radius: 12px;
  padding: 15px;
}

.status-manage-list p {
  margin: 8px 0 0;
  color: #666;
  font-size: 13px;
}

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

.admin-brand-list article {
  display: grid;
  grid-template-columns: 92px 1fr 90px;
  gap: 18px;
  align-items: center;
  border: 1px solid #eee6db;
  border-radius: 14px;
  padding: 18px;
}

.admin-brand-logo {
  height: 72px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-align: center;
}

.admin-brand-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.admin-brand-list p {
  margin: 0 0 11px;
  color: #666;
}

.admin-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-mini-tags span {
  height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 12px;
  background: #f7f1e8;
  color: #8a642c;
  font-size: 12px;
}

.admin-brand-list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  border-radius: 6px;
  background: #171717;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.product-admin-list div {
  border: 1px solid #eee6db;
  border-radius: 12px;
  padding: 18px;
  position: relative;
}

.product-admin-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.product-admin-list span {
  color: #666;
  font-size: 13px;
}

.product-admin-list b {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #9b6f24;
  font-size: 24px;
}

.admin-info-banner {
  margin-bottom: 20px;
  padding: 20px 22px;
  background: #fffaf2;
  border: 1px solid rgba(185,133,43,.24);
  border-radius: 12px;
}

.admin-info-banner strong {
  display: block;
  margin-bottom: 8px;
}

.admin-info-banner p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

  .admin-grid-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .admin-main {
    padding: 22px;
  }

  .admin-overview {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-brand-list article {
    grid-template-columns: 1fr;
  }
}

/* 관리자 - 브랜드 노출 순서 관리 */
.brand-order-admin {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #eee6db;
}

.brand-order-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.brand-order-head h3 {
  margin: 0;
  font-size: 22px;
}

.save-order-btn {
  height: 38px;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  background: #9b6f24;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.brand-order-guide {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fffaf2;
  border: 1px solid rgba(185,133,43,.24);
  color: #666;
  line-height: 1.65;
  font-size: 14px;
}

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

.brand-order-item {
  display: grid;
  grid-template-columns: 42px 86px 1fr 126px 128px;
  gap: 14px;
  align-items: center;
  border: 1px solid #eee6db;
  border-radius: 14px;
  padding: 14px;
  background: #fffdf9;
}

.order-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.order-brand-logo {
  height: 54px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  text-align: center;
}

.order-brand-info strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.order-brand-info span {
  color: #666;
  font-size: 13px;
}

.order-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

.order-toggle input {
  accent-color: #9b6f24;
}

.order-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.order-actions button {
  height: 32px;
  border: 1px solid #e1d6c7;
  background: #fff;
  color: #555;
  border-radius: 6px;
  padding: 0 9px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

.order-actions button:hover {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

@media (max-width: 900px) {
  .brand-order-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-order-item {
    grid-template-columns: 42px 1fr;
  }

  .order-brand-logo,
  .order-toggle,
  .order-actions {
    grid-column: 2;
  }

  .order-actions {
    justify-content: flex-start;
  }
}

/* 관리자 - 관리자 지정 / 권한 관리 */
.admin-overview {
  grid-template-columns: repeat(6, 1fr);
}

.admin-role-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: start;
}

.admin-invite-card {
  border: 1px solid #eee6db;
  background: #fffdf9;
  border-radius: 14px;
  padding: 24px;
}

.admin-invite-card h3,
.permission-control-panel h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.admin-invite-card > p,
.permission-control-panel > p {
  margin: 0 0 18px;
  color: #666;
  line-height: 1.65;
  font-size: 14px;
}

.admin-invite-form {
  display: grid;
  gap: 14px;
}

.admin-invite-form label {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 800;
}

.admin-invite-form input,
.admin-invite-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #e4dacb;
  border-radius: 7px;
  height: 44px;
  padding: 0 12px;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
}

.admin-invite-form input:focus,
.admin-invite-form select:focus {
  border-color: #9b6f24;
}

.admin-invite-form button {
  height: 46px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.role-help-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee6db;
}

.role-help-box strong {
  display: block;
  margin-bottom: 12px;
}

.role-help-box ul {
  margin: 0;
  padding-left: 18px;
  color: #666;
  line-height: 1.75;
  font-size: 13px;
}

.role-help-box b {
  color: #222;
}

.admin-role-table-area {
  display: grid;
  gap: 18px;
}

.role-table td strong {
  display: inline-block;
  margin-right: 7px;
}

.owner-badge {
  display: inline-flex;
  height: 23px;
  align-items: center;
  padding: 0 8px;
  border-radius: 12px;
  background: #171717;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.role-badge.owner {
  background: #171717;
  color: #fff;
}

.role-badge.manager {
  background: #fff4d9;
  color: #9b6f24;
}

.role-badge.brand {
  background: #edf4fb;
  color: #52709f;
}

.role-badge.cs {
  background: #e9f7ef;
  color: #2d7a4d;
}

.permission-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.permission-tags span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 12px;
  background: #f7f1e8;
  color: #7b5a22;
  font-size: 12px;
  font-weight: 700;
}

.role-action {
  height: 32px;
  border: 1px solid #e1d6c7;
  background: #fff;
  color: #555;
  border-radius: 6px;
  padding: 0 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

.role-action:hover {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.role-action.disabled {
  background: #eee;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

.permission-control-panel {
  border: 1px solid #eee6db;
  background: #fffdf9;
  border-radius: 14px;
  padding: 24px;
}

.permission-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.permission-check-grid label {
  border: 1px solid #eee6db;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #444;
  font-size: 13px;
  font-weight: 700;
}

.permission-check-grid input {
  accent-color: #9b6f24;
}

.permission-warning {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fff4d9;
  color: #6c4a18;
}

.permission-warning strong {
  display: block;
  margin-bottom: 7px;
}

.permission-warning p {
  margin: 0;
  line-height: 1.65;
  font-size: 13px;
}

@media (max-width: 1200px) {
  .admin-overview {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-role-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .admin-overview {
    grid-template-columns: 1fr;
  }

  .permission-check-grid {
    grid-template-columns: 1fr;
  }
}

/* v24 홈 화면 수정: 운영 현황 선 깨짐 방지 */
.section.status {
  display: block;
  height: auto;
  min-height: 0;
  padding: 48px 64px;
  border-radius: 0;
  background: transparent;
  color: #222;
  font-size: inherit;
  font-weight: inherit;
  white-space: normal;
}

/* v24 홈 메인 메뉴 링크/아이콘 강화 */
.main-card {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.09);
  border-color: rgba(185,133,43,.35);
}

.main-card .card-icon {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  font-size: 56px;
}

.main-card .search-icon {
  font-size: 78px;
  line-height: 1;
}

.main-card .proposal-icon {
  font-size: 76px;
  line-height: 1;
}

@media (max-width: 900px) {
  .section.status {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-card .card-icon {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .main-card .search-icon,
  .main-card .proposal-icon {
    font-size: 66px;
  }
}

/* v25 카카오톡 문의 / 이메일 복사 팝업 */
.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.kakao-contact-card .contact-icon {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .5px;
}

.kakao-contact-card a {
  color: #5f646d;
  font-weight: 700;
}

.kakao-contact-card a:hover {
  color: var(--gold);
}

.sns a,
.sns button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.sns button {
  font-size: 18px;
}

.sns a:hover,
.sns button:hover {
  background: var(--gold);
  color: #171717;
}

.email-copy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.email-copy-modal.show {
  display: flex;
}

.email-copy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(3px);
}

.email-copy-box {
  position: relative;
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  text-align: center;
}

.email-copy-close {
  position: absolute;
  right: 16px;
  top: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: #777;
  cursor: pointer;
  line-height: 1;
}

.email-copy-box h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.email-copy-box > p:not(.eyebrow) {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

.email-copy-value {
  margin: 24px 0 14px;
  padding: 17px 16px;
  border-radius: 10px;
  background: #fffaf2;
  border: 1px solid rgba(185,133,43,.24);
  color: #222;
  font-weight: 800;
  word-break: break-all;
}

.email-copy-action {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 7px;
  background: #171717;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.email-copy-result {
  display: none;
  margin-top: 13px;
  color: #2d7a4d;
  font-weight: 800;
  font-size: 14px;
}

.email-copy-result.show {
  display: block;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .email-copy-box {
    padding: 30px 22px;
  }
}

/* v27 브랜드 대표상품에서 상품 요청서 직접 이동 */
.brand-product-grid a {
  cursor: pointer;
}

.request-summary-card strong {
  word-break: keep-all;
}
