/* =====================================================================
   피부센터 특가형 랜딩페이지 — 공통 스타일
   색상 체계는 기획안 기준:
     네이비(주색)  #1F3A5F
     브론즈(가격)  #B5651D
     연블루 배경   #EEF3FB / #F5F8FC
     크림 배경     #FFF7E6
     보더         #C9D4E5 / #E1E8F0
   병원 식별 정보(병원명·로고·주소·전화·의료진 실명) 일체 미포함.
   ===================================================================== */

:root {
  --navy: #1f3a5f;
  --navy-deep: #16294a;
  --bronze: #b5651d;
  --bronze-soft: #c47a2c;
  --ink: #1c2430;
  --ink-soft: #55606e;
  --line: #c9d4e5;
  --line-soft: #e1e8f0;
  --bg-blue: #eef3fb;
  --bg-blue-2: #f5f8fc;
  --bg-cream: #fff7e6;
  --white: #ffffff;
  --ok: #1f7a54;
  --no: #b23b3b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(31, 58, 95, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 58, 95, 0.14);
  --maxw: 520px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic",
    "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #e9eef5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

/* 모바일 우선: 중앙 정렬 컨테이너 (광고 유입 → 모바일 뷰 기준) */
.page {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding-bottom: 84px; /* 하단 고정 CTA 여백 */
}

img { max-width: 100%; display: block; }

.section { padding: 34px 22px; }
.section--tint { background: var(--bg-blue-2); }
.section--blue { background: var(--bg-blue); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bronze);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.8); }

h2.sec-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.sec-sub { margin: 0 0 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(196, 122, 44, 0.22), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 46px 24px 40px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}
.hero .eyebrow { color: rgba(255, 255, 255, 0.72); }
.hero h1 {
  font-size: 27px;
  line-height: 1.32;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}
.hero h1 .hl { color: #f2c078; }
.hero .price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 16px;
}
.hero .price-tag .num {
  font-size: 58px;
  font-weight: 900;
  color: #f4c07f;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero .price-tag .unit { font-size: 20px; font-weight: 700; color: #f4c07f; }
.hero .price-tag .from { font-size: 15px; color: rgba(255,255,255,0.82); }
.hero .subcopy {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 22px;
  line-height: 1.62;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 17px 20px;
  border: 0;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--cta {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-soft) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(181, 101, 29, 0.34);
}
.btn--cta:hover { box-shadow: 0 12px 30px rgba(181, 101, 29, 0.44); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn .sub { font-size: 12px; font-weight: 600; opacity: 0.9; }

/* ---------- 고민 공감 체크리스트 ---------- */
.concern-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.concern {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  font-size: 14.5px;
  box-shadow: var(--shadow);
}
.concern.is-key { border-color: var(--bronze); background: var(--bg-cream); }
.concern .mk {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-blue);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  display: grid; place-items: center;
  margin-top: 1px;
}
.concern.is-key .mk { background: var(--bronze); color: #fff; }

/* ---------- 솔루션 카피 박스 ---------- */
.callout {
  background: var(--bg-blue);
  border-left: 5px solid var(--navy);
  border-radius: 6px 12px 12px 6px;
  padding: 18px 18px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}

/* ---------- 라인업 카드 ---------- */
.lineup { display: grid; gap: 12px; }
.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: start;
}
.card .name { font-size: 16.5px; font-weight: 800; color: var(--navy); }
.card .price {
  font-size: 22px;
  font-weight: 900;
  color: var(--bronze);
  white-space: nowrap;
  grid-row: span 2;
  align-self: center;
}
.card .desc { font-size: 13.5px; color: var(--ink-soft); grid-column: 1 / 2; }
.card .spec {
  grid-column: 1 / 2;
  font-size: 12px;
  color: var(--navy);
  font-weight: 700;
  background: var(--bg-blue);
  border-radius: 999px;
  padding: 3px 10px;
  justify-self: start;
  margin-top: 2px;
}

/* ---------- 왜 이 가격 (뺀 것 / 지킨 것) ---------- */
.why-grid { display: grid; gap: 12px; }
.why-col {
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid var(--line-soft);
}
.why-col.no { background: #fdf3f3; border-color: #f0d4d4; }
.why-col.ok { background: #f1f8f4; border-color: #cfe7da; }
.why-col h3 {
  font-size: 15px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.why-col.no h3 { color: var(--no); }
.why-col.ok h3 { color: var(--ok); }
.why-col .mark {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 14px;
}
.why-col.no .mark { background: var(--no); }
.why-col.ok .mark { background: var(--ok); }
.why-col ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 9px; }
.why-col li { font-size: 14px; padding-left: 20px; position: relative; line-height: 1.55; }
.why-col.no li::before { content: "×"; position: absolute; left: 2px; color: var(--no); font-weight: 800; }
.why-col.ok li::before { content: "✓"; position: absolute; left: 2px; color: var(--ok); font-weight: 800; }
.why-result {
  margin-top: 14px;
  background: var(--bg-cream);
  border: 1px solid #f0dcb4;
  border-radius: var(--radius);
  padding: 16px 16px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}
.why-result b { color: var(--bronze); }

/* ---------- 신뢰 요소 / 플레이스홀더 ---------- */
.trust-note {
  display: flex; gap: 10px; align-items: center;
  background: var(--bg-blue); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--navy);
}
.trust-note .ic { font-size: 18px; }
.ph-box {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-blue-2);
  padding: 30px 16px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13.5px;
}
.ph-box .ph-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ph-box .ph-tag {
  display: inline-block; margin-top: 8px; font-size: 11px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 9px; color: var(--ink-soft);
}

/* ---------- 특가 표 ---------- */
.price-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 13px 14px; text-align: left; font-size: 14.5px; }
.price-table thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 13.5px; }
.price-table thead th:last-child, .price-table td:last-child { text-align: center; }
.price-table tbody tr:nth-child(even) { background: var(--bg-blue-2); }
.price-table tbody tr { border-bottom: 1px solid var(--line-soft); }
.price-table td .p { color: var(--bronze); font-weight: 900; font-size: 16px; white-space: nowrap; }

/* ---------- 예약 방법 스텝 ---------- */
.steps { display: grid; gap: 12px; counter-reset: step; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 15px 16px; box-shadow: var(--shadow);
}
.step .n {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 15px;
  display: grid; place-items: center;
}
.step .t { font-size: 14.5px; padding-top: 3px; }

/* ---------- 유의사항 ---------- */
.notice {
  background: var(--bg-cream);
  border: 1px solid #f0dcb4;
  border-radius: var(--radius);
  padding: 18px 18px;
}
.notice h3 { margin: 0 0 12px; font-size: 15px; color: var(--bronze); font-weight: 800; }
.notice ul { margin: 0; padding-left: 18px; display: grid; gap: 9px; }
.notice li { font-size: 13px; color: #5a4a30; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  background: #fff; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 15px 16px;
  font-weight: 700; font-size: 14.5px; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--bronze); font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 16px 16px; font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ---------- 하단 고정 CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--maxw);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-soft);
  z-index: 40;
}
.sticky-cta .btn { padding: 15px; font-size: 16px; }

/* ---------- 푸터 ---------- */
.foot {
  padding: 22px; font-size: 11.5px; color: #9aa4b1; text-align: center;
  background: var(--bg-blue-2); line-height: 1.6;
}

/* ---------- 소소 ---------- */
.tiny-note { font-size: 12px; color: #9aa4b1; margin-top: 12px; line-height: 1.55; }
.divider { height: 8px; background: var(--bg-blue-2); }
.center { text-align: center; }

@media (max-width: 380px) {
  .hero h1 { font-size: 24px; }
  .hero .price-tag .num { font-size: 50px; }
  .card { grid-template-columns: 1fr; }
  .card .price { grid-row: auto; justify-self: start; }
}

/* =====================================================================
   예약 신청 폼 (booking.html) — 슬롯 예약제 데모
   ※ 실제 결제·예약 미연동 UI/UX 프로토타입
   ===================================================================== */
.demo-banner {
  background: var(--bg-cream);
  color: #8a6a2a;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.5;
  border-bottom: 1px solid #f0dcb4;
}
.book-head {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 30px 22px 28px;
}
.book-head .eyebrow { color: rgba(255,255,255,0.72); }
.book-head h1 { font-size: 28px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.book-head p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }

.book-step { padding: 22px 22px; border-bottom: 8px solid var(--bg-blue-2); }
.book-step:last-of-type { border-bottom: 0; }
.book-step-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; color: var(--navy); margin: 0 0 16px;
}
.book-step-title .no {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 13px; font-weight: 800;
  display: grid; place-items: center;
}
.book-step-title .unit { font-size: 13px; font-weight: 600; color: var(--ink-soft); }

/* 카테고리 토글 */
.cat-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.cat-btn {
  border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius);
  padding: 16px 10px; text-align: center; cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.cat-btn .cb-t { font-size: 17px; font-weight: 800; color: var(--ink); display: block; }
.cat-btn .cb-s { font-size: 12px; color: var(--ink-soft); margin-top: 3px; display: block; }
.cat-btn.is-active { background: var(--navy); border-color: var(--navy); }
.cat-btn.is-active .cb-t, .cat-btn.is-active .cb-s { color: #fff; }

/* 시술 셀렉트 */
.field-select {
  width: 100%; padding: 15px 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius); font-size: 15px; font-family: inherit; color: var(--ink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231f3a5f' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
  -webkit-appearance: none; appearance: none;
}

/* 월 달력 (마우스 클릭으로 날짜 선택) */
.cal { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 14px 12px; background: #fff; box-shadow: var(--shadow); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-title { font-size: 16px; font-weight: 800; color: var(--navy); }
.cal-nav { width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 10px; font-size: 22px; color: var(--navy); cursor: pointer; line-height: 1; font-family: inherit; display: grid; place-items: center; }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-nav:not(:disabled):hover { background: var(--bg-blue-2); }
.cal-nav:not(:disabled):active { transform: translateY(1px); }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 5px; }
.cal-dow span { text-align: center; font-size: 12px; font-weight: 700; color: var(--ink-soft); padding: 4px 0; }
.cal-dow span:first-child { color: var(--no); }
.cal-dow span:last-child { color: var(--navy); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-cell { aspect-ratio: 1 / 1; border: 1.5px solid transparent; border-radius: 10px; background: var(--bg-blue-2); font-size: 15px; font-weight: 700; color: var(--ink); cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; padding: 0; }
.cal-cell.is-empty { background: transparent; border: 0; cursor: default; }
.cal-cell.is-sun { color: var(--no); }
.cal-cell.is-sat { color: var(--navy); }
.cal-cell.is-disabled { opacity: 0.32; background: transparent; cursor: not-allowed; }
.cal-cell:not(.is-disabled):not(.is-empty):hover { border-color: var(--line); }
.cal-cell.is-active { background: var(--bronze); border-color: var(--bronze); color: #fff; }

/* 날짜 레일 (구버전 · 미사용) */
.date-rail { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 8px; -webkit-overflow-scrolling: touch; }
.date-rail::-webkit-scrollbar { height: 0; }
.date-cell {
  flex: 0 0 auto; width: 62px; border: 1.5px solid var(--line-soft); border-radius: var(--radius-sm);
  background: #fff; padding: 12px 0; text-align: center; cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.date-cell .dow { font-size: 12px; color: var(--ink-soft); display: block; }
.date-cell .dnum { font-size: 20px; font-weight: 800; color: var(--ink); display: block; margin: 2px 0; }
.date-cell .mon { font-size: 11px; color: var(--ink-soft); display: block; }
.date-cell.is-active { border-color: var(--bronze); background: var(--bg-cream); }
.date-cell.is-active .dnum { color: var(--bronze); }
.date-cell.is-off { opacity: 0.4; cursor: not-allowed; }
.date-cell.is-off .dow { color: var(--no); }
.rail-note { font-size: 13px; color: var(--ink-soft); margin: 10px 0 0; }

/* 시간 슬롯 그리드 */
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.slot-grid.is-lift { grid-template-columns: repeat(4, 1fr); }
.slot {
  border: 1.5px solid var(--line-soft); border-radius: var(--radius-sm);
  background: #fff; padding: 15px 4px; text-align: center; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--ink); font-family: inherit; transition: all 0.12s;
}
.slot.is-active { background: var(--bronze); border-color: var(--bronze); color: #fff; }
.slot.is-full { background: var(--bg-blue-2); color: #b6bfca; text-decoration: line-through; cursor: not-allowed; border-color: var(--line-soft); }
.slot.is-lunch { background: var(--bg-blue-2); color: #b6bfca; border-style: dashed; cursor: not-allowed; }
.legend { display: flex; gap: 16px; margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); flex-wrap: wrap; }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend .sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.legend .sw.sel { background: var(--bronze); }
.legend .sw.full { background: var(--bg-blue-2); border: 1px solid var(--line); }
.legend .sw.lunch { background: var(--bg-blue-2); border: 1px dashed var(--line); }

/* 예약자 정보 */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field input[type="text"], .field input[type="tel"] {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
}
.field input:focus { outline: none; border-color: var(--navy); }
.consent {
  display: flex; gap: 10px; align-items: flex-start; background: var(--bg-blue-2);
  border-radius: var(--radius-sm); padding: 14px; font-size: 13px; color: var(--ink-soft); line-height: 1.55;
}
.consent input { margin-top: 3px; flex: 0 0 auto; width: 18px; height: 18px; }

/* 결제 요약 + 버튼 */
.pay-summary {
  background: var(--bg-blue); border-radius: var(--radius); padding: 16px 18px;
  display: grid; gap: 8px; margin-bottom: 16px;
}
.pay-summary .row { display: flex; justify-content: space-between; font-size: 14px; }
.pay-summary .row .k { color: var(--ink-soft); }
.pay-summary .row .v { font-weight: 700; color: var(--ink); }
.pay-summary .row.total { border-top: 1px dashed var(--line); padding-top: 8px; margin-top: 2px; }
.pay-summary .row.total .v { color: var(--bronze); font-size: 18px; font-weight: 900; }
.pay-note { font-size: 12px; color: var(--ink-soft); margin: 12px 2px 0; line-height: 1.55; }

/* 예약 안내 박스 */
.guide-box { background: var(--bg-cream); border: 1px solid #f0dcb4; border-radius: var(--radius); padding: 16px 18px; margin-bottom: 16px; }
.guide-box h3 { margin: 0 0 10px; font-size: 15px; font-weight: 800; color: var(--bronze); }
.guide-box ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.guide-box li { font-size: 13.5px; color: #5a4a30; line-height: 1.6; }
.guide-box b { color: var(--bronze); }

/* 관리자 페이지 */
.admin-page { padding-bottom: 24px; }
.admin-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.admin-counts { display: flex; gap: 8px; }
.admin-counts .cnt { font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.admin-counts .cnt b { font-size: 15px; }
.cnt-pending { background: var(--bg-cream); color: var(--bronze); }
.cnt-confirmed { background: #f1f8f4; color: var(--ok); }
.admin-refresh { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--navy); cursor: pointer; font-family: inherit; }
.admin-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.admin-filters label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.admin-filters input[type="date"] { width: 100%; padding: 12px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; }
.admin-list { display: grid; gap: 12px; }
.res-card { border: 1px solid var(--line-soft); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); padding: 15px 16px; }
.res-card.is-confirmed { border-color: #cfe7da; background: #f7fcf9; }
.res-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.res-name { font-size: 16px; font-weight: 800; color: var(--ink); }
.res-phone { font-size: 14px; color: var(--navy); font-weight: 600; }
.res-phone a { color: inherit; text-decoration: none; }
.res-badge { flex: 0 0 auto; font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.res-badge.pending { background: var(--bg-cream); color: var(--bronze); }
.res-badge.confirmed { background: #e6f4ec; color: var(--ok); }
.res-meta { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.res-meta .when { color: var(--ink); font-weight: 700; }
.res-actions { display: flex; gap: 8px; }
.res-actions button { flex: 1; padding: 11px; border-radius: 10px; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; border: 1.5px solid transparent; }
.btn-confirm { background: var(--ok); color: #fff; }
.btn-confirm:disabled { opacity: 0.4; cursor: default; }
.btn-cancel { background: #fff; color: var(--no); border-color: #f0d4d4; }
.admin-empty { text-align: center; color: var(--ink-soft); font-size: 14px; padding: 30px 0; }

/* 완료 모달 */
.modal-back {
  position: fixed; inset: 0; background: rgba(20,30,50,0.55); display: none;
  align-items: center; justify-content: center; padding: 24px; z-index: 100;
}
.modal-back.is-open { display: flex; }
.modal {
  background: #fff; border-radius: 18px; padding: 30px 24px; max-width: 380px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.modal .ok-ic {
  width: 60px; height: 60px; border-radius: 50%; background: var(--bg-cream);
  display: grid; place-items: center; margin: 0 auto 16px; font-size: 30px;
}
.modal h3 { margin: 0 0 10px; font-size: 20px; color: var(--navy); }
.modal p { margin: 0 0 8px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.modal .recap { background: var(--bg-blue-2); border-radius: 10px; padding: 12px; margin: 14px 0; font-size: 14px; font-weight: 700; color: var(--navy); }
