/* ===========================
   Cropick — cs.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800;900&family=Nunito:wght@700;800;900&display=swap');

:root {
  --primary:       #3A9E2F;
  --primary-light: #5BBD50;
  --primary-dark:  #2D7D24;
  --brown:         #3D2B1F;
  --yellow:        #F5C518;
  --text-dark:     #1A1A1A;
  --text-mid:      #444;
  --text-light:    #888;
  --border:        #E8E8E8;
  --bg:            #FFFFFF;
  --bg-soft:       #F6FAF5;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --shadow-card:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 28px rgba(0,0,0,0.14);
  --nav-h:         100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', sans-serif; color: var(--text-dark); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 1000; height: var(--nav-h); background: #fff; border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 40px; }
.navbar__logo { display: flex; align-items: center; gap: 10px; margin-right: 48px; flex-shrink: 0; }
.navbar__logo img { height: 40px; width: auto; object-fit: contain; }
.navbar__nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.navbar__nav a { font-size: 20px; font-weight: 500; color: #777; padding: 7px 16px; border-radius: 8px; letter-spacing: -0.2px; transition: color .2s, background .2s; position: relative; }
.navbar__nav a:hover { color: var(--text-dark); background: var(--bg-soft); }
.navbar__nav a.active { color: var(--primary); font-weight: 700; }
.navbar__nav a.active::after { content: ''; position: absolute; bottom: -2px; left: 16px; right: 16px; height: 2px; border-radius: 2px; background: var(--primary); }
.navbar__actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.navbar__actions .link-sm { font-size: 13px; font-weight: 500; color: #888; padding: 6px 10px; border-radius: 6px; letter-spacing: -0.1px; transition: color .2s, background .2s; }
.navbar__actions .link-sm:hover { color: var(--text-dark); background: var(--bg-soft); }
.navbar__icon-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: transparent; color: #888; cursor: pointer; transition: background .2s, color .2s; border: 1.5px solid var(--border); }
.navbar__icon-btn:hover { background: var(--bg-soft); color: var(--text-dark); border-color: #ccc; }

/* ── CS 히어로 배너 ── */
.cs-hero {
  background: #FFF9E0;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.cs-hero__text h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  letter-spacing: -0.4px;
}
.cs-hero__text h1 span { color: var(--primary); }
.cs-hero__icon {
  font-size: 72px;
  opacity: .85;
  flex-shrink: 0;
}

/* ── CS 탭바 ── */
.cs-tabbar {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--border);
  padding: 0 calc((100% - 1300px) / 2);
  background: #fff;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.cs-tabbar__tab {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  padding: 16px 22px;
  cursor: pointer;
  border: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  background: none;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  outline: none;
}
.cs-tabbar__tab:hover { color: var(--text-dark); }
.cs-tabbar__tab.active { color: var(--primary); font-weight: 700; border-bottom-color: var(--primary); }

/* ── 컨텐츠 래퍼 ── */
.cs-content { max-width: 1300px; margin: 0 auto; padding: 48px 60px 80px; }
.cs-section { display: none; }
.cs-section.active { display: block; }
.cs-section__title { font-size: 28px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.4px; margin-bottom: 32px; }

/* ── 홈 — 카테고리 버튼 ── */
.cs-home__cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.cs-cat-btn {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-mid);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.cs-cat-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-soft); }

/* ── 홈 — 검색창 ── */
.cs-home__search-wrap { text-align: center; margin-bottom: 16px; }
.cs-home__search-wrap p { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.cs-search-box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 0;
  gap: 10px;
}
.cs-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: transparent;
}
.cs-search-box input::placeholder { color: #ccc; }
.cs-search-box button { background: none; border: none; cursor: pointer; color: var(--text-mid); font-size: 20px; padding: 0; }

/* ── 문의하기 폼 ── */
.cs-inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.cs-form-row { display: flex; flex-direction: column; gap: 8px; }
.cs-form-row label { font-size: 17px; font-weight: 600; color: var(--text-dark); }
.cs-form-row input,
.cs-form-row select,
.cs-form-row textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 17px;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.cs-form-row input:focus,
.cs-form-row select:focus,
.cs-form-row textarea:focus { border-color: var(--primary); }
.cs-form-row textarea { resize: vertical; min-height: 140px; }
.cs-form-row select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
}
.cs-form-submit {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.cs-form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.cs-form-notice { font-size: 14px; color: var(--text-light); margin-top: -8px; }

/* ── FAQ ── */
.faq-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.faq-filter-row select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 40px 10px 16px;
  font-size: 17px;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-mid);
  cursor: pointer;
  min-width: 140px;
  outline: none;
}
.faq-search-box {
  display: flex;
  align-items: center;
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  gap: 8px;
  max-width: 500px;
}
.faq-search-box input { flex: 1; border: none; outline: none; font-size: 17px; font-family: 'Noto Sans KR', sans-serif; color: var(--text-dark); }
.faq-search-box input::placeholder { color: #ccc; }
.faq-search-box button { background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 16px; }

/* 카테고리 칩 */
.faq-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.faq-chip {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}
.faq-chip:hover { border-color: var(--primary); color: var(--primary); }
.faq-chip.active { background: #FFF0E8; border-color: var(--primary); color: var(--primary); }

/* 아코디언 */
.faq-list { border-top: 1.5px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); transition: background .15s; }
.faq-item.open { background: var(--bg-soft); border-radius: var(--radius-sm); }
.faq-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 16px;
  cursor: pointer;
}
.faq-item__head:hover .faq-item__q { color: var(--primary); }
.faq-item__cat {
  font-size: 13px;
  font-weight: 700;
  background: #EBF7E9;
  color: var(--primary-dark);
  border: 1px solid #c5e8be;
  border-radius: 50px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.faq-item.open .faq-item__cat {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.faq-item__q {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  transition: color .2s;
}
.faq-item.open .faq-item__q { color: var(--primary); }

/* 꺽쇄 — SVG 화살표 */
.faq-item__arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .25s;
}
.faq-item__arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-light);
  transition: stroke .2s;
}
.faq-item.open .faq-item__arrow {
  background: var(--primary);
  transform: rotate(180deg);
}
.faq-item.open .faq-item__arrow svg { stroke: #fff; }

/* 답변 영역 */
.faq-item__body {
  display: none;
  margin: 0 16px 28px 16px;
  padding: 20px 24px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.9;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.faq-item.open .faq-item__body { display: block; }

/* ── 홈 FAQ 카드 ── */
.cs-home__faq-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 48px 0 20px;
}
.cs-home__faq-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
}
.cs-home__faq-more {
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  transition: color .2s;
}
.cs-home__faq-more:hover { color: var(--primary); }
.cs-home__faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.cs-home__faq-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.cs-home__faq-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.cs-home__faq-card__num {
  width: 32px; height: 32px;
  background: var(--brown);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  margin-bottom: 14px;
}
.cs-home__faq-card__q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.cs-home__faq-card__a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── 홈 하단 — 공지/문의 ── */
.cs-home__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.cs-home__notice,
.cs-home__contact {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  background: #fff;
}
.cs-home__notice h3,
.cs-home__contact h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cs-home__notice-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cs-home__notice-list li {
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cs-home__notice-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cs-home__notice-list li:hover { color: var(--primary); }
.cs-home__notice-list .notice-date { font-size: 12px; color: var(--text-light); flex-shrink: 0; margin-left: 12px; }
.cs-home__contact { display: flex; align-items: center; gap: 20px; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.cs-home__contact:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.cs-home__contact-icon { font-size: 52px; flex-shrink: 0; }
.cs-home__contact-text p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-top: 6px; }

/* ── 가이드 모달 버튼 ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.guide-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.guide-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.guide-card__icon { font-size: 32px; flex-shrink: 0; }
.guide-card__title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.guide-card__desc { font-size: 16px; color: var(--text-light); line-height: 1.6; }

/* ── 모달 ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 1100px;
  max-width: 95vw;
  max-height: 88vh;
  display: flex;
  overflow: hidden;
  position: relative;
}
.modal__sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-soft);
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.modal__sidebar h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; letter-spacing: -0.4px; }
.modal__sidebar h2 span { color: var(--primary); }
.modal__sidebar-nav { margin-top: 28px; display: flex; flex-direction: column; gap: 4px; }
.modal__sidebar-nav a { font-size: 17px; color: var(--text-mid); padding: 8px 12px; border-radius: 8px; transition: background .2s, color .2s; }
.modal__sidebar-nav a:hover { background: #e8f5e4; color: var(--primary); }
.modal__sidebar-nav a.active { background: #e8f5e4; color: var(--primary); font-weight: 700; }
.modal__body { flex: 1; overflow-y: auto; padding: 40px 36px; }
.modal__body h3 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; letter-spacing: -0.4px; }
.modal__step { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.modal__step-num {
  width: 28px; height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.modal__step-text h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.modal__step-text p { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 22px; color: var(--text-light);
  cursor: pointer; line-height: 1;
}
.modal__close:hover { color: var(--text-dark); }

/* ── 약관 / 개인정보 ── */
.policy-box {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 2;
  max-height: 320px;
  overflow-y: auto;
}
.policy-box h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin: 20px 0 6px; }
.policy-box h3:first-child { margin-top: 0; }

/* ── FOOTER ── */
.footer-main { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer-main__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-main__logo img { height: 28px; width: auto; object-fit: contain; }
.footer-main__info { font-size: 14px; color: var(--text-light); line-height: 1.8; }
.footer-main__links { display: flex; gap: 16px; margin-top: 16px; }
.footer-main__links a { font-size: 13px; color: var(--text-light); transition: color .2s; }
.footer-main__links a:hover { color: var(--text-dark); }
.footer-main__copy { font-size: 12px; color: #bbb; margin-top: 8px; }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: #fff; border: 1px solid var(--border); border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; color: var(--text-mid); z-index: 999; opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   MOBILE — cs.css
════════════════════════════════ */
@media (max-width: 768px) {

  :root { --nav-h: 60px; }
  .navbar { height: var(--nav-h); padding: 0 16px; }
  .navbar__logo { margin-right: 0; }
  .navbar__logo img { height: 30px; }
  .navbar__nav { display: none; }
  .navbar__actions .link-sm { display: none; }
  .navbar__icon-btn { width: 32px; height: 32px; }

  /* CS 탭바 스크롤 */
  .cs-tabbar { padding: 0 16px; overflow-x: auto; scrollbar-width: none; }
  .cs-tabbar::-webkit-scrollbar { display: none; }
  .cs-tabbar__tab { font-size: 13px; padding: 12px 14px; white-space: nowrap; }

  /* CS 콘텐츠 */
  .cs-content { padding: 24px 16px 60px; }

  /* FAQ 칩 스크롤 */
  .faq-chips { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding-bottom: 4px; }
  .faq-chips::-webkit-scrollbar { display: none; }

  /* 가이드 모달 */
  .modal__inner { flex-direction: column; width: 95vw; max-height: 90vh; }
  .modal__sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .modal__sidebar-nav { flex-direction: row; overflow-x: auto; }
  .modal__sidebar-nav a { white-space: nowrap; padding: 10px 14px; }

  .footer-main { padding: 28px 16px; }
  .footer-main__info { font-size: 12px; }
}

/* ════════════════════════════════
   HAMBURGER + DRAWER
════════════════════════════════ */

/* 햄버거 버튼 — PC에서는 숨김 */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.navbar__hamburger:hover { background: var(--bg-soft, #F6FAF5); }
.navbar__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #555;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* 드로어 오버레이 */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1100;
}
.drawer-overlay.open { display: block; }

/* 드로어 패널 */
.drawer {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 100%;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
.drawer.open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E8E8;
  flex-shrink: 0;
}
.drawer__header img { height: 28px; width: auto; object-fit: contain; }
.drawer__close {
  width: 32px; height: 32px;
  background: none; border: none;
  font-size: 18px; color: #888;
  cursor: pointer;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer__close:hover { background: #f5f5f5; }

.drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
  overflow-y: auto;
}
.drawer__nav a {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  padding: 14px 24px;
  text-decoration: none;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
}
.drawer__nav a:hover { background: #F6FAF5; color: #1A1A1A; }
.drawer__nav a.active {
  color: var(--primary, #3A9E2F);
  font-weight: 700;
  border-left-color: var(--primary, #3A9E2F);
  background: rgba(58,158,47,.05);
}

.drawer__actions {
  padding: 16px 24px 32px;
  border-top: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer__actions a {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  padding: 8px 0;
  transition: color .2s;
}
.drawer__actions a:hover { color: #1A1A1A; }
.drawer__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #3A9E2F);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 0 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background .2s;
}
.drawer__login:hover { background: var(--primary-dark, #2D7D24); }

/* 모바일에서만 햄버거 표시 */
@media (max-width: 768px) {
  .navbar__hamburger { display: flex; }
}

