/* 딱모여 — style.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #FF5722;
  --primary-light: #fff3f0;
  --primary-dark: #e64a19;
  --text: #111;
  --text-sub: #555;
  --text-muted: #999;
  --border: #ebebeb;
  --bg: #f7f7f7;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.11);
  --bottom-nav-h: 64px;
}
html { scroll-behavior: smooth; background: #e8e8e8; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  /* Mobile-first: 480px 고정, 데스크탑에서는 중앙 정렬 */
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.12);
  padding-bottom: var(--bottom-nav-h);
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; object-fit: cover; }

/* ── TOP NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; height: 52px;
}
.logo { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-host {
  font-size: 13px; font-weight: 700; color: var(--white);
  background: var(--primary); padding: 7px 14px; border-radius: 8px;
}

/* 모드 토글 pill */
.mode-toggle {
  display: flex; align-items: center;
  background: #f0f0f0; border-radius: 20px;
  padding: 3px; gap: 2px;
}
.mode-tab {
  font-size: 13px; font-weight: 600; color: #999;
  background: none; border: none; padding: 5px 14px;
  border-radius: 16px; cursor: pointer; transition: all 0.2s;
}
.mode-tab.active {
  background: #fff; color: var(--primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* 로그인 유저 표시 */
.nav-user { display: flex; align-items: center; gap: 8px; }
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--primary-light);
}
.nav-nickname { font-size: 13px; font-weight: 600; color: #333; max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── 호스트 대시보드 ── */
.host-dashboard {
  min-height: calc(100vh - 52px);
  background: #f8f8f8;
  padding-bottom: 40px;
}
.host-dash-wrap {
  max-width: 480px; margin: 0 auto; padding: 20px 16px 0;
}
.host-welcome {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.host-welcome-label { font-size: 12px; color: #888; margin-bottom: 2px; }
.host-welcome-name { font-size: 20px; font-weight: 800; color: #1a1a1a; margin: 0; }
.host-new-btn {
  background: var(--primary); color: #fff;
  border: none; border-radius: 10px;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}

/* 통계 */
.host-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 24px;
}
.host-stat-card {
  background: #fff; border-radius: 14px;
  padding: 14px 10px; text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.host-stat-num { font-size: 18px; font-weight: 800; color: var(--primary); }
.host-stat-label { font-size: 11px; color: #999; }

/* 내 모임 목록 */
.host-section-header { margin-bottom: 12px; }
.host-section-title { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.host-meetings-list { display: flex; flex-direction: column; gap: 12px; }
.host-meeting-card {
  background: #fff; border-radius: 14px;
  padding: 16px; box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.host-meeting-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.host-meeting-img {
  width: 56px; height: 56px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
}
.host-meeting-info { flex: 1; }
.host-meeting-name { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.host-meeting-meta { font-size: 12px; color: #888; }
.host-meeting-stats {
  display: flex; gap: 8px;
  padding-top: 12px; border-top: 1px solid #f0f0f0;
}
.host-meeting-stat {
  flex: 1; text-align: center; font-size: 12px; color: #666;
}
.host-meeting-stat strong { display: block; font-size: 16px; font-weight: 800; color: #1a1a1a; }
.host-view-applicants {
  width: 100%; margin-top: 10px; padding: 10px;
  background: var(--primary-light); color: var(--primary);
  border: none; border-radius: 10px;
  font-size: 13px; font-weight: 700; cursor: pointer;
}
.host-empty { text-align: center; padding: 40px 0; color: #bbb; font-size: 14px; }

/* 신청자 시트 */
.applicant-sheet {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
  width: min(100%, 480px); max-height: 80vh;
  background: #fff; border-radius: 20px 20px 0 0;
  z-index: 1200; overflow-y: auto;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.applicant-sheet.open { transform: translateX(-50%) translateY(0); }
.applicant-sheet-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 16px 12px; border-bottom: 1px solid #f0f0f0;
  position: sticky; top: 0; background: #fff;
}
.applicant-list { padding: 12px 16px 40px; display: flex; flex-direction: column; gap: 12px; }
.applicant-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: #f8f8f8; border-radius: 12px;
}
.applicant-info { flex: 1; }
.applicant-name { font-size: 14px; font-weight: 700; }
.applicant-phone { font-size: 12px; color: #888; }
.applicant-status { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.applicant-status.pending { background: #fff3cd; color: #856404; }
.applicant-status.approved { background: #d1e7dd; color: #0a3622; }
.applicant-status.rejected { background: #f8d7da; color: #842029; }
.applicant-actions { display: flex; gap: 6px; }
.applicant-approve {
  background: var(--primary); color: #fff;
  border: none; border-radius: 8px; padding: 6px 12px;
  font-size: 12px; font-weight: 700; cursor: pointer;
}
.applicant-reject {
  background: #f0f0f0; color: #666;
  border: none; border-radius: 8px; padding: 6px 12px;
  font-size: 12px; font-weight: 700; cursor: pointer;
}


.hero {
  background: var(--white);
  padding: 24px 16px 20px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  background: var(--primary-light); padding: 4px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 26px; font-weight: 800; line-height: 1.3;
  letter-spacing: -0.8px; margin-bottom: 10px;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 18px; }
.hero-cta { display: flex; gap: 8px; }
.hero-cta a {
  flex: 1; text-align: center; font-size: 14px; font-weight: 700;
  padding: 13px 10px; border-radius: 12px;
}
.hero-cta .btn-primary { background: var(--primary); color: #fff; }
.hero-cta .btn-secondary { background: var(--bg); color: var(--text); }
.hero-stats {
  display: flex; gap: 0; margin-top: 20px;
  background: var(--bg); border-radius: 14px; overflow: hidden;
}
.hero-stat {
  flex: 1; padding: 14px 0; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-size: 18px; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: 11px; color: var(--text-muted); margin-top: 2px; display: block; }

/* ── BANNER CAROUSEL ── */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.banner-carousel {
  position: relative; overflow: hidden;
  width: 100%; aspect-ratio: 16/9;
  background: #e8e8e8;
}
.banner-carousel.skeleton {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite ease-in-out;
}
.banner-carousel.skeleton .banner-counter,
.banner-carousel.skeleton .banner-dots { display: none; }
.banner-track {
  display: flex; transition: transform .4s ease;
  height: 100%;
}
.banner-slide {
  min-width: 100%; height: 100%; position: relative;
  flex-shrink: 0;
  overflow: hidden; background: #e8e8e8;
}
.banner-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 18px;
}
.banner-tag {
  display: inline-block; width: fit-content;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 8px;
}
.banner-title {
  font-size: 22px; font-weight: 900; color: #fff;
  line-height: 1.25; margin-bottom: 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.banner-sub { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500; }
.banner-dots {
  position: absolute; bottom: 12px; right: 14px;
  display: flex; gap: 5px; z-index: 2;
}
.banner-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: all .2s;
}
.banner-dot.active { background: #fff; width: 18px; border-radius: 999px; }
.banner-counter {
  position: absolute; top: 12px; right: 14px;
  background: rgba(0,0,0,.45); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 3px 8px; border-radius: 100px; z-index: 2;
}

/* ── 크리에이터존 ── */
.creator-zone {
  background: #fff;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--border);
}
.creator-zone-hd {
  padding: 0 16px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.creator-zone-title {
  font-size: 15px; font-weight: 800; color: #111;
}
.creator-zone-sub {
  font-size: 12px; color: #999;
}
.creator-zone-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 16px 4px;
}
.creator-zone-scroll::-webkit-scrollbar { display: none; }
.creator-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  flex-shrink: 0; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.creator-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  position: relative;
  border: 3px solid var(--primary);
}
.creator-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.creator-avatar-initial {
  font-size: 26px; font-weight: 900; color: #fff;
  position: relative; z-index: 1;
}
.creator-avatar-lock {
  font-size: 22px;
}
.creator-locked .creator-avatar {
  border-color: #ddd; opacity: 0.5;
}
.creator-more .creator-avatar {
  border: 2px dashed #ccc !important;
  box-shadow: none;
}
.creator-name {
  font-size: 11px; font-weight: 700; color: #333;
  text-align: center; line-height: 1.3;
  max-width: 72px; word-break: keep-all;
}
.creator-locked .creator-name { color: #bbb; }

/* ── 크리에이터존 MID-FEED ── */
.creator-zone-mid {
  background: #fff;
  padding: 16px;
  margin: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.creator-zone-mid-hd {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 12px;
}
.creator-feature-card {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #fff8f5 0%, #fff3ee 100%);
  border: 1.5px solid rgba(255,87,34,0.15);
  border-radius: 16px; padding: 14px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.creator-feature-card:active { transform: scale(0.98); box-shadow: 0 2px 12px rgba(255,87,34,0.18); }
.creator-feature-left { display: flex; align-items: center; gap: 12px; flex: 1; }
.creator-feature-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid var(--primary);
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg,#FF5A00,#FF8C42);
  display: flex; align-items: center; justify-content: center;
  position: relative; box-shadow: 0 4px 14px rgba(255,87,34,0.3);
}
.creator-feature-avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.creator-feature-initial {
  font-size: 22px; font-weight: 900; color: #fff; position: relative; z-index: 1;
}
.creator-feature-info { flex: 1; min-width: 0; }
.creator-feature-badge {
  font-size: 10px; font-weight: 700; color: var(--primary);
  margin-bottom: 3px;
}
.creator-feature-name {
  font-size: 15px; font-weight: 800; color: #111;
  margin-bottom: 2px; letter-spacing: -0.3px;
}
.creator-feature-sub {
  font-size: 11px; color: #888; margin-bottom: 6px;
}
.creator-feature-tags {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.creator-feature-tags span {
  font-size: 10px; font-weight: 700;
  color: var(--primary); background: var(--primary-light);
  padding: 2px 7px; border-radius: 100px;
}
.creator-feature-cta {
  flex-shrink: 0; text-align: center;
  font-size: 12px; font-weight: 800; color: var(--primary);
  background: var(--primary-light); border-radius: 12px;
  padding: 10px 12px; line-height: 1.4;
  margin-left: 8px;
}

/* ── URGENCY STRIP ── */
.urgency-strip {
  margin: 12px 16px 0;
  background: #fff8f0; border: 1px solid #ffe0cc;
  border-radius: 12px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.urgency-strip strong { font-size: 13px; color: var(--primary); }
.urgency-strip span { font-size: 13px; color: var(--text-sub); }

/* ── CATEGORY GRID ── */
.cat-grid-section {
  background: var(--white);
  padding: 16px 16px 8px;
  border-bottom: 1px solid var(--border);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 4px;
}
.cat-icon-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  background: transparent; border: none;
  padding: 10px 6px; border-radius: 16px;
  cursor: pointer; transition: transform .15s, background .2s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.cat-icon-btn:hover { background: rgba(0,0,0,0.04); }
.cat-icon-btn:active { transform: scale(0.93); background: rgba(0,0,0,0.06); }
.cat-icon-wrap {
  width: 56px; height: 56px;
  background: transparent;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; overflow: hidden;
}
.cat-icon-wrap img { width: 36px; height: 36px; object-fit: contain; }
.cat-icon-btn span {
  font-size: 11px; font-weight: 600;
  color: var(--text-sub); text-align: center;
  line-height: 1.3; white-space: nowrap;
}

/* ── SECTION HEADER ── */
.sec-hd {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 20px 16px 12px;
}
.sec-hd h2 { font-size: 17px; font-weight: 800; }
.sec-hd a { font-size: 13px; color: var(--text-muted); }

/* ── CARD LIST ── */
.card-list { padding: 0 16px; display: flex; flex-direction: column; gap: 14px; }

/* ── MCARD ── */
.mcard {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.mcard:active { transform: scale(0.985); box-shadow: var(--shadow-md); }
.mcard-thumb { position: relative; height: 190px; overflow: hidden; }
.mcard-thumb img { height: 100%; transition: transform .35s; }
.badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 700;
  padding: 4px 9px; border-radius: 100px; z-index: 1;
}
.badge.hot { background: var(--primary); color: #fff; }
.badge.new { background: #222; color: #fff; }
.badge.free { background: var(--primary-light); color: var(--primary); }
.badge.close { background: #FFE0CC; color: #c94a00; }
.host-chip {
  position: absolute; bottom: 10px; left: 10px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(4px);
  border-radius: 100px; padding: 3px 9px 3px 3px;
}
.host-av { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.host-chip span { font-size: 12px; font-weight: 600; color: #fff; }
.mcard-body { padding: 14px; }
.mcard-tags { display: flex; gap: 5px; margin-bottom: 6px; flex-wrap: wrap; align-items: center; }
.tag {
  font-size: 11px; font-weight: 700; color: var(--primary);
  background: var(--primary-light); padding: 3px 9px; border-radius: 100px;
}
.tag-loc { font-size: 11px; color: var(--text-muted); }
.mcard-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.mcard-meta { font-size: 13px; color: var(--text-sub); margin-bottom: 14px; line-height: 1.6; }
.mcard-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
  margin-bottom: 12px;
}
.price { font-size: 17px; font-weight: 800; }
.price.free-price { color: var(--primary); }
.seats { font-size: 12px; font-weight: 700; }
.seats.red { color: var(--primary); }
.seats.yellow { color: #c94a00; }
.seats.green { color: var(--text-sub); }
.apply-btn {
  display: block; width: 100%;
  background: var(--primary); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 14px; border-radius: 12px;
  text-align: center; border: none; cursor: pointer;
  font-family: inherit; transition: background .18s;
  -webkit-tap-highlight-color: transparent;
}
.apply-btn:active { background: var(--primary-dark); }
.apply-btn.free-btn { background: var(--primary); }
.apply-btn.free-btn:active { background: #28a745; }

/* ── LOAD MORE ── */
.load-more-wrap { padding: 20px 16px; }
.load-more {
  display: block; width: 100%;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border);
  padding: 14px; border-radius: 12px; cursor: pointer;
  text-align: center;
}

/* ══ MYPAGE VIEW ══ */
.mypage-view {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  z-index: 290;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.3s ease;
  max-width: 480px;
  margin: 0 auto;
}
.mypage-view.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.18s ease;
}
.mypage-topbar {
  flex-shrink: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.mypage-topbar-title {
  flex: 1;
  margin: 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-align: center;
}
.mypage-topbar-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f0f0;
  color: #333; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mypage-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg);
}

/* ── 비로그인 ── */
.mypage-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}
.mypage-login-profile {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mypage-login-profile:active { background: #fafafa; }
.mypage-login-avatar {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
}
.mypage-login-text { flex: 1; }
.mypage-login-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.mypage-login-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.mypage-login-arrow { flex-shrink: 0; }
.mypage-login-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 0;
  border: none;
  border-radius: var(--radius);
  background: #FEE500;
  color: #3C1E1E;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s;
}
.mypage-login-btn:active { transform: scale(0.97); }

/* ── 로그인 프로필 ── */
.mypage-profile {
  background: var(--white);
  padding: 24px 20px;
  margin: 16px 16px 0;
  border-radius: var(--radius);
}
.mypage-profile-row {
  display: flex; align-items: center; gap: 16px;
}
.mypage-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f0f0;
}
.mypage-profile-info { flex: 1; }
.mypage-nickname {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.mypage-email {
  margin-top: 3px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── 메뉴 ── */
.mypage-menu {
  margin: 12px 16px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.mypage-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
.mypage-menu-item + .mypage-menu-item {
  border-top: 1px solid var(--border);
}
.mypage-menu-item:active { background: #fafafa; }
.mypage-menu-left {
  display: flex; align-items: center; gap: 12px;
}

/* ── 회원탈퇴 ── */
.mypage-danger {
  padding: 32px 20px;
  text-align: center;
}
.mypage-withdraw {
  font-size: 13px;
  color: #bbb;
  text-decoration: underline;
  cursor: pointer;
}

/* ══ SEARCH VIEW ══ */
.search-view {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  z-index: 290;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.3s ease;
  max-width: 480px;
  margin: 0 auto;
}
.search-view.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.18s ease;
}
.search-topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 10px);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.search-topbar-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f0f0; color: #333; border: none; cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 0 12px;
  height: 40px;
}
.search-input-icon { flex-shrink: 0; margin-right: 8px; }
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #222;
  outline: none;
}
.search-input::placeholder { color: #aaa; }
.search-input-clear {
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 4px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.search-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  padding: 20px 16px;
}
.search-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}
.search-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.search-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f8f8f8;
  border-radius: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.search-cat-item:active { background: #f0f0f0; }
.search-cat-emoji { font-size: 20px; }
.search-cat-name { font-size: 14px; font-weight: 600; color: #333; }
.search-results { margin-top: 8px; }
.search-empty {
  text-align: center;
  padding: 48px 16px;
}
.search-empty p { font-size: 16px; font-weight: 600; color: #555; margin-bottom: 6px; }
.search-empty span { font-size: 13px; color: #999; }

/* ══ LOGOUT CONFIRM ══ */
.logout-confirm-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.logout-confirm-overlay.open { opacity: 1; pointer-events: auto; }
.logout-confirm-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 20px;
  width: min(300px, 85vw);
  text-align: center;
}
.logout-confirm-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
}
.logout-confirm-btns { display: flex; gap: 10px; }
.logout-confirm-cancel,
.logout-confirm-ok {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.logout-confirm-cancel { background: #f0f0f0; color: #555; }
.logout-confirm-ok { background: #FF5722; color: #fff; }
.logout-confirm-cancel:active { background: #e5e5e5; }
.logout-confirm-ok:active { background: #e64a19; }

/* ── LOGIN PROMPT BOTTOM SHEET ── */
.login-prompt-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none;
  transition: background 0.3s ease;
}
.login-prompt-overlay.open {
  background: rgba(0,0,0,0.45);
  pointer-events: auto;
}
.login-prompt-sheet {
  width: min(100%, 480px);
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 12px 24px calc(24px + env(safe-area-inset-bottom));
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.login-prompt-overlay.open .login-prompt-sheet {
  transform: translateY(0);
}
.login-prompt-handle {
  width: 36px; height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto 24px;
}
.login-prompt-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.login-prompt-title strong {
  color: var(--primary);
}
.login-prompt-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.login-prompt-kakao {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 0;
  background: #FEE500;
  color: #3C1E1E;
  border: none; border-radius: 14px;
  font-size: 16px; font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s, background 0.15s;
}
.login-prompt-kakao:active { transform: scale(0.97); background: #f0d900; }
.login-prompt-cancel {
  width: 100%;
  margin-top: 8px;
  padding: 12px 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px; font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── CATEGORY VIEW (인앱 오버레이) ── */
.category-view {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.3s ease;
  max-width: 480px;
  margin: 0 auto;
}
.category-view.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.18s ease;
}

/* ── CATEGORY PAGE: TOPBAR HEADER ── */
.cat-topbar {
  flex-shrink: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.cat-topbar-title {
  flex: 1;
  margin: 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-topbar-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f0f0;
  color: #333; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ── CATEGORY PAGE: SCROLL AREA ── */
.cat-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

/* ── CATEGORY PAGE: BANNER ── */
.cat-banner {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite ease-in-out;
}
.cat-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity .3s ease;
}
.cat-banner-img.loaded { opacity: 1; }

/* ── CATEGORY PAGE: HERO (legacy, 숨김) ── */
.cat-hero { display: none; }
.cat-hero-overlay { display: none; }
.cat-hero-title { display: none; }
.cat-hero-desc { display: none; }

/* ── CATEGORY PAGE: SECTION ── */
.cat-card-section { padding-bottom: 24px; }
.cat-empty {
  text-align: center; padding: 48px 16px;
}
.cat-empty p { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.cat-empty span { font-size: 14px; color: var(--text-muted); }

/* ── CATEGORY PAGE: CREATOR PROFILE CARDS ── */
.creator-card-list { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; }
.creator-profile-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow);
  text-decoration: none; transition: box-shadow .2s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.creator-profile-card:active { transform: scale(0.985); box-shadow: var(--shadow-md); }
.cpc-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, #FF5A00, #FF8C42);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.cpc-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.cpc-avatar-initial {
  font-size: 24px; font-weight: 900; color: #fff;
  position: relative; z-index: 1;
}
.cpc-avatar-locked {
  background: #E5E8EB; border-color: #ddd;
}
.cpc-info { flex: 1; min-width: 0; }
.cpc-name { font-size: 16px; font-weight: 800; color: var(--text); display: block; margin-bottom: 3px; }
.cpc-desc { font-size: 13px; color: var(--text-sub); line-height: 1.4; margin-bottom: 6px; }
.cpc-stats { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cpc-stats span { font-size: 12px; font-weight: 600; color: var(--primary); }
.cpc-dot { width: 3px; height: 3px; border-radius: 50%; background: #ccc; }
.cpc-arrow { flex-shrink: 0; }
.cpc-locked { opacity: 0.55; pointer-events: none; }

/* ── CATEGORY PAGE: CREATOR CTA ── */
.cpc-cta-wrap { padding: 24px 16px 0; }
.cpc-cta {
  background: linear-gradient(135deg, #fff8f5 0%, #fff3ee 100%);
  border: 1.5px solid rgba(255,87,34,0.15);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center;
}
.cpc-cta-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.cpc-cta-desc { font-size: 13px; color: var(--text-sub); margin-bottom: 16px; }
.cpc-cta-btn {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 12px 28px; border-radius: 10px;
  text-decoration: none; transition: background .18s;
}
.cpc-cta-btn:active { background: var(--primary-dark); }

/* ── HOST BANNER ── */
.host-banner {
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  padding: 32px 16px; margin-top: 8px;
}
.host-banner h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.host-banner p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.host-cta-btn {
  display: block; width: 100%; text-align: center;
  font-size: 15px; font-weight: 700; color: #111; background: #fff;
  padding: 14px; border-radius: 12px;
}
.host-steps { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.host-step { flex: 1; text-align: center; }
.host-step span { display: block; font-size: 22px; font-weight: 800; color: var(--primary); }
.host-step p { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 4px; }
.step-arrow { font-size: 18px; color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: #f4f4f4; border-top: 1px solid var(--border);
  padding: 28px 16px 20px;
}
.footer-logo { font-size: 17px; font-weight: 800; color: var(--primary); display: block; margin-bottom: 8px; }
.footer p { font-size: 12px; color: var(--text-muted); line-height: 1.9; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 16px; }
.footer-links a { font-size: 12px; color: var(--text-muted); }
.footer-copy { font-size: 11px; color: #bbb; margin-top: 16px; }

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: fixed; bottom: 0;
  left: 50%;
  width: min(100%, 480px);
  transform: translateX(-50%);
  height: var(--bottom-nav-h);
  background: var(--white); border-top: 1px solid var(--border);
  display: flex; align-items: center;
  z-index: 300;
  padding-bottom: env(safe-area-inset-bottom);
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  padding: 8px 0; color: var(--text-muted);
  font-size: 10px; font-weight: 600;
  transition: color .15s;
}
.bnav-item.active { color: var(--primary); }
.bnav-icon { width: 24px; height: 24px; display: block; }

/* ── BOTTOM SHEET MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 500;
  align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 22px 22px 0 0;
  width: 100%; max-height: 92vh;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  animation: sheetUp .28s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes sheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.modal-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 12px auto 16px;
}
.modal-header {
  padding: 0 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-header h3 { font-size: 17px; font-weight: 800; }
.modal-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-sub); cursor: pointer; border: none;
}
.modal-body { padding: 20px; }
.modal-meeting-info {
  background: var(--bg); border-radius: 12px;
  padding: 14px; margin-bottom: 20px;
}
.modal-meeting-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.modal-meeting-info p { font-size: 13px; color: var(--text-sub); line-height: 1.8; }
.modal-price { font-size: 18px; font-weight: 800; color: var(--primary); margin-top: 8px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-sub); margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 16px; font-family: inherit;
  transition: border-color .18s; outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus { border-color: var(--primary); }
.form-group input::placeholder { color: var(--text-muted); }
.form-notice { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--primary); color: #fff;
  font-size: 16px; font-weight: 700;
  border-radius: 14px; border: none; cursor: pointer;
  font-family: inherit; transition: background .18s;
  -webkit-tap-highlight-color: transparent;
}
.form-submit:active { background: var(--primary-dark); }
.img-upload-area {
  border: 2px dashed #ddd; border-radius: 12px;
  padding: 20px; text-align: center;
  cursor: pointer; transition: border-color 0.2s;
  min-height: 100px; display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.img-upload-area:active { border-color: var(--primary); background: var(--primary-light); }
.img-upload-area.has-image { padding: 6px; border-style: solid; border-color: var(--primary); }
.modal-success { display: none; padding: 40px 20px; text-align: center; }
.modal-success .success-icon { font-size: 56px; margin-bottom: 16px; }
.modal-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-success p { font-size: 15px; color: var(--text-sub); line-height: 1.6; }
.payment-box {
  background: #f9f9f9; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 16px; margin-top: 20px; text-align: left;
}
.payment-box .pay-label { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.payment-box .pay-account { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.payment-box .pay-amount { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.payment-box .pay-notice { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.copy-btn {
  display: block; width: 100%; margin-top: 10px;
  background: var(--text); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 11px; border-radius: 10px;
  border: none; cursor: pointer; font-family: inherit;
}
.copy-btn:active { opacity: .8; }
.modal-success .kakao-link {
  display: block; margin-top: 20px;
  background: #FEE500; color: #1a1a1a;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 12px;
}

/* ── DESKTOP (모달만 중앙 표시) ── */
@media (min-width: 600px) {
  .modal { border-radius: 22px; max-width: 480px; margin: auto; max-height: 85vh; }
  .modal-overlay { align-items: center; }
  @keyframes sheetUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
}

/* ── FLOATING INQUIRY BUTTON ── */
.fab-inquiry {
  position: fixed;
  bottom: 80px;
  right: max(16px, calc((100vw - 480px) / 2 + 16px));
  z-index: 999;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; cursor: pointer;
  animation: fab-bounce 2s infinite;
}
@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.fab-bubble {
  background: var(--primary);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(230, 90, 40, .4);
  white-space: nowrap;
}
.fab-eyes { font-size: 22px; line-height: 1; }

/* ── 모임 상세 랜딩 페이지 ── */
.meeting-landing {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.3s ease;
}
.meeting-landing.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.18s ease;
}

/* 히어로: 숨김 (썸네일이 헤더 아래로 이동됨) */
.landing-hero {
  display: none;
}
.landing-hero::before {
  display: none;
}
.landing-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.landing-hero-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}

/* 상단 바 (흰색 헤더) */
.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.landing-topbar-title {
  flex: 1;
  margin: 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landing-topbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

/* 썸네일 영역 (헤더 아래) */
.landing-thumb-area {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF5722, #ff8a65);
}
.landing-thumb-area img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* 스크롤 래퍼 */
.landing-scroll {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

/* (legacy spacer - no longer used) */
.landing-hero-spacer {
  display: none;
}
.landing-hero-spacer::after {
  display: none;
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

/* 콘텐츠: 모달 카드 */
.landing-content {
  position: relative;
  padding: 20px 16px 140px;
  background: #fff;
  min-height: 100vh;
}

.landing-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 10px;
}
.landing-chip {
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  background: var(--primary-light); color: var(--primary);
  border: 1px solid rgba(255,87,34,0.15);
}
.landing-chip.hot { background: #fff0f0; color: #e53935; border-color: #ffcdd2; }
.landing-chip.free { background: #f0fff4; color: #2e7d32; border-color: #c8e6c9; }

.landing-title {
  font-size: 20px; font-weight: 800;
  color: #1a1a1a; line-height: 1.4;
  margin: 0 0 14px;
  letter-spacing: -0.4px;
}

.landing-meta-list {
  list-style: none; padding: 0;
  margin: 0 0 0;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.landing-meta-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #555;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.landing-meta-list li:last-child { border-bottom: none; }
.landing-meta-icon { width: 16px; text-align: center; font-size: 14px; flex-shrink: 0; }

.landing-price-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 26px;
}
.landing-price-label { font-size: 14px; color: #888; font-weight: 500; }
.landing-price-value { font-size: 22px; font-weight: 900; color: #1a1a1a; }
.landing-price-value.free { color: #2e7d32; }

.landing-section-title {
  font-size: 15px; font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.landing-bullets {
  list-style: none; padding: 0;
  margin: 0 0 26px;
}
.landing-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #444; line-height: 1.7;
  padding: 4px 0;
}
.landing-bullet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

.landing-reviews {
  margin: 0 -16px 26px;
  padding: 0 16px;
  display: flex; gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 16px;
}
.landing-reviews::-webkit-scrollbar { display: none; }
.landing-review-card {
  flex-shrink: 0; width: 220px;
  background: #f8f8f8; border-radius: 14px;
  padding: 14px;
}
.landing-review-stars { font-size: 12px; color: #FFA726; margin-bottom: 6px; }
.landing-review-text {
  font-size: 12px; color: #444; line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.landing-review-author { font-size: 11px; color: #aaa; margin-top: 8px; }

.landing-notice-box {
  background: #fffaf0;
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.landing-notice-box p {
  font-size: 12px; color: #bf6c00;
  line-height: 1.8; margin: 0;
}

/* 호스트 섹션 */
.landing-host-section {
  margin-bottom: 24px;
}
.landing-host-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 16px;
}
.landing-host-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.landing-host-info { flex: 1; }
.landing-host-name {
  font-size: 15px; font-weight: 800;
  color: #1a1a1a; margin-bottom: 2px;
}
.landing-host-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px; border-radius: 20px;
  margin-bottom: 6px;
}
.landing-host-stats {
  display: flex; gap: 10px;
  font-size: 12px; color: #888;
  margin-bottom: 8px;
}
.landing-host-stats span { display: flex; align-items: center; gap: 3px; }
.landing-host-bio {
  font-size: 12px; color: #555;
  line-height: 1.7; margin: 0;
}

/* 모임 소개 갤러리 */
.landing-gallery {
  margin-bottom: 16px;
}
.gallery-wide {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; border-radius: 12px;
  margin-bottom: 6px; display: block;
}
.gallery-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gallery-row img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; border-radius: 10px;
  display: block;
}

/* 요약 한줄 */
.landing-summary-line { font-size: 12px; color: #888; margin: 0 0 12px; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

/* ── 새 5섹션 랜딩 스타일 ── */
.ld-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.ld-title { font-size: 20px; font-weight: 800; color: #111; line-height: 1.35; margin: 0 0 6px; }
.ld-summary { font-size: 12px; color: #999; margin: 0 0 16px; }

/* 핵심 정보 */
.ld-keyinfo { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.ld-keyinfo-row { display: flex; align-items: center; gap: 12px; }
.ld-keyinfo-icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.ld-keyinfo-label { font-size: 13px; color: #555; flex: 1; }
.ld-keyinfo-badge {
  font-size: 11px; font-weight: 700; color: var(--primary);
  background: var(--primary-light); padding: 3px 8px; border-radius: 6px;
}
.ld-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #f8f8f8; border-radius: 10px; padding: 12px 14px; margin-top: 4px;
}
.ld-price-label { font-size: 13px; color: #555; }
.ld-price-value { font-size: 18px; font-weight: 800; color: #111; }

/* 갤러리 (스와이프형) */
.ld-gallery {
  display: flex; gap: 6px; overflow-x: auto;
  margin: 0 -16px 16px; padding: 0 16px;
  scrollbar-width: none;
}
.ld-gallery::-webkit-scrollbar { display: none; }
.ld-gallery img {
  flex-shrink: 0; width: 72%; max-width: 280px;
  aspect-ratio: 4/3; object-fit: cover;
  border-radius: 12px; display: block;
}
.ld-gallery img:first-child { width: 85%; }

/* 소개 텍스트 */
.ld-intro-wrap { position: relative; }
.ld-intro-text { font-size: 14px; color: #444; line-height: 1.75; margin: 0; word-break: break-word; }
.ld-intro-text p { margin: 12px 0; }
.ld-intro-text p:first-child { margin-top: 0; }
.ld-intro-text p:last-child { margin-bottom: 0; }
.ld-intro-text img { max-width: 100%; height: auto; border-radius: 10px; margin: 10px 0; display: block; }
.ld-intro-text h1, .ld-intro-text h2, .ld-intro-text h3,
.ld-intro-text h4, .ld-intro-text h5, .ld-intro-text h6 {
  font-weight: 700; color: #111; margin: 18px 0 8px; line-height: 1.4;
}
.ld-intro-text h1 { font-size: 20px; }
.ld-intro-text h2 { font-size: 18px; }
.ld-intro-text h3 { font-size: 16px; }
.ld-intro-text ul, .ld-intro-text ol { padding-left: 22px; margin: 12px 0; }
.ld-intro-text li { margin: 4px 0; }
.ld-intro-text a { color: #FF5722; text-decoration: underline; text-underline-offset: 2px; }
.ld-intro-text blockquote {
  border-left: 3px solid #ddd; padding: 4px 0 4px 12px;
  margin: 12px 0; color: #666; font-style: normal;
}
.ld-intro-text code {
  background: #f4f4f4; padding: 2px 6px; border-radius: 4px;
  font-size: 13px; font-family: ui-monospace, SFMono-Regular, monospace;
}
.ld-intro-text pre {
  background: #f7f7f7; padding: 12px; border-radius: 8px;
  overflow-x: auto; margin: 12px 0;
}
.ld-intro-text pre code { background: none; padding: 0; }
.ld-intro-text hr { border: none; border-top: 1px solid #eee; margin: 18px 0; }

/* 호스트 카드 */
.ld-host-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: #fafafa; border-radius: 14px;
  border: 1px solid #efefef;
}
.ld-host-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ld-host-info { flex: 1; }
.ld-host-name { font-size: 14px; font-weight: 700; color: #111; margin: 0 0 3px; }
.ld-host-stats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.ld-host-stats span { font-size: 11px; color: #888; }

/* 별점 */
.ld-rating { display: flex; align-items: center; gap: 4px; color: #222; font-size: 14px; margin-bottom: 2px; }
.ld-rating .star { color: #111; font-size: 14px; }
.ld-rating .count { color: #717171; font-size: 13px; margin-left: 2px; }

/* 섹션 타이틀 */
.ld-section-title { font-size: 18px; font-weight: 700; color: #111; margin: 0 0 16px; display: block; }

/* 호스트 메타 3줄 */
.ld-host-meta { display: flex; flex-direction: column; gap: 12px; }
.ld-host-meta-row { display: flex; align-items: flex-start; gap: 14px; }
.ld-host-meta-icon {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; border: 2px solid #f0f0f0;
}
.ld-host-meta-icon-placeholder {
  width: 44px; height: 44px; border-radius: 50%; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ld-host-meta-text { flex: 1; padding-top: 4px; }
.ld-host-meta-label { font-size: 14px; font-weight: 700; color: #111; }
.ld-host-meta-sub { font-size: 13px; color: #717171; margin-top: 1px; }

/* 비주얼 타임라인 (에어비앤비 체험 내용 스타일) */
.ld-timeline { display: flex; flex-direction: column; }
.ld-timeline-item { display: flex; gap: 14px; position: relative; padding-bottom: 20px; }
.ld-timeline-item:last-child { padding-bottom: 0; }
.ld-timeline-left { display: flex; flex-direction: column; align-items: center; width: 80px; flex-shrink: 0; }
.ld-timeline-img {
  width: 80px; height: 72px; border-radius: 10px;
  object-fit: cover; display: block;
}
.ld-timeline-img-placeholder {
  width: 80px; height: 72px; border-radius: 10px;
  background: #f0f0f0; display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.ld-timeline-line {
  width: 1px; background: #ddd; flex: 1;
  margin-top: 6px; min-height: 20px;
}
.ld-timeline-item:last-child .ld-timeline-line { display: none; }
.ld-timeline-right { flex: 1; padding-top: 6px; }
.ld-timeline-step { font-size: 14px; font-weight: 700; color: #111; margin: 0 0 4px; }
.ld-timeline-desc { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

/* 후기 */
.ld-reviews-header { margin-bottom: 16px; }
.ld-reviews { display: flex; flex-direction: column; gap: 20px; }
.ld-review-card { padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.ld-review-card:last-child { border-bottom: none; padding-bottom: 0; }
.ld-review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ld-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #eee; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; overflow: hidden;
}
.ld-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ld-review-meta { flex: 1; }
.ld-review-handle { font-size: 13px; font-weight: 700; color: #111; margin: 0 0 1px; letter-spacing: -0.2px; }
.ld-review-author { font-size: 12px; font-weight: 400; color: #717171; margin: 0; }
.ld-review-date { font-size: 12px; color: #717171; margin: 2px 0 0; }
.ld-review-stars { color: #111; font-size: 12px; letter-spacing: 1px; }
.ld-review-text { font-size: 14px; color: #333; line-height: 1.7; margin: 0; }

/* 만나는 장소 */
.ld-location { margin-bottom: 4px; }
.ld-location-name { font-size: 14px; font-weight: 700; color: #111; margin: 0 0 4px; }
.ld-location-addr { font-size: 13px; color: #717171; margin: 0 0 14px; }
.ld-naver-map-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: #fff;
  border: 1.5px solid #e8e8e8; border-radius: 14px;
  text-decoration: none; cursor: pointer;
}
.ld-naver-map-card:active { background: #f8f8f8; }
.ld-naver-map-pin-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: #f0faf3; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ld-naver-map-text { flex: 1; }
.ld-naver-map-title { font-size: 14px; font-weight: 700; color: #111; margin: 0 0 2px; }
.ld-naver-map-sub { font-size: 12px; color: #03C75A; font-weight: 600; margin: 0; }
.ld-naver-map-arrow { flex-shrink: 0; }

/* 호스트 자기소개 카드 (에어비앤비 큰 카드) */
.ld-host-bio-card {
  background: #fff; border: 1px solid #efefef;
  border-radius: 16px; padding: 20px;
  text-align: center;
}
.ld-host-bio-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 12px; display: block;
  border: 3px solid var(--primary-light);
}
.ld-host-bio-name { font-size: 20px; font-weight: 800; color: #111; margin: 0 0 4px; }
.ld-host-bio-title { font-size: 13px; color: #717171; margin: 0 0 14px; }
.ld-host-bio-text { font-size: 14px; color: #444; line-height: 1.75; text-align: left; margin: 0 0 16px; }
.ld-contact-btn {
  width: 100%; padding: 13px;
  background: #fff; color: #111;
  border: 1.5px solid #ddd; border-radius: 12px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ld-contact-btn::before { content: ''; }

/* 구분선 */
.landing-divider {
  height: 1px; background: #f0f0f0;
  margin: 20px 0;
}

/* 후기 헤더 */
.landing-reviews-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.landing-more-link {
  background: none; border: none;
  font-size: 12px; color: #888; cursor: pointer;
  padding: 0;
}

/* 안내사항 아이콘 리스트 */
.landing-info-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.landing-info-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #333; line-height: 1.5;
}
.landing-info-list li .info-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: #f5f5f5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #555; margin-top: 1px;
}

/* 모임 소개 더보기 */
.landing-intro-wrap {
  position: relative; overflow: hidden;
  max-height: 120px; transition: max-height 0.3s ease;
}
.landing-intro-wrap.expanded { max-height: 600px; }
.landing-intro-text {
  font-size: 13px; color: #444; line-height: 1.8;
  margin: 0; white-space: pre-line;
}
.landing-intro-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}
.landing-intro-wrap.expanded .landing-intro-fade { display: none; }
.landing-expand-btn {
  background: none; border: 1px solid #e0e0e0;
  border-radius: 8px; padding: 8px 0;
  width: 100%; font-size: 13px; color: #555;
  cursor: pointer; margin-top: 8px;
}

/* 호스트 카드 화살표 */
.landing-host-arrow { flex-shrink: 0; }

/* ── 호스트 상세 패널 ── */
.host-detail-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
}
.host-detail-overlay.open { display: block; }

.host-detail-panel {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
  width: min(100%, 480px);
  max-height: 85vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 1200;
  overflow-y: auto;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  -webkit-overflow-scrolling: touch;
}
.host-detail-panel.open {
  transform: translateX(-50%) translateY(0);
}
.host-detail-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.host-detail-body {
  padding: 20px 16px 40px;
}
.host-detail-profile {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.host-detail-avatar {
  width: 72px; height: 72px;
  border-radius: 50%; object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.host-detail-meta { flex: 1; }
.host-detail-name {
  font-size: 18px; font-weight: 800;
  color: #1a1a1a; margin: 0 0 4px;
}
.host-detail-stats {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: #888; margin-top: 6px;
}
.host-detail-stats span { display: flex; align-items: center; gap: 3px; }
.host-detail-bio {
  font-size: 13px; color: #444; line-height: 1.8;
  margin: 0 0 16px; padding: 14px;
  background: #f8f8f8; border-radius: 12px;
}
.host-detail-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 4px;
}
.host-detail-tags span {
  font-size: 12px; color: #555;
  background: #f0f0f0; border-radius: 20px;
  padding: 4px 12px;
}
.host-detail-grid {
  width: 100%; border-radius: 12px;
  object-fit: cover; margin-top: 8px;
}

.landing-bottom-bar {
  position: fixed;
  bottom: 0; left: 50%;
  width: min(100%, 480px);
  transform: translateX(-50%) translateY(100%);
  z-index: 410;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              opacity 0.3s ease 0.15s;
}
.landing-bottom-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.landing-like-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  border: none; background: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 4px 8px; min-width: 44px;
}
.landing-like-btn svg {
  width: 24px; height: 24px;
  stroke: #ccc; fill: none;
  transition: all 0.2s;
}
.landing-like-btn.liked svg { stroke: #e53935; fill: #e53935; }
.landing-like-count { font-size: 11px; color: #999; }

.landing-cta-wrap {
  flex: 1; display: flex; flex-direction: column; align-items: center;
}
.landing-cta-status {
  display: none;
  font-size: 12px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.landing-apply-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none; border-radius: 14px;
  font-size: 16px; font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s, opacity 0.15s;
  box-shadow: 0 4px 16px rgba(255,87,34,0.3);
  letter-spacing: -0.2px;
}
.landing-apply-btn:active { transform: scale(0.98); opacity: 0.92; }
.landing-apply-btn.free-meeting {
  background: linear-gradient(135deg, #43a047, #2e7d32);
  box-shadow: 0 4px 16px rgba(67,160,71,0.3);
}

@media (min-width: 600px) {
  .meeting-landing { max-width: 480px; margin: 0 auto; left: 0; right: 0; }
}

/* ====== 호스트 신청 폼 ====== */
.host-apply-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 3000;
}
.host-apply-overlay.open { display: block; }
.host-apply-modal {
  display: none; position: fixed; inset: 0; z-index: 3001;
  background: #fff; overflow-y: auto;
  transform: translateY(100%); transition: transform 0.32s cubic-bezier(.32,.72,0,1);
}
.host-apply-modal.open { display: block; transform: translateY(0); }
.host-apply-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.haf-steps { display: flex; gap: 6px; justify-content: center; padding: 16px 0 8px; }
.haf-step { width: 28px; height: 4px; border-radius: 2px; background: #e8e8e8; transition: background .2s; }
.haf-step.active { background: #E8481C; }
.haf-page { padding: 16px 20px 32px; }
.haf-step-title { font-size: 20px; font-weight: 800; color: #111; margin: 0 0 4px; }
.haf-step-sub { font-size: 14px; color: #717171; margin: 0 0 20px; }
.haf-field { margin-bottom: 14px; }
.haf-label { display: block; font-size: 12px; font-weight: 700; color: #555; margin-bottom: 6px; }
.haf-input {
  width: 100%; padding: 12px 14px; background: #f7f7f7;
  border: 1.5px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit; color: #111; outline: none;
}
.haf-input:focus { border-color: #E8481C; background: #fff; }
.haf-textarea {
  width: 100%; padding: 12px 14px; background: #f7f7f7;
  border: 1.5px solid #e8e8e8; border-radius: 10px;
  font-size: 15px; font-family: inherit; color: #111; outline: none;
  min-height: 100px; resize: vertical;
}
.haf-textarea:focus { border-color: #E8481C; background: #fff; }
.haf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.haf-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.haf-photo-grid-5 { grid-template-columns: repeat(5, 1fr); }
.haf-photo-slot {
  aspect-ratio: 1; border-radius: 10px; border: 1.5px dashed #ddd;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden; background: #f7f7f7; position: relative;
}
.haf-photo-slot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.haf-photo-plus { font-size: 22px; color: #bbb; }
.haf-tag-wrap {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  padding: 8px 10px; background: #f7f7f7; border: 1.5px solid #e8e8e8;
  border-radius: 10px; min-height: 44px;
}
.haf-tag-chip {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; background: #E8481C; color: #fff;
  border-radius: 100px; font-size: 13px; font-weight: 600;
}
.haf-tag-chip button { background: none; border: none; color: #fff; cursor: pointer; font-size: 14px; line-height: 1; padding: 0; }
.haf-tag-input { border: none; outline: none; background: transparent; font-size: 14px; font-family: inherit; flex: 1; min-width: 80px; }
.haf-next-btn {
  flex: 1; width: 100%; padding: 15px; margin-top: 8px;
  background: #E8481C; color: #fff; border: none; border-radius: 12px;
  font-size: 16px; font-weight: 800; cursor: pointer; font-family: inherit;
}
.haf-back-btn {
  flex: none; width: 80px; padding: 15px; margin-top: 8px;
  background: #f0f0f0; color: #555; border: none; border-radius: 12px;
  font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.haf-done { text-align: center; padding-top: 60px; }
.haf-done-icon { width: 64px; height: 64px; border-radius: 50%; background: #E8481C; color: #fff; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.haf-done-title { font-size: 22px; font-weight: 800; color: #111; margin: 0 0 10px; }
.haf-done-sub { font-size: 14px; color: #717171; line-height: 1.7; margin: 0 0 32px; }
