/* ================================================
   모두의체험단 — 아싸뷰 스타일 리디자인
   화이트 베이스 · 밝고 깔끔 · 캠페인 중심
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;900&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --brand: #FF5C35;
  --naver: #03C75A;
  --naver-dark: #00A649;
  --brand-dark: #E04A25;
  --brand-light: #FFF2EE;
  --brand2: #FF7A55;
  --accent: #FFD166;
  --dark: #1A1A2E;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #E5E7EB;
  --gray-200: #F3F4F6;
  --gray-100: #F9FAFB;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.1);
  --shadow-brand: 0 6px 20px rgba(255,92,53,0.35);
  --font: 'Noto Sans KR', sans-serif;
  --font-en: 'Outfit', sans-serif;
  --header-h: 60px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #ffffff; color: var(--gray-900); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gray-300);
  height: var(--header-h); box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 100%; gap: 20px;
}
.logo { font-family: var(--font-en); font-weight: 800; font-size: 1.3rem; color: var(--brand); display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.logo-sub { font-family: var(--font); font-size: 0.75rem; font-weight: 600; color: var(--gray-500); }

.gnb { display: flex; align-items: center; gap: 2px; flex: 1; }
.gnb-link { padding: 7px 12px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; color: var(--gray-700); transition: all 0.15s; white-space: nowrap; }
.gnb-link:hover { background: var(--gray-100); color: var(--gray-900); }
.gnb-link.active { color: var(--brand); font-weight: 700; }

/* 드롭다운 */
.gnb-drop { position: relative; }
.gnb-drop-btn { display: flex; align-items: center; gap: 4px; padding: 7px 12px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; color: var(--gray-700); cursor: pointer; background: none; border: none; font-family: var(--font); transition: all 0.15s; white-space: nowrap; }
.gnb-drop-btn:hover { background: var(--gray-100); }
.gnb-drop-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius);
  box-shadow: var(--shadow-md); min-width: 160px; padding: 6px;
  opacity: 0; visibility: hidden; transition: all 0.15s; z-index: 500;
}
.gnb-drop:hover .gnb-drop-menu { opacity: 1; visibility: visible; }
.gnb-drop-item { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--gray-700); transition: background 0.1s; }
.gnb-drop-item:hover { background: var(--gray-100); }

.header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.btn-ghost { padding: 7px 14px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 600; color: var(--gray-700); border: 1px solid var(--gray-300); background: var(--white); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-solid { padding: 7px 16px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 700; color: var(--white); background: var(--brand); border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-solid:hover { background: var(--brand-dark); }
.btn-biz { padding: 7px 16px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 700; color: var(--brand); background: var(--brand-light); border: 1px solid rgba(255,92,53,0.3); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-biz:hover { background: var(--brand); color: var(--white); }

/* 유저 드롭다운 */
.user-drop { position: relative; }
.user-drop-btn { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 50px; font-size: 0.84rem; font-weight: 700; color: var(--brand); background: var(--brand-light); border: 1px solid rgba(255,92,53,0.2); cursor: pointer; font-family: var(--font); transition: all 0.15s; }
.user-drop-btn:hover { background: var(--brand); color: var(--white); }
.user-drop-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius);
  box-shadow: var(--shadow-md); min-width: 180px; overflow: hidden;
  opacity: 0; visibility: hidden; transition: all 0.15s; z-index: 500;
}
.user-drop:hover .user-drop-menu { opacity: 1; visibility: visible; }
.user-drop-item { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 0.85rem; color: var(--gray-700); transition: background 0.1s; }
.user-drop-item:hover { background: var(--gray-100); }
.user-drop-item.red { color: var(--danger); }
.user-drop-hr { border: none; border-top: 1px solid var(--gray-200); }

/* ── 탭 바 (카테고리) ── */
.tab-bar { background: var(--white); border-bottom: 1px solid var(--gray-300); }
.tab-bar-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; width: 100%; }
.tab-bar-inner::-webkit-scrollbar { display: none; }
.tab-item { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 8px; font-size: 0.85rem; font-weight: 600; color: var(--gray-500); border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; transition: all 0.15s; flex: 1; }
.tab-item:hover { color: var(--gray-900); }
.tab-item.active { color: var(--brand); border-bottom-color: var(--brand); }

/* ── 메인 레이아웃 ── */
.main-wrap { max-width: 1400px; margin: 0 auto; padding: 24px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.main-content { min-width: 0; }
.main-side { display: flex; flex-direction: column; gap: 16px; }

/* ── 섹션 ── */
.sec { margin-bottom: 32px; }
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sec-title { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); }
.sec-more { font-size: 0.82rem; color: var(--gray-500); font-weight: 600; transition: color 0.15s; }
.sec-more:hover { color: var(--brand); }

/* ── 캠페인 카드 그리드 (아싸뷰 스타일) ── */
.cp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cp-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.2s; display: block; color: inherit;
  border: 1px solid var(--gray-200);
}
.cp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cp-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--gray-200); }
.cp-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cp-card:hover .cp-thumb img { transform: scale(1.04); }
.cp-type-row { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.cp-ch { display: inline-flex; align-items: center; gap: 3px; background: rgba(0,0,0,0.6); color: white; padding: 2px 7px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; }
.cp-type-badge { background: var(--brand); color: white; padding: 2px 7px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; }
.cp-deadline-badge { position: absolute; top: 8px; right: 8px; background: rgba(239,68,68,0.9); color: white; padding: 2px 7px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; }
.cp-body { padding: 12px; }
.cp-title { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; min-height: 2.5em; }
.cp-sub { font-size: 0.76rem; color: var(--gray-500); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.cp-apply-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.76rem; }
.cp-apply-txt { color: var(--gray-500); }
.cp-apply-num { font-weight: 700; color: var(--gray-900); }
.cp-apply-num strong { color: var(--brand); }
.cp-deadline { font-size: 0.72rem; color: var(--gray-400); margin-top: 4px; }

/* ── 사이드바 ── */
.side-card { background: var(--white); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.side-card-title { font-size: 0.92rem; font-weight: 800; color: var(--gray-900); margin-bottom: 14px; }

/* 빠른 검색 */
.side-search { display: flex; gap: 6px; margin-bottom: 14px; }
.side-search input { flex: 1; padding: 9px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.84rem; font-family: var(--font); outline: none; }
.side-search input:focus { border-color: var(--brand); }
.side-search button { padding: 9px 14px; background: var(--brand); color: white; border: none; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: var(--font); }
.side-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.side-cat-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 4px; border-radius: var(--radius-sm); background: var(--gray-100); font-size: 0.72rem; font-weight: 600; color: var(--gray-700); cursor: pointer; transition: all 0.15s; border: 1px solid transparent; }
.side-cat-btn:hover { background: var(--brand-light); border-color: rgba(255,92,53,0.3); color: var(--brand); }
.side-cat-btn .icon { font-size: 1.3rem; }

/* 광고주 CTA 카드 */
.biz-cta-card { background: linear-gradient(135deg, var(--brand), #FF8A60); border-radius: var(--radius); padding: 20px; color: white; }
.biz-cta-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.biz-cta-card p { font-size: 0.78rem; opacity: 0.9; margin-bottom: 14px; line-height: 1.6; }
.biz-cta-card a { display: block; background: white; color: var(--brand); text-align: center; padding: 9px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 800; transition: opacity 0.15s; }
.biz-cta-card a:hover { opacity: 0.9; }

/* 관심분야 카드 */
.interest-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.interest-chip { padding: 5px 12px; border-radius: 50px; background: var(--gray-100); border: 1px solid var(--gray-300); font-size: 0.78rem; font-weight: 600; color: var(--gray-600); cursor: pointer; transition: all 0.15s; }
.interest-chip:hover, .interest-chip.active { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }

/* ── HERO 배너 (아싸뷰처럼 심플) ── */
.hero-banner {
  background: linear-gradient(135deg, #1A1A2E 0%, #0F2040 100%);
  border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 24px;
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.hero-banner::before { content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; background: rgba(255,92,53,0.15); border-radius: 50%; }
.hero-banner-left { position: relative; z-index: 1; }
.hero-banner-badge { display: inline-block; background: rgba(255,92,53,0.2); border: 1px solid rgba(255,92,53,0.4); color: #FFB38A; padding: 4px 12px; border-radius: 50px; font-size: 0.74rem; font-weight: 700; margin-bottom: 10px; }
.hero-banner-title { font-size: 1.6rem; font-weight: 900; color: white; line-height: 1.3; margin-bottom: 8px; }
.hero-banner-title em { color: #FF9A5C; font-style: normal; }
.hero-banner-sub { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.hero-banner-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-hero1 { padding: 10px 22px; background: var(--brand); color: white; border-radius: 50px; font-size: 0.88rem; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-brand); }
.btn-hero1:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-hero2 { padding: 10px 22px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border-radius: 50px; font-size: 0.88rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s; }
.btn-hero2:hover { background: rgba(255,255,255,0.18); }
.hero-banner-stats { display: flex; gap: 24px; position: relative; z-index: 1; flex-shrink: 0; }
.hero-stat { text-align: center; }
.hero-stat-n { font-family: var(--font-en); font-size: 1.6rem; font-weight: 800; color: white; line-height: 1.1; }
.hero-stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 3px; }

/* ── 폼 ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-label .req { color: var(--brand); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: 0.88rem; font-family: var(--font); color: var(--gray-900); background: var(--white); transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,92,53,0.1); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-hint { font-size: 0.76rem; color: var(--gray-500); margin-top: 5px; }

/* ── 버튼 ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; font-family: var(--font); }
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { background: white; color: var(--brand); border: 1.5px solid var(--brand); }
.btn-outline:hover { background: var(--brand-light); }
.btn-gray { background: var(--gray-200); color: var(--gray-700); }
.btn-gray:hover { background: var(--gray-300); }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-dark { background: var(--dark); color: white; }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-lg { padding: 12px 28px; font-size: 0.95rem; border-radius: 50px; }
.btn-block { width: 100%; justify-content: center; }

/* ── 뱃지 ── */
.badge { padding: 2px 8px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }
.badge-new { background: var(--brand); color: white; }
.badge-hot { background: #FF3B3B; color: white; }

/* ── 선정확률 ── */
.chance { font-size: 0.72rem; font-weight: 700; padding: 2px 7px; border-radius: 50px; }
.chance-hi { background: #E9F7EF; color: #1D8348; }
.chance-md { background: #FEF9E7; color: #B7950B; }
.chance-lo { background: var(--gray-200); color: var(--gray-500); }

/* ── 진행률 바 ── */
.prog { height: 3px; background: var(--gray-200); border-radius: 2px; margin-top: 6px; overflow: hidden; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--brand), #FF9A5C); border-radius: 2px; }

/* ── 카드 일반 ── */
.card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.card-title { font-size: 1rem; font-weight: 800; margin-bottom: 14px; }

/* ── 통계 그리드 ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; }
.stat-card { background: white; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); border-left: 3px solid var(--brand); border: 1px solid var(--gray-200); border-left: 3px solid var(--brand); }
.stat-num { font-family: var(--font-en); font-size: 1.6rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: 0.76rem; color: var(--gray-500); margin-top: 3px; }

/* ── 등급 ── */
.grade-badge { padding: 2px 8px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; display: inline-block; }
.grade-bronze { background: #FDF2E9; color: #935116; }
.grade-silver { background: #F2F3F4; color: #616A6B; }
.grade-gold { background: #FEF9E7; color: #B7950B; }
.grade-platinum { background: #EBF5FB; color: #1A5276; }
.grade-diamond { background: #F4ECF7; color: #6C3483; }

/* ── 상태 ── */
.status-badge { padding: 2px 8px; border-radius: 50px; font-size: 0.74rem; font-weight: 700; }
.status-pending { background: #FEF9E7; color: #B7950B; }
.status-selected { background: #E9F7EF; color: #1D8348; }
.status-rejected { background: #FDEDEC; color: #922B21; }
.status-completed { background: #EBF5FB; color: #1A5276; }
.status-active { background: #E9F7EF; color: #1D8348; }
.status-closed { background: var(--gray-200); color: var(--gray-500); }

/* ── 테이블 ── */
.tbl-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: white; font-size: 0.85rem; }
thead { background: var(--gray-100); }
th { padding: 11px 14px; text-align: left; font-weight: 700; color: var(--gray-600); border-bottom: 2px solid var(--gray-200); white-space: nowrap; }
td { padding: 11px 14px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--brand-light); }

/* ── 페이지네이션 ── */
.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 32px; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1px solid var(--gray-300); font-size: 0.85rem; font-weight: 600; color: var(--gray-700); cursor: pointer; background: white; transition: all 0.15s; }
.page-btn:hover, .page-btn.active { background: var(--brand); border-color: var(--brand); color: white; }

/* ── 모달 ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.2s; }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal { background: white; border-radius: var(--radius-lg); padding: 28px; max-width: 480px; width: 100%; box-shadow: var(--shadow-md); transform: scale(0.95); transition: transform 0.2s; }
.modal-overlay.show .modal { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-title { font-size: 1.1rem; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray-500); }

/* ── 토스트 ── */
.toast-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 12px 18px; background: var(--gray-900); color: white; border-radius: var(--radius); font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-md); animation: slideUp 0.25s ease; max-width: 300px; }
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }
@keyframes slideUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* ── 알림 ── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; margin-bottom: 16px; }
.alert-success { background: #E9F7EF; color: #1D8348; border-left: 4px solid var(--success); }
.alert-error { background: #FDEDEC; color: #922B21; border-left: 4px solid var(--danger); }
.alert-info { background: #EBF5FB; color: #1A5276; border-left: 4px solid var(--info); }

/* ── 빈 상태 ── */
.empty { text-align: center; padding: 50px 20px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
.empty-desc { font-size: 0.88rem; color: var(--gray-500); }

/* ── 마이페이지 레이아웃 ── */
.my-layout { display: grid; grid-template-columns: 220px 1fr; gap: 20px; max-width: 1400px; margin: 24px auto; padding: 0 24px; }
.my-sidebar { position: sticky; top: calc(var(--header-h) + 16px); height: fit-content; }
.my-menu { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--gray-200); }
.my-menu-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 0.86rem; font-weight: 600; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); transition: all 0.15s; }
.my-menu-item:last-child { border-bottom: none; }
.my-menu-item:hover, .my-menu-item.active { background: var(--brand-light); color: var(--brand); }

/* ── 인증 ── */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray-100); padding: 40px 20px; }
.auth-card { background: white; border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 420px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.auth-logo { text-align: center; margin-bottom: 24px; font-family: var(--font-en); font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.auth-title { font-size: 1.3rem; font-weight: 900; color: var(--gray-900); margin-bottom: 4px; }
.auth-sub { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 24px; }
.auth-div { display: flex; align-items: center; gap: 10px; margin: 20px 0; font-size: 0.8rem; color: var(--gray-400); }
.auth-div::before, .auth-div::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.social-btn { width: 100%; padding: 11px; border-radius: var(--radius-sm); border: 1px solid var(--gray-300); background: white; display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.15s; margin-bottom: 10px; font-family: var(--font); }
.social-btn:hover { border-color: var(--gray-500); background: var(--gray-100); }
.kakao-btn { background: #FEE500; border-color: #FEE500; color: #3A1D1D; }
.kakao-btn:hover { background: #F5DC00; border-color: #F5DC00; }

/* ── 필터 ── */
.filter-wrap { background: white; border-radius: var(--radius); padding: 14px 16px; margin-bottom: 16px; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.filter-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.filter-sel { padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.84rem; background: white; font-family: var(--font); color: var(--gray-700); cursor: pointer; }
.filter-sel:focus { outline: none; border-color: var(--brand); }
.filter-inp { flex: 1; min-width: 160px; padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.84rem; font-family: var(--font); }
.filter-inp:focus { outline: none; border-color: var(--brand); }
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.fchip { padding: 4px 12px; border-radius: 50px; font-size: 0.76rem; font-weight: 600; background: var(--gray-100); color: var(--gray-600); cursor: pointer; transition: all 0.15s; border: 1px solid transparent; }
.fchip:hover, .fchip.active { background: var(--brand-light); border-color: rgba(255,92,53,0.3); color: var(--brand); }
.btn-search { padding: 8px 16px; background: var(--brand); color: white; border: none; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 700; cursor: pointer; font-family: var(--font); }

/* ── 광고주 섹션 ── */
.biz-section { background: linear-gradient(135deg, #FFF2EE 0%, #FFF8F5 100%); border: 1px solid rgba(255,92,53,0.15); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.biz-section-left h3 { font-size: 1.05rem; font-weight: 900; color: var(--gray-900); margin-bottom: 6px; }
.biz-section-left p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

/* ── 이용방법 ── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.how-card { background: white; border-radius: var(--radius); padding: 20px 16px; text-align: center; border: 1px solid var(--gray-200); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.how-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), #FF9A5C); }
.how-step { font-family: var(--font-en); font-size: 0.65rem; font-weight: 800; color: var(--brand); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.how-icon { font-size: 2rem; margin-bottom: 10px; }
.how-ttl { font-size: 0.92rem; font-weight: 800; margin-bottom: 6px; }
.how-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.6; }

/* ── 리뷰 그리드 ── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.review-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.review-thumb { aspect-ratio: 1; background: var(--gray-200); overflow: hidden; }
.review-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-info { padding: 10px; }
.review-user { font-size: 0.76rem; font-weight: 700; display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.review-ttl { font-size: 0.76rem; color: var(--gray-600); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── 푸터 ── */
.footer { background: #1F2937; color: rgba(255,255,255,0.65); padding: 44px 20px 28px; margin-top: 60px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-en); font-size: 1.2rem; font-weight: 800; color: var(--brand); margin-bottom: 8px; }
.footer-desc { font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,0.45); }
.footer-col h4 { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-links li a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 0.74rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 10px; }
.footer-sns { display: flex; gap: 8px; }
.sns-btn { width: 30px; height: 30px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: background 0.15s; }
.sns-btn:hover { background: var(--brand); }

/* ── 관리자 ── */
.admin-body { background: #F0F2F5; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 210px; background: var(--dark); display: flex; flex-direction: column; position: fixed; height: 100vh; z-index: 100; overflow-y: auto; }
.admin-logo { display: flex; align-items: center; gap: 8px; padding: 18px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--brand); font-family: var(--font-en); font-weight: 800; font-size: 1.1rem; }
.admin-menu { padding: 8px 0; flex: 1; }
.admin-sec-label { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 16px 5px; }
.admin-menu-item { display: flex; align-items: center; gap: 8px; padding: 9px 16px; font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: all 0.15s; cursor: pointer; text-decoration: none; border-right: 3px solid transparent; }
.admin-menu-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.admin-menu-item.active { background: rgba(255,92,53,0.15); color: var(--brand); border-right-color: var(--brand); }
.admin-badge { margin-left: auto; background: var(--danger); color: white; border-radius: 50px; padding: 1px 6px; font-size: 0.65rem; font-weight: 700; }
.admin-user { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.76rem; color: rgba(255,255,255,0.5); }
.admin-content { margin-left: 210px; padding: 24px 28px; min-height: 100vh; flex: 1; }
.admin-page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.admin-page-title { font-size: 1.3rem; font-weight: 900; color: var(--gray-900); }
.tab-bar2 { display: flex; gap: 5px; margin-bottom: 16px; flex-wrap: wrap; }
.tab-btn { padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; border: 1px solid var(--gray-300); background: white; color: var(--gray-600); cursor: pointer; transition: all 0.15s; text-decoration: none; }
.tab-btn:hover, .tab-btn.active { background: var(--brand); border-color: var(--brand); color: white; }
.inline-sel { padding: 4px 8px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.78rem; font-family: var(--font); cursor: pointer; }
.type-badge { padding: 2px 8px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.type-influencer { background: var(--brand-light); color: var(--brand); }
.type-advertiser { background: #EFF6FF; color: #3B82F6; }

/* ── 반응형 ── */
@media (max-width: 1100px) { .cp-grid { grid-template-columns: repeat(3, 1fr); } .main-wrap { grid-template-columns: 1fr; } .main-side { display: none; } }
@media (max-width: 900px) { .cp-grid { grid-template-columns: repeat(3, 1fr); } .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .gnb { display: none; } .hero-banner-stats { display: none; }
  .cp-grid { grid-template-columns: repeat(2, 1fr); } .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .my-layout { grid-template-columns: 1fr; } .my-sidebar { position: static; }
  .admin-content { margin-left: 0; padding: 16px; } .admin-sidebar { display: none; }
}
@media (max-width: 480px) { .cp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .hero-banner { padding: 22px 20px; } }

/* ── Mypage Sidebar ── */
.sidebar { position: sticky; top: calc(var(--header-h) + 16px); height: fit-content; }
.sidebar-menu { display: flex; flex-direction: column; gap: 6px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 10px; box-shadow: var(--shadow-sm); }
.sidebar-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 600; color: var(--gray-700); text-decoration: none; transition: background 0.15s, color 0.15s; }
.sidebar-item:hover { background: var(--gray-100); color: var(--brand); }
.sidebar-item.active { background: var(--brand-light, #fff0eb); color: var(--brand); }
.sidebar-item .icon { font-size: 1.1rem; width: 22px; text-align: center; }

/* ── Layout Sidebar (Mypage) ── */
.layout-sidebar { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
@media (max-width: 768px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static !important; }
  .sidebar-menu { flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 10px; }
  .sidebar-item { flex: 1 1 auto; justify-content: center; font-size: 0.82rem; padding: 8px 10px; min-width: 80px; text-align: center; }
}

/* ── Auth Page ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: #f5f6fa; }
