/* SJ 렌트카 — 화면별 CSS 조립. 순서=cascade: common → home → search → responsive(맨 뒤) */

/* [parts] common — 토큰·리셋·container·버튼·아이콘 · 헤더·푸터·드로어 · 서브페이지 공통컴포넌트 */

@font-face {
  font-family: "Pretendard Variable";

  font-style: normal;

  font-weight: 100 900;

  font-display: swap;

  src: url("/static/fonts/PretendardVariable.woff2") format("woff2");
}

/* ============================================================
   SJ 렌트카 — Design tokens
   ============================================================ */

:root {
  --brand: #29797f;
  --brand-deep: #245a3f;
  --brand-soft: #ebf3ee;
  --accent: #c9a36b;
  --ink: #0f1417;
  --ink-2: #2a3138;
  --ink-3: #5b656d;
  --ink-4: #8a939b;
  --line: #e6e9ed;
  --line-2: #eef1f4;
  --bg: #ffffff;
  --bg-2: #f6f8fa;
  --bg-3: #eef2f6;
  --warn: #f4a300;
  --danger: #e8483b;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(8,44,77,.05), 0 2px 6px rgba(8,44,77,.04);
  --shadow: 0 4px 14px rgba(8,44,77,.06), 0 14px 40px rgba(8,44,77,.08);
  --shadow-lg: 0 20px 60px rgba(8,44,77,.14);
  --font-kr: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', system-ui, sans-serif;
  --font-num: 'Manrope', var(--font-kr);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  min-height: 100%;
}

body {
  font-family: var(--font-kr);
  font-feature-settings: 'tnum' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  word-break: keep-all;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.service-pending {
  visibility: hidden;
}

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

button {
  font-family: inherit;
}

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

.site-main {
  flex: 1 0 auto;
}

.site-main:has(> .hero-wrap) {
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.num {
  font-family: var(--font-num);
  font-feature-settings: 'tnum' on;
  letter-spacing: -0.02em;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

/* ============================================================
   Top utility bar
   ============================================================ */

.utility {
  background: var(--brand-deep);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
}

.utility .row {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility .left {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  min-width: 0;
}

.utility .left .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #95d5b2;
  box-shadow: 0 0 0 4px rgba(149,213,178,.22);
}

.utility .right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.utility a:hover {
  color: #fff;
}

.utility .sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.18);
}

/* ============================================================
   Header
   ============================================================ */

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header .row {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.brand .mark {
  width: auto;
  height: 44px;
  max-width: 180px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.brand .mark img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.brand .mark::after {
  content: '';
}

.brand .sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--ink-2);
  border-radius: 8px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}

.nav a:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

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

.nav a.active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-cta .ico-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
}

.header-cta .ico-btn:hover {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: transparent;
}

.btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  padding: 11px 20px;
  font-size: 15px;
}

.btn.primary:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11,61,107,.25);
}

.btn.ghost {
  background: transparent;
  color: var(--ink-2);
  padding: 11px 18px;
}

.btn.lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn.accent {
  background: var(--accent);
  color: #fff;
}

.btn.outline {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  padding: 11px 20px;
  font-size: 15px;
}

.btn.outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ============================================================
   Section general
   ============================================================ */

section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head .left {
  flex: 1;
  min-width: 0;
}

.section-head .left .eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.15;
  word-break: keep-all;
}

.section-head .right {
  flex-shrink: 0;
}

.section-head .sub {
  font-size: 16px;
  color: var(--ink-3);
  margin-top: 12px;
  max-width: 540px;
  line-height: 1.55;
}

.section-head .right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  margin-top: 0;
  padding: 32px 0 22px;
  background: #0a1419;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

footer .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
}

footer .brand {
  color: #fff;
  margin-bottom: 16px;
  font-size: 22px;
  flex-wrap: wrap;
}

footer .brand .mark {
  background: transparent;
  box-shadow: none;
}

footer .desc {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}

footer .col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}

footer .col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

footer .col a:hover {
  color: #fff;
}

footer .footer-contact {
  text-align: right;
}

footer .footer-contact h5,
footer .footer-contact a {
  text-align: right;
}

footer .footer-hours {
  text-align: right;
}

footer .footer-phone {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
  padding: 6px 0 !important;
  white-space: nowrap;
  display: inline-block !important;
}

footer .footer-hours {
  font-size: 12px;
}

footer .socials {
  display: flex;
  gap: 10px;
}

footer .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
}

footer .socials a:hover {
  background: var(--brand);
  color: #fff;
}

footer .legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

footer .legal .row1 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

footer .legal > div:last-child {
  width: 100%;
  text-align: left;
}

footer .legal .row1 span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,.18);
  margin-left: 14px;
  vertical-align: middle;
}

/* ============================================================
   Admin modal safety
   ============================================================ */

.sjadmin-banner-modal,
.sjadmin-preview-modal,
.sjadmin-fee-modal {
  display: none;
  position: fixed;
  inset: 0;
}

body.on-edit .sjadmin-banner-modal.open,
.sjadmin-preview-modal.open,
.sjadmin-fee-modal.open {
  display: flex !important;
}

/* ============================================================
   Floating call buttons
   ============================================================ */

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}

.floating-cta button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .15s ease;
}

.floating-cta button:hover {
  transform: scale(1.05);
}

.floating-cta .kakao {
  background: #fae100;
  color: #3c1e1e;
}

.floating-cta .phone {
  background: var(--brand);
}

.floating-cta .top {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ============================================================
   Tweaks panel theme overrides
   ============================================================ */

body[data-accent="ocean"] {
  --brand: #29797f;
  --brand-deep: #245a3f;
  --brand-soft: #ebf3ee;
}

body[data-accent="emerald"] {
  --brand: #0a6e54;
  --brand-deep: #084838;
  --brand-soft: #e2f4ee;
}

body[data-accent="coral"] {
  --brand: #c8473d;
  --brand-deep: #8d2a23;
  --brand-soft: #fbeae8;
}

body[data-accent="charcoal"] {
  --brand: #1b2129;
  --brand-deep: #0a0e13;
  --brand-soft: #eef0f3;
  --accent: #ff7a45;
}

/* selection */

::-moz-selection {
  background: var(--brand);
  color: #fff;
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* ============================================================
   SUB-PAGES
   ============================================================ */

/* Page hero */

.page-hero {
  background: linear-gradient(135deg, #082c4d 0%, #0b3d6b 50%, #0e5894 100%);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0,163,122,.22) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(74,223,155,.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero .crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}

.page-hero .crumb a:hover {
  color: #fff;
}

.page-hero .crumb span:last-child {
  color: #fff;
  font-weight: 600;
}

.page-hero .page-eyebrow {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #95d5b2;
  margin-bottom: 14px;
}

.page-hero .page-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  text-wrap: pretty;
}

.page-hero .page-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: 0;
  text-wrap: pretty;
}

.page-section {
  padding: 80px 0;
}

.page-section + .page-section {
  padding-top: 0;
}

.page-section .section-head {
  margin-bottom: 32px;
}

/* Section head defaults already used elsewhere, reuse those styles or define a small one */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head .left {
  flex: 1;
  min-width: 280px;
}

.section-head .right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.section-head .eyebrow {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  line-height: 1.18;
  text-wrap: pretty;
}

.section-head .sub {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}

/* Cars toolbar */

.cars-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.cars-sort {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 600;
}

.cars-sort .sep {
  width: 1px;
  height: 16px;
  background: var(--line);
}

.cars-sort select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 32px 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235b656d' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Pager */

.pager {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
}

.pg {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  transition: all .15s ease;
}

.pg:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.pg.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pg:disabled {
  color: var(--ink-4);
  cursor: not-allowed;
}

.pg:disabled:hover {
  border-color: var(--line);
  color: var(--ink-4);
}

/* ============================================================
   Insurance plans
   ============================================================ */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan.popular {
  border-color: var(--brand);
  box-shadow: 0 20px 50px rgba(11,61,107,.15);
  transform: translateY(-8px);
}

.plan-flag {
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 6px 14px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 0 0 8px 8px;
}

.plan-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.plan.popular .plan-tag {
  background: var(--brand);
  color: #fff;
}

.plan-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 22px;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
}

.plan-price .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.plan-price .unit {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 600;
}

.plan-deductible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: 12px;
  margin-bottom: 22px;
}

.plan.popular .plan-deductible {
  background: var(--brand-soft);
}

.plan-deductible .lbl {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
}

.plan-deductible .val {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.plan-features li.no {
  color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-color: var(--line);
}

.plan-features li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  stroke-width: 3;
}

.plan-features li.no svg {
  background: var(--bg-3);
  color: var(--ink-4);
}

.plan.popular .plan-features li.ok svg {
  background: var(--brand);
  color: #fff;
}

/* Coverage comparison table */

.cov-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.cov-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-2);
}

.cov-row:last-child {
  border-bottom: 0;
}

.cov-row.head {
  background: var(--brand-deep);
  color: #fff;
  font-weight: 700;
}

.cov-row.head .cov-cell.highlight {
  background: var(--brand);
  color: #fff;
}

.cov-cell {
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: var(--ink-2);
}

.cov-cell.label {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-2);
}

.cov-cell.highlight {
  background: rgba(11,61,107,.04);
  color: var(--brand);
  font-weight: 700;
}

.cov-row.head .cov-cell {
  color: #fff;
  font-weight: 700;
}

.cov-note {
  margin-top: 20px;
  background: var(--brand-soft);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--brand-deep);
}

.cov-note svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.cov-note strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}

.cov-note span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all .15s ease;
}

.faq-item.open {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-q .qmark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
  font-family: var(--font-num);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faq-q .t {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.faq-toggle {
  color: var(--ink-3);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-a {
  display: flex;
  gap: 16px;
  padding: 0 24px 22px 70px;
  position: relative;
}

.faq-a .amark {
  position: absolute;
  left: 24px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-num);
  display: grid;
  place-items: center;
}

.faq-a p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ============================================================
   Usage guide
   ============================================================ */

.guide-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--bg-2);
  border-radius: 14px;
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
}

.guide-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .15s ease;
}

.guide-tab.active {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.guide-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

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

.gflow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 30px;
  position: relative;
}

.gflow-n {
  font-size: 50px;
  font-weight: 800;
  color: var(--brand-soft);
  letter-spacing: -0.04em;
  position: absolute;
  top: 18px;
  right: 24px;
  line-height: 1;
}

.gflow-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.gflow-step h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.gflow-step p {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

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

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
}

.info-card h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
}

.info-card ul, .info-card ol {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  counter-reset: stepc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card ol li {
  counter-increment: stepc;
  padding-left: 34px;
  position: relative;
}

.info-card ol li::before {
  content: counter(stepc);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.info-card ul li {
  padding-left: 20px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.info-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.info-card li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Pickup hero */

.pickup-hero {
  background: linear-gradient(120deg, #082c4d 0%, #0e5894 100%);
  color: #fff;
  border-radius: 22px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pickup-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(0,163,122,.25) 0%, transparent 60%);
  pointer-events: none;
}

.pickup-text {
  position: relative;
}

.pickup-text .big-no {
  font-size: 80px;
  font-weight: 800;
  color: #95d5b2;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 14px;
}

.pickup-text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}

.pickup-text p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.pickup-map {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 32px;
  height: 220px;
  position: relative;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff5544;
  box-shadow: 0 0 0 8px rgba(255,85,68,.25), 0 0 0 16px rgba(255,85,68,.12);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(255,85,68,.25), 0 0 0 16px rgba(255,85,68,.12);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255,85,68,.32), 0 0 0 22px rgba(255,85,68,.16);
  }
}

.map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Docs */

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

.docs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.docs-card.primary {
  background: linear-gradient(155deg, #fff 0%, var(--brand-soft) 130%);
  border-color: transparent;
}

.docs-num {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 22px;
  box-shadow: 0 1px 4px rgba(11,61,107,.08);
}

.docs-card svg {
  color: var(--brand);
  margin-bottom: 14px;
}

.docs-card h4 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.docs-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0;
}

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.callout.warn {
  border-left-color: var(--warn);
}

.callout.warn svg {
  color: var(--warn);
}

.callout svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.callout strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.callout p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* Fee table */

.fee-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.fee-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 2fr;
  padding: 18px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
}

.fee-row:last-child {
  border-bottom: 0;
}

.fee-row.head {
  background: var(--brand-deep);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.fee-row > div:first-child {
  font-weight: 700;
  color: var(--ink);
}

.fee-row .num {
  font-weight: 700;
  color: var(--brand);
  font-size: 15px;
}

.fee-row .meta {
  color: var(--ink-3);
  font-size: 13.5px;
}

.fee-row.head .num, .fee-row.head .meta, .fee-row.head > div {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   Notices
   ============================================================ */

.notice-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.notice-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.notice-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.ntab {
  padding: 9px 18px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .15s ease;
}

.ntab:hover {
  color: var(--brand);
}

.ntab.active {
  background: var(--brand);
  color: #fff;
}

.notice-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 280px;
  height: 42px;
  color: var(--ink-3);
}

.notice-search:focus-within {
  border-color: var(--brand);
}

.notice-search input {
  flex: 1;
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
}

.edit-mode-field.notice-write-btn {
  min-width: 88px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #334155;
  border-radius: 6px;
  background-color: #1f2a33;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease;
}

.edit-mode-field.notice-write-btn:hover {
  background-color: #0f172a;
  border-color: #475569;
}

.notice-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.notice-list.notice-list-vehicle {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.vehicle-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #f3f6fa;
}

.vehicle-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 16px 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.vehicle-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.nrow {
  display: grid;
  grid-template-columns: 110px 1fr 120px;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
}

.nrow:last-child {
  border-bottom: 0;
}

.nrow.head {
  background: var(--bg-2);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nrow.pinned {
  background: rgba(11,61,107,.025);
}

.nrow.empty {
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 48px 28px;
  color: var(--ink-3);
}

.nrow.empty:hover {
  background: transparent !important;
}

.nrow:not(.head):hover {
  background: var(--bg-2);
}

.nrow .ntitle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 28px;
}

.nrow .ntitle a {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.015em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nrow .ntitle a:hover {
  color: var(--brand);
}

.edit-mode-field.notice-delete-inline {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b42318;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color .15s ease, opacity .15s ease;
}

body.on-edit .edit-mode-field.notice-delete-inline {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.edit-mode-field.notice-delete-inline:hover {
  background: transparent;
  color: #912018;
}

.nrow .pin {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  flex-shrink: 0;
}

.nrow .ndate {
  color: var(--ink-3);
  font-size: 13.5px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

.badge.cat-notice {
  background: var(--brand-soft);
  color: var(--brand);
}

.badge.cat-event {
  background: #ffe8d4;
  color: #c46a1a;
}

.badge.cat-vehicle {
  background: #e2ecff;
  color: #2753a5;
}

.badge.cat-update,
.badge.cat-upgrade {
  background: #dff5e9;
  color: #0a6e54;
}

.badge.cat-inspect {
  background: var(--bg-3);
  color: var(--ink-2);
}

.notice-detail[hidden] {
  display: none !important;
}

.notice-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.notice-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
}

.notice-detail-back:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.notice-detail-card {
  overflow: hidden;
  border: 1px solid rgba(41, 121, 127, .14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(41,121,127,.12), transparent 34%),
    linear-gradient(180deg, #fff, #f8fbfc 100%);
  box-shadow: var(--shadow);
}

.notice-detail-hero {
  padding: 34px 38px 30px;
  border-bottom: 1px solid rgba(41, 121, 127, .1);
}

.notice-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.notice-detail-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.notice-detail-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.notice-weight-wrap {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(41, 121, 127, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.notice-weight-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.notice-weight-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.notice-weight-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3);
  white-space: nowrap;
}

.notice-weight-input {
  width: 92px;
  min-width: 92px;
  flex: 0 0 92px;
  margin-left: auto;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.notice-weight-input:focus {
  border-color: rgba(41, 121, 127, .38);
  outline: none;
  box-shadow: 0 0 0 4px rgba(41, 121, 127, .08);
}

.notice-fixed-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(41,121,127,.12);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.notice-detail-eyebrow {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.notice-detail-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: pretty;
}

.notice-detail-summary {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3);
}

.notice-detail-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--ink-3);
  font-size: 13.5px;
}

.notice-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.notice-detail-meta-item strong {
  color: var(--ink);
  font-weight: 800;
}

.notice-detail-body {
  padding: 34px 38px 42px;
  background: #fff;
}

.vehicle-thumb-section {
  margin-bottom: 22px;
}

.vehicle-thumb-edit-only {
  display: none !important;
}

body.on-edit .vehicle-thumb-edit-only {
  display: block !important;
}

.vehicle-thumb-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #f7fafd 100%);
}

.vehicle-thumb-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 1px solid #dbe4ee;
  background: #fff;
  overflow: hidden;
}

.vehicle-thumb-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: #fff;
}

.vehicle-thumb-preview-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--ink-4);
  font-size: 12px;
  font-weight: 700;
}

.vehicle-thumb-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.vehicle-thumb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vehicle-thumb-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vehicle-thumb-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.vehicle-thumb-sub {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

.vehicle-thumb-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.vehicle-thumb-btn {
  padding: 8px 13px;
  font-size: 13px;
}

.vehicle-thumb-status-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vehicle-thumb-hint {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

.vehicle-thumb-status {
  font-size: 12.5px;
  font-weight: 700;
}

.vehicle-thumb-status.loading {
  color: var(--brand);
}

.vehicle-thumb-status.error {
  color: var(--danger);
}

.notice-detail-body .sjadmin-btn-update-wrap {
  gap: 10px;
}

.notice-detail-body .sjadmin-btn-update.sjadmin-btn-delete {
  background-color: #b42318;
  box-shadow: 0 2px 8px rgba(180, 35, 24, 0.25);
}

.notice-detail-body .sjadmin-btn-update.sjadmin-btn-delete:hover {
  background-color: #912018;
}

.notice-detail-article {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.9;
}

.notice-detail-article .ck.ck-editor {
  width: 100%;
}

.notice-detail-article .ck.ck-editor__main > .ck-editor__editable {
  min-height: 380px;
  height: 380px;
}

.vehicle-thumb-section + .notice-detail-article .ck.ck-editor__main > .ck-editor__editable {
  min-height: 440px;
  height: 440px;
}

.notice-detail-article > :first-child {
  margin-top: 0;
}

.notice-detail-article > :last-child {
  margin-bottom: 0;
}

.notice-detail-article h1,
.notice-detail-article h2,
.notice-detail-article h3,
.notice-detail-article h4 {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.notice-detail-article a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-detail-article img {
  border-radius: 16px;
  margin: 20px auto;
}

.ic {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.ic-fill {
  fill: currentColor;
  stroke: none;
}

/* [parts] home — 히어로·예약카드·달력·퀵액션 */

/* ============================================================
   Hero
   ============================================================ */

.hero-wrap {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(8,28,55,.18) 0%,
      rgba(8,28,55,.05) 30%,
      rgba(8,28,55,.32) 55%,
      rgba(8,28,55,.18) 80%,
      rgba(255,255,255,0) 100%),
    url('/static/images/hero-forest-road.png') center top / cover no-repeat;
  padding-bottom: 48px;
  flex: 1 0 auto;
  overflow-x: clip;
}

.hero-wrap .qa-grid {
  position: relative;
  z-index: 4;
}

.hero {
  position: relative;
  min-height: 180px;
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.hero .container {
  padding-top: 24px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  white-space: nowrap;
}

.hero-eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #95d5b2;
  box-shadow: 0 0 0 4px rgba(149,213,178,.32);
}

.hero h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.hero h1 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(110deg, #fff 30%, #c3e9ff 60%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 0 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  max-width: 540px;
  margin-top: 24px;
}

.hero-stat .v {
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-stat .v sup {
  font-size: 16px;
  vertical-align: top;
  font-weight: 600;
  opacity: .8;
  margin-left: 2px;
}

.hero-stat .l {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
  white-space: nowrap;
}

/* Booking card */

.book {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(8,30,60,.28), 0 4px 14px rgba(8,30,60,.08);
  padding: 22px;
  position: relative;
  margin-top: 12px;
  z-index: 5;
}

.book-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: 12px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}

.book-tab {
  padding: 9px 18px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-3);
  cursor: pointer;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all .15s ease;
}

.book-tab.active {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.book-tab.active svg {
  color: var(--brand);
}

.book-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.book-field {
  padding: 12px 22px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: background .15s ease;
}

.book-field:hover {
  background: var(--bg-2);
}

.book-field.fixed {
  cursor: default;
}

.book-field.fixed:hover {
  background: #fff;
}

.book-field:last-of-type {
  border-right: 0;
}

.book-field .lbl {
  font-size: 12px;
  color: var(--ink-4);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.book-field .val {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.book-field .meta {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 3px;
  white-space: nowrap;
}

.book-cta {
  padding: 6px;
  display: flex;
  align-items: stretch;
}

.book-cta button {
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 0 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .15s ease;
}

.book-cta button:hover {
  background: var(--brand-deep);
}

.book-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-3);
}

.book-footer .perks {
  display: flex;
  gap: 22px;
}

.book-footer .perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.book-footer .perks svg {
  color: var(--accent);
}

/* ============================================================
   Quick actions strip
   ============================================================ */

.quick {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all .15s ease;
}

.quick-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.quick-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
}

.quick-card .t {
  font-size: 15px;
  font-weight: 700;
}

.quick-card .s {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ============================================================
   Vehicle categories
   ============================================================ */

.vehicles-bg {
  background: var(--bg-2);
}

.cat-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-chip {
  padding: 11px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s ease;
}

.cat-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.cat-chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.cat-chip .count {
  font-family: var(--font-num);
  font-size: 12px;
  opacity: .65;
}

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

.car-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.car-img {
  aspect-ratio: 16 / 11;
  background: linear-gradient(160deg, #f3f7fb 0%, #e3ecf3 100%);
  position: relative;
  overflow: hidden;
}

.car-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.car-img .tag.hot {
  background: var(--danger);
}

.car-img .tag.new {
  background: var(--accent);
}

.car-img .heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-3);
}

.car-img .heart.on {
  color: var(--danger);
}

.car-img svg.car-illu {
  position: absolute;
  inset: auto 0 8% 50%;
  transform: translateX(-50%);
  width: 86%;
  height: auto;
}

.car-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.car-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 4px 0 0;
}

.car-specs {
  display: flex;
  gap: 12px;
  margin: 12px 0 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  flex-wrap: wrap;
}

.car-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.car-price {
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.car-price .from {
  font-size: 11px;
  color: var(--ink-4);
  font-weight: 600;
}

.car-price .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.car-price .unit {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 2px;
}

.car-price .strike {
  font-size: 12px;
  color: var(--ink-4);
  text-decoration: line-through;
  margin-right: 6px;
}

/* ============================================================
   Why us
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.why-card {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.why-card:nth-child(3n) {
  border-right: 0;
}

.why-card:nth-last-child(-n+3) {
  border-bottom: 0;
}

.why-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 22px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

.why-card .num-big {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  opacity: .35;
}

/* ============================================================
   Process steps
   ============================================================ */

.steps-bg {
  background: linear-gradient(180deg, #0a2a4a 0%, #0b3d6b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.steps-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0,163,122,.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(26,109,176,.32) 0%, transparent 60%);
  pointer-events: none;
}

.steps-bg .container {
  position: relative;
}

.steps-bg .section-head h2 {
  color: #fff;
}

.steps-bg .section-head .sub {
  color: rgba(255,255,255,.7);
}

.steps-bg .section-head .eyebrow {
  color: #95d5b2;
}

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

.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
}

.step .n {
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  color: #95d5b2;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step .n::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: #95d5b2;
}

.step .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
}

.step h4 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
}

.step .arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.32);
  z-index: 2;
}

.step:last-child .arrow {
  display: none;
}

/* ============================================================
   Reviews
   ============================================================ */

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

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px;
  position: relative;
}

.review .stars {
  display: flex;
  gap: 2px;
  color: #fbb800;
  margin-bottom: 14px;
}

.review .body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}

.review .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
}

.review .who .name {
  font-size: 14px;
  font-weight: 700;
}

.review .who .meta {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 1px;
}

.review .quote-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Manrope', serif;
  font-size: 60px;
  line-height: 1;
  color: var(--brand-soft);
  font-weight: 700;
}

/* ============================================================
   Notice + CTA banner
   ============================================================ */

.banner {
  background: linear-gradient(105deg, #0a2a4a 0%, #0b3d6b 60%, #0e5894 100%);
  color: #fff;
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,163,122,.4) 0%, transparent 70%);
  pointer-events: none;
}

.banner .eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #95d5b2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.banner h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  line-height: 1.15;
}

.banner p {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 560px;
  line-height: 1.55;
}

.banner .right {
  display: flex;
  gap: 12px;
}

/* quick-actions */

/* ============================================================
   Quick actions strip — shuttle/location + chat + service banners
   ============================================================ */

.qa-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
  align-items: stretch;
}

.qa-loc {
  grid-row: 1 / 3;
}

.qa-chats {
  grid-row: 1;
  grid-column: 2;
}

.qa-banners {
  grid-row: 1;
  grid-column: 3;
}

.qa-banner-accident-wide {
  grid-row: 2;
  grid-column: 2 / 4;
}

/* ─── Location card (left, full height) ─── */

.qa-loc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all .15s ease;
}

.qa-loc .qa-loc-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: all .15s ease;
}

.qa-loc .qa-loc-block:hover {
  background: var(--brand-soft);
}

.qa-loc .qa-loc-divider {
  margin: 0;
}

.qa-loc .qa-big {
  font-size: 26px;
  margin-bottom: 6px;
  line-height: 1;
}

.qa-loc .qa-addr {
  font-size: 17px;
  margin-bottom: 2px;
}

.qa-loc .qa-lbl {
  margin-bottom: 6px;
}

.qa-loc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, var(--brand-soft) 0%, transparent 60%);
  opacity: .6;
  pointer-events: none;
}

.qa-loc:hover {
  border-color: var(--brand);
}

.qa-loc-block {
  position: relative;
}

.qa-loc-divider {
  height: 1px;
  background: var(--line-2);
  margin: 0 -4px;
  position: relative;
}

.qa-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.qa-lbl svg {
  flex-shrink: 0;
  color: var(--brand);
}

.qa-big {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-family: var(--font-num);
  margin-bottom: 12px;
  line-height: 1;
}

.qa-big .num {
  color: var(--brand);
}

.qa-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.qa-addr {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.qa-addr-sub {
  font-size: 12.5px;
  color: var(--ink-3);
}

/* ─── Chat buttons column ─── */

.qa-chats {
  display: flex;
  flex-direction: column;
}

.qa-banners {
  display: flex;
  flex-direction: column;
}

.qa-chat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .15s ease;
  position: relative;
  overflow: hidden;
}

.qa-chat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.qa-chat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.qa-chat-body {
  flex: 1;
  min-width: 0;
}

.qa-chat-t {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.qa-chat-s {
  font-size: 12.5px;
  margin-top: 2px;
  opacity: .8;
}

.qa-chat-chev {
  opacity: .6;
  flex-shrink: 0;
}

.qa-chat-kakao {
  background: #fee500;
  color: #181600;
}

.qa-chat-kakao .qa-chat-ico {
  background: rgba(0,0,0,.06);
  color: #181600;
}

.qa-chat-kakao:hover {
  background: #fdd700;
}

.qa-chat-wa {
  background: #faf0e3;
  color: #25d366;
}

.qa-chat-wa .qa-chat-ico {
  background: transparent;
  color: #25d366;
}

.qa-chat-wa .qa-chat-t {
  color: #25d366;
}

.qa-chat-wa .qa-chat-s {
  color: rgba(37, 211, 102, .75);
}

.qa-chat-wa .qa-chat-chev {
  color: #25d366;
  opacity: .8;
}

.qa-chat-wa:hover {
  background: #f5e7d2;
}

/* ─── Service banners column ─── */

.qa-banners {
  display: flex;
  flex-direction: column;
}

.qa-banner {
  position: relative;
  overflow: hidden;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.qa-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.qa-banner-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: .7;
}

.qa-banner-t {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 4px;
}

.qa-banner-s {
  font-size: 12.5px;
  opacity: .8;
  margin-top: 4px;
  line-height: 1.45;
}

.qa-banner-cta {
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.qa-banner-deco {
  position: absolute;
  right: -10px;
  bottom: -14px;
  opacity: .12;
  pointer-events: none;
}

.qa-banner-accident {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
}

.qa-banner-accident .qa-banner-tag {
  color: rgba(255,255,255,.7);
}

.qa-banner-driver {
  background: linear-gradient(135deg, #00a37a 0%, #008362 100%);
  color: #fff;
}

.qa-banner-driver .qa-banner-tag {
  color: rgba(255,255,255,.7);
}

@media (max-width: 1100px) {
  .qa-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .qa-loc {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .qa-chats {
    grid-column: 1;
    grid-row: 2;
  }

  .qa-banners {
    grid-column: 2;
    grid-row: 2;
  }

  .qa-banner-accident-wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 720px) {
  .qa-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .qa-chats, .qa-banners {
    display: contents;
  }

  .qa-loc {
    order: 1;
  }

  .qa-chat-kakao {
    order: 2;
  }

  .qa-chat-wa {
    order: 3;
  }

  .qa-banner-accident {
    order: 4;
  }

  /* Match all chat/banner cards to the slimmer WhatsApp height */

  .qa-chat, .qa-banner {
    padding: 10px 14px;
    min-height: 0;
  }

  .qa-banner-accident .qa-banner-cta {
    display: none;
  }

  .qa-banner-accident .qa-banner-s {
    margin-top: 2px;
  }
}

/* calendar */

/* ============================================================
   Booking calendar popover
   ============================================================ */

.book-grid-wrap {
  position: relative;
}

.book-field.date {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.book-field.date.on {
  background: var(--brand-soft);
  box-shadow: inset 0 -3px 0 var(--brand);
}

.book-field.date.on .lbl {
  color: var(--brand);
}

.book-field.driver {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.book-field.driver.on {
  background: var(--brand-soft);
  box-shadow: inset 0 -3px 0 var(--brand);
}

.book-field.driver.on .lbl {
  color: var(--brand);
}

.book-field.driver .val {
  font-size: 19px;
}

.driver-pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 96px;
  width: 332px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(8, 30, 60, .25), 0 4px 14px rgba(8, 30, 60, .08);
  padding: 16px;
  z-index: 20;
}

.driver-pop::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 92px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.driver-pop-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.driver-pop-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.driver-opt {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-2);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.driver-opt:hover {
  border-color: var(--ink-3);
}

.driver-opt.on {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: var(--bg-2);
}

.cal-pop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(8, 30, 60, .25), 0 4px 14px rgba(8, 30, 60, .08);
  padding: 18px 22px 16px;
  z-index: 20;
}

.cal-pop::before {
  content: '';
  position: absolute;
  top: -7px;
  left: calc(1.3 / 4.3 * 100% + 60px);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.cal-pop-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
  flex-shrink: 0;
}

.cal-nav:hover {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: transparent;
}

.cal-nav:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.cal-nav:disabled:hover {
  background: var(--bg-2);
  color: var(--ink-2);
  border-color: var(--line);
}

.cal-pop-tabs {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cal-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 14px;
  background: var(--bg-2);
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all .15s ease;
  min-width: 0;
}

.cal-tab em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-4);
  text-transform: uppercase;
}

.cal-tab strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.cal-tab.on {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.cal-tab.on em {
  color: var(--brand);
}

.cal-tab.on strong {
  color: var(--brand-deep);
}

.cal-arrow {
  font-size: 16px;
  color: var(--ink-4);
  font-weight: 600;
  flex-shrink: 0;
}

.cal-nights {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  padding: 5px 10px;
  background: var(--brand-soft);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 18px 0 14px;
}

.cal-month-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
  font-family: var(--font-num);
}

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.cal-dow span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  padding: 4px 0;
  letter-spacing: 0.05em;
}

.cal-dow .sun {
  color: var(--danger);
}

.cal-dow .sat {
  color: #3a78c4;
}

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

.cal-cell {
  height: 36px;
  padding: 0 !important;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  transition: background .12s ease, color .12s ease;
}

/* 빈 셀은 시각적으로 완전히 비운다. 주의: 클래스 'empty' 가 search.css 의 .empty(검색결과 없음 박스:
   흰 배경+테두리+radius)와 충돌 — input.css 조립상 search 가 뒤라 .empty 가 .cal-cell 을 이긴다.
   .cal-cell.empty(specificity 0,2,0)로 명시해 덮음. */

.cal-cell.empty {
  cursor: default;
  border: 0;
  background: transparent;
}

.cal-cell.sun {
  color: var(--danger);
}

.cal-cell.sat {
  color: #3a78c4;
}

.cal-cell:not(.empty):not(.past):not(.start):not(.end):hover {
  background: var(--bg-2);
}

.cal-cell.past {
  color: var(--ink-4);
  opacity: .35;
  cursor: not-allowed;
}

.cal-cell.in-range {
  background: linear-gradient(180deg, rgba(41, 121, 127, .12) 0%, rgba(79, 155, 150, .18) 100%);
  border-radius: 0;
  color: #2f6d72;
}

.cal-cell.start,
.cal-cell.end {
  color: #fff;
  font-weight: 800;
}

.cal-cell.start {
  background: #29797f;
}

.cal-cell.end {
  background: #63a7a2;
}

.cal-cell.start {
  border-radius: 8px 0 0 8px;
}

.cal-cell.end {
  border-radius: 0 8px 8px 0;
}

.cal-cell.start.end {
  border-radius: 8px;
  background: linear-gradient(135deg, #29797f 0%, #3d8d8f 38%, #4f9b99 62%, #63a7a2 100%);
}

.cal-cell.start::after,
.cal-cell.end::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  z-index: -1;
}

.cal-cell.start::after {
  background: #29797f;
}

.cal-cell.end::after {
  background: #63a7a2;
}

.cal-cell.start.end::after {
  background: linear-gradient(135deg, #29797f 0%, #3d8d8f 38%, #4f9b99 62%, #63a7a2 100%);
  z-index: -1;
}

.cal-cell.start {
  z-index: 1;
}

.cal-cell.end {
  z-index: 1;
}

.cal-pop-foot {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}

.cal-pop-foot .cal-time {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 20px;
}

.cal-foot-spacer {
  display: none;
}

.cal-time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: all .15s ease;
  cursor: pointer;
  position: relative;
}

.cal-time:hover {
  border-color: var(--ink-4);
}

.cal-time.on,
.cal-time:focus-within {
  background: var(--brand-soft);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(58, 125, 92, .12);
}

.cal-time::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-4);
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}

.cal-time.on::before,
.cal-time:focus-within::before {
  background: var(--brand);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(58, 125, 92, .2);
}

.cal-time-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.cal-time.on .cal-time-lbl,
.cal-time:focus-within .cal-time-lbl {
  color: var(--brand-deep);
}

.cal-time select {
  border: 0;
  background: transparent;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  letter-spacing: -0.01em;
  padding-right: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.cal-time.on select,
.cal-time:focus-within select {
  color: var(--brand-deep);
}

.cal-foot-spacer {
  flex: 1;
}

.cal-apply {
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 11px 32px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s ease;
}

.cal-apply:hover {
  background: var(--brand-deep);
}

@media (max-width: 900px) {
  .cal-months {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cal-pop-tabs {
    flex-wrap: wrap;
  }

  .cal-pop-foot {
    flex-wrap: wrap;
  }
}

/* ============================================================
   Mobile fullscreen / wide popover for date picker
   ============================================================ */

@media (max-width: 768px) {
  .driver-pop {
    position: fixed;
    inset: auto 8px 8px 8px;
    top: auto;
    right: 8px;
    width: auto;
    padding: 14px 12px 12px;
    border-radius: 14px;
    box-shadow: 0 -20px 60px rgba(8, 30, 60, .28);
    z-index: 1000;
  }

  .driver-pop::before {
    display: none;
  }

  .driver-pop-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .driver-pop-options {
    gap: 6px;
  }

  .driver-opt {
    min-height: 44px;
    font-size: 14px;
  }

  .cal-pop {
    position: fixed;
    inset: auto 8px 8px 8px;
    top: auto;
    left: 8px;
    right: 8px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 12px 12px 10px;
    border-radius: 14px;
    box-shadow: 0 -20px 60px rgba(8, 30, 60, .28);
    z-index: 1000;
  }

  .cal-pop::before {
    display: none;
  }

  /* Head: tighter and the nights pill is hidden (info already in tabs) */

  .cal-pop-head {
    gap: 6px;
    padding-bottom: 8px;
    flex-wrap: nowrap;
  }

  .cal-nav {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .cal-nav svg {
    width: 14px;
    height: 14px;
  }

  .cal-pop-tabs {
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .cal-tab {
    padding: 5px 9px;
    min-width: 0;
    gap: 0;
  }

  .cal-tab em {
    font-size: 9.5px;
    letter-spacing: 0.02em;
  }

  .cal-tab strong {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cal-tab-time {
    display: none;
  }

  .cal-arrow {
    font-size: 13px;
  }

  .cal-nights {
    display: none;
  }

  /* Months stacked, tighter */

  .cal-months {
    gap: 10px;
    padding: 8px 0 6px;
    grid-template-columns: 1fr;
  }

  .cal-month-title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .cal-dow {
    gap: 2px;
    margin-bottom: 2px;
  }

  .cal-dow span {
    font-size: 10px;
    padding: 2px 0;
  }

  .cal-grid {
    gap: 1px;
  }

  .cal-cell {
    height: 28px;
    font-size: 12.5px;
  }

  /* Foot: pickup time + return time on one row, apply button full width on second */

  .cal-pop-foot {
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 8px;
  }

  .cal-pop-foot::before {
    display: none;
  }

  .cal-pop-foot .cal-time {
    min-width: 0;
    padding: 5px 10px;
  }

  .cal-time {
    flex: 1 1 calc(50% - 3px);
    padding: 5px 10px;
    gap: 6px;
    min-width: 0;
  }

  .cal-time::before {
    width: 5px;
    height: 5px;
  }

  .cal-time.on::before {
    box-shadow: 0 0 0 2px rgba(58, 125, 92, .2);
  }

  .cal-time-lbl {
    font-size: 10.5px;
  }

  .cal-time select {
    font-size: 12.5px;
    padding: 0;
  }

  .cal-foot-spacer {
    display: none;
  }

  .cal-apply {
    flex: 1 1 100%;
    padding: 11px;
    font-size: 14px;
    justify-content: center;
  }

  /* Backdrop to dim the page under the bottom-sheet calendar */

  .book-grid-wrap:has(.cal-pop)::before {
    display: none;
  }
}

/* [parts] search — 검색결과 v2 */

/* ============================================================
   Search Results v2 — matches reference layout
   ============================================================ */

.results-v2 {
  background: var(--bg-2);
  min-height: 100vh;
}

/* Dark search bar */

.rsv2-search {
  background: #1a1d24;
  padding: 22px 0;
}

.rsv2-srow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rsv2-back {
  width: 44px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease;
}

.rsv2-back:hover {
  background: rgba(255, 255, 255, .16);
}

.rsv2-field {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 14px 22px;
  position: relative;
  cursor: pointer;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 76px;
  justify-content: center;
  transition: box-shadow .15s ease;
}

.rsv2-field.narrow {
  flex: 0 0 360px;
}

.rsv2-field:hover {
  box-shadow: inset 0 0 0 2px var(--ink-4);
}

.rsv2-field .lbl {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.rsv2-field .val {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  padding-right: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-num), var(--font-kr);
}

.rsv2-field .val .sub {
  color: var(--ink-4);
  font-weight: 600;
  margin-left: 8px;
  font-size: 15px;
  font-family: var(--font-kr);
}

.rsv2-field > svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
}

.driver-pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 332px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(8, 30, 60, .25), 0 4px 14px rgba(8, 30, 60, .08);
  padding: 16px;
  z-index: 20;
}

.driver-pop::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.driver-pop-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.driver-pop-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.driver-opt {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-2);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.driver-opt:hover {
  border-color: var(--ink-3);
}

.driver-opt.on {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: var(--bg-2);
}

.rsv2-cta {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0 32px;
  height: 64px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}

.rsv2-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

/* Body grid */

.rsv2-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 26px 0 80px;
  align-items: start;
}

/* Sidebar */

.rsv2-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 24px;
}

.rsv2-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px 0;
  overflow: hidden;
}

.rsv2-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  padding: 14px 18px 10px;
  margin: 0;
}

.rsv2-section {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  padding: 14px 18px 4px;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line-2);
  margin-top: 4px;
  text-transform: none;
}

.rsv2-card > .rsv2-section:first-child {
  border-top: 0;
  margin-top: 0;
}

.rsv2-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .12s ease;
}

.rsv2-radio:hover {
  background: var(--bg-2);
}

.rsv2-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rsv2-radio-lbl {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.rsv2-radio.on .rsv2-radio-lbl {
  color: var(--brand);
  font-weight: 700;
}

.rsv2-radio-mark {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: border-color .12s ease;
}

.rsv2-radio.on .rsv2-radio-mark {
  border-color: var(--brand);
}

.rsv2-radio.on .rsv2-radio-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--brand);
  border-radius: 50%;
}

/* Main */

.rsv2-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rsv2-notice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.rsv2-warn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.rsv2-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Result card */

.rcv2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.rcv2:hover {
  border-color: var(--ink-4);
  box-shadow: 0 8px 24px rgba(8, 30, 60, .08);
}

.rcv2.is-soldout {
  background: #f6f8fa;
  border-color: #d8dee5;
}

.rcv2.is-soldout:hover {
  border-color: #d8dee5;
  box-shadow: none;
}

.rcv2-img {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rcv2-bbox {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 8px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: -0.01em;
}

.rcv2-bbox.is-soldout {
  background: rgba(90, 98, 108, .92);
}

.rcv2-img-bg {
  flex: 1;
  background: var(--bg-2);
  border-radius: 10px;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.rcv2-img-bg svg {
  width: 100%;
  height: auto;
  max-width: 220px;
}

.rcv2.is-soldout .rcv2-img-bg {
  background: #edf1f5;
}

.rcv2.is-soldout .rcv2-img-bg img,
.rcv2.is-soldout .rcv2-img-bg svg {
  filter: grayscale(1);
  opacity: .7;
}

.rcv2-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  padding-top: 2px;
}

.rcv2-mini > span:not(.dot) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rcv2-mini .dot {
  width: 3px;
  height: 3px;
  background: var(--ink-4);
  border-radius: 50%;
  opacity: .6;
}

.rcv2-mini svg {
  color: var(--ink-4);
}

.rcv2-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rcv2-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-family: var(--font-num), var(--font-kr);
}

.rcv2.is-soldout .rcv2-title,
.rcv2.is-soldout .rcv2-spec dt,
.rcv2.is-soldout .rcv2-spec dd,
.rcv2.is-soldout .rcv2-mini,
.rcv2.is-soldout .rcv2-mini svg {
  color: #6b7280;
}

.rcv2-age {
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 600;
  font-family: var(--font-kr);
  margin-left: 2px;
}

.rcv2-specs {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rcv2-spec {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  font-size: 13.5px;
  line-height: 1.55;
}

.rcv2-spec dt {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rcv2-spec dd {
  margin: 0;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.rcv2-opts {
  word-break: keep-all;
}

.rcv2-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.rcv2-foot.is-soldout {
  grid-template-columns: 1fr auto;
  gap: 16px;
  border-top-color: #d8dee5;
}

.rcv2-price {
  min-width: 0;
}

.rcv2-now {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.rcv2-now span {
  font-family: var(--font-num);
  margin-right: 1px;
}

.rcv2-soldout-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcv2-soldout-copy strong {
  font-size: 21px;
  font-weight: 800;
  color: #4b5563;
  letter-spacing: -0.03em;
}

.rcv2-soldout-copy span {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.rcv2-meta {
  font-size: 12px;
  color: var(--ink-4);
  font-weight: 500;
  margin-top: 4px;
}

.rcv2-cta {
  padding: 14px 32px;
  background: #fff;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s ease;
}

.rcv2-cta:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.rcv2-cta.is-soldout,
.rcv2-cta.is-soldout:hover {
  border-color: #c5ccd6;
  background: #e5e7eb;
  color: #6b7280;
  cursor: default;
  transform: none;
}

.rsv2-pager {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
}

/* Responsive */

@media (max-width: 1180px) {
  .rsv2-body {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
  }

  .rsv2-field.narrow {
    flex-basis: 300px;
  }
}

@media (max-width: 980px) {
  .rsv2-body {
    grid-template-columns: 1fr;
  }

  .rsv2-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .rsv2-aside .rsv2-card {
    flex: 1;
    min-width: 240px;
  }
}

@media (max-width: 760px) {
  .rsv2-search {
    padding: 8px 0;
  }

  .rsv2-srow {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }

  .rsv2-back {
    display: none;
  }

  .rsv2-field {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    padding: 10px 16px;
    border-radius: 10px;
    gap: 4px;
  }

  .rsv2-field.narrow {
    flex: 0 0 auto;
    width: 100%;
  }

  .rsv2-field .lbl {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .rsv2-field .val {
    font-size: 12.5px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    padding-right: 0;
    letter-spacing: -0.03em;
  }

  .rsv2-field .val .sub {
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
  }

  .rsv2-field > svg {
    display: none;
  }

  .rsv2-cta {
    display: block;
    width: 100%;
    height: 52px;
    border-radius: 10px;
    font-size: 15px;
    margin-top: 4px;
  }

  .rcv2 {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
  }

  .rcv2-img {
    gap: 6px;
  }

  .rcv2-img-bg {
    padding: 10px;
    min-height: 0;
  }

  .rcv2-img-bg svg {
    max-width: 150px;
  }

  .rcv2-bbox {
    font-size: 10px;
    padding: 3px 8px;
    gap: 4px;
    top: 4px;
    left: 4px;
  }

  .rcv2-mini {
    gap: 8px;
    font-size: 11.5px;
    padding-top: 0;
  }

  .rcv2-mini svg {
    width: 12px;
    height: 12px;
  }

  .rcv2-title {
    font-size: 17px;
  }

  .rcv2-age {
    font-size: 12.5px;
    margin-left: 4px;
  }

  .rcv2-specs {
    gap: 3px;
    margin-top: 4px;
  }

  .rcv2-spec {
    grid-template-columns: 64px 1fr;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .rcv2-foot {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-top: 8px;
    align-items: center;
  }

  .rcv2-now {
    font-size: 19px;
  }

  .rcv2-meta {
    font-size: 10.5px;
    margin-top: 1px;
  }

  .rcv2-cta {
    width: auto;
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
  }

  /* Notice/pager spacing */

  .rsv2-notice {
    padding: 10px 12px;
    font-size: 12px;
    margin-bottom: 10px;
    gap: 8px;
  }

  .rsv2-list {
    gap: 10px;
  }

  .rsv2-pager {
    margin-top: 16px;
  }
}

/* ============================================================
   Infinite scroll loader / end-of-list marker
   ============================================================ */

.rsv2-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 0 8px;
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.rsv2-loader-spin {
  width: 16px;
  height: 16px;
  border: 2px solid var(--brand-soft);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: rsv2-spin .8s linear infinite;
}

@keyframes rsv2-spin {
  to {
    transform: rotate(360deg);
  }
}

.rsv2-end {
  text-align: center;
  padding: 28px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: -0.01em;
}

.rsv2-end::before, .rsv2-end::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin: 0 12px;
}

.rsv2-filter-card {
  padding: 0;
}

.rsv2-filter-card .rsv2-card-title {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--line-2);
}

.rsv2-filter-group {
  border-top: 1px solid var(--line-2);
}

.rsv2-filter-group:first-of-type {
  border-top: 0;
}

.rsv2-filter-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  transition: background .12s ease;
}

.rsv2-filter-head:hover {
  background: var(--bg-2);
}

.rsv2-filter-title {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.rsv2-filter-val {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.rsv2-filter-chev {
  display: inline-flex;
  color: var(--ink-4);
  transition: transform .18s ease, color .12s ease;
  flex-shrink: 0;
}

.rsv2-filter-head.open .rsv2-filter-chev {
  transform: rotate(180deg);
  color: var(--brand);
}

.rsv2-filter-body {
  padding: 4px 0 10px;
  border-top: 1px solid var(--line-2);
  background: var(--bg-2);
}

.rsv2-filter-body[hidden] {
  display: none;
}

.rsv2-filter-body .rsv2-radio {
  padding: 9px 18px;
}

/* empty 상태 */

.empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 80px 24px;
  text-align: center;
  color: var(--ink-3);
}

.empty svg {
  color: var(--ink-4);
  margin-bottom: 14px;
}

.empty h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
}

.empty p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  body:has(.cal-pop)::before,
  body:has(.driver-pop)::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 25, .45);
    z-index: 19;
  }

  .driver-pop {
    position: fixed;
    inset: auto 8px 8px 8px;
    top: auto;
    right: 8px;
    width: auto;
    padding: 14px 12px 12px;
    border-radius: 14px;
    box-shadow: 0 -20px 60px rgba(8, 30, 60, .28);
    z-index: 1000;
  }

  .driver-pop::before {
    display: none;
  }

  .driver-pop-title {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .driver-pop-options {
    gap: 6px;
  }

  .driver-opt {
    min-height: 44px;
    font-size: 14px;
  }
}

/* [parts] reserve — 예약 플로우(자차보험→예약정보→완료). 디자인 reservation.css */

/* ============================================================
   Reservation flow — CDW, Info, Done
   ============================================================ */

.resv-page {
  background: var(--bg-2);
  min-height: 100vh;
  padding-bottom: 120px;
}

.resv-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.resv-top .container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.resv-back {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 4px;
  flex-shrink: 0;
}

.resv-back:hover {
  color: var(--ink);
}

/* Progress steps */

.rstep-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.rstep {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rstep:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--line);
  margin-left: 14px;
}

.rstep.done:not(:last-child)::after {
  background: var(--brand);
}

.rstep-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-4);
  font-size: 12px;
  font-weight: 700;
  transition: all .2s ease;
}

.rstep-dot .num {
  font-family: var(--font-num);
}

.rstep.done .rstep-dot {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.rstep.current .rstep-dot {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 0 4px rgba(58, 125, 92, .14);
}

.rstep-lbl {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: -0.01em;
}

.rstep.current .rstep-lbl {
  color: var(--ink);
  font-weight: 800;
}

.rstep.done .rstep-lbl {
  color: var(--ink-2);
}

/* Body */

.resv-body {
  padding-top: 36px;
}

.resv-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 18px;
}

.rs-h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rs-h2-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

/* Selected car */

.resv-car-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  background: var(--bg-2);
  border-radius: 12px;
}

.rcc-img {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: grid;
  place-items: center;
}

.rcc-img svg {
  width: 140px;
  height: auto;
}

.rcc-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rcc-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 4px 0 10px;
}

.rcc-specs {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-2);
  flex-wrap: wrap;
}

.rcc-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rcc-specs svg {
  color: var(--ink-4);
}

.rcc-rental-period {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

.rcc-rental-period strong {
  color: var(--ink-2);
  font-weight: 700;
  margin-right: 6px;
}

.rcc-price {
  text-align: right;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.rcc-price .lbl {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 4px;
}

.rcc-price .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  font-family: var(--font-num);
}

.rcc-price .num span {
  margin-right: 2px;
}

/* CDW grid */

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

.cdw-card {
  position: relative;
  padding: 36px 24px 28px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-4);
}

.cdw-card:hover {
  border-color: var(--ink-4);
  transform: translateY(-2px);
}

.cdw-card.on {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 8px 24px rgba(58, 125, 92, .12);
  color: var(--ink);
}

.cdw-recommend {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.cdw-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d4d8dd;
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}

.cdw-check.on {
  background: var(--brand);
  transform: scale(1.05);
}

.cdw-name {
  font-size: 17px;
  font-weight: 800;
  color: inherit;
  letter-spacing: -0.025em;
}

.cdw-card.on .cdw-name {
  color: var(--ink);
}

.cdw-price {
  font-size: 22px;
  font-weight: 800;
  color: inherit;
  letter-spacing: -0.03em;
}

.cdw-card.on .cdw-price {
  color: var(--brand);
}

.cdw-price .num {
  font-family: var(--font-num);
}

.cdw-desc {
  font-size: 13px;
  line-height: 1.55;
  color: inherit;
  letter-spacing: -0.01em;
}

.cdw-limit {
  color: inherit;
}

.cdw-age-active {
  color: var(--ink-2);
  font-weight: 600;
}

.cdw-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 18px 4px 4px;
  text-decoration: none;
}

.cdw-help-q {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-num);
}

/* CDW detail table */

.cdw-detail {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.cdw-detail-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.cdw-detail-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1px solid var(--line);
  table-layout: fixed;
}

.cdw-detail-table th,
.cdw-detail-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.cdw-detail-table th {
  background: var(--bg-2);
  font-weight: 800;
  color: var(--ink);
  font-size: 14.5px;
  text-align: center;
  letter-spacing: -0.02em;
}

.cdw-detail-table th:first-child {
  width: 25%;
}

.cdw-detail-table td:first-child {
  text-align: center;
  background: #fafbfc;
  border-right: 1px solid var(--line);
}

.cdw-detail-table .cdw-dt-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cdw-dt-sub {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.01em;
  margin-left: 2px;
}

.cdw-detail-table td {
  color: var(--ink-2);
}

.cdw-detail-table .num {
  font-family: var(--font-num);
  font-weight: 800;
  color: var(--ink);
}

.cdw-dt-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .cdw-detail-table th, .cdw-detail-table td {
    padding: 12px 12px;
    font-size: 13px;
  }

  .cdw-detail-table th:first-child {
    width: 25%;
  }

  .cdw-detail-table .cdw-dt-name {
    font-size: 14px;
  }
}

.resv-bar {
  position: sticky;
  bottom: 18px;
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(8, 30, 60, .08);
}

.rb-summary {
  display: flex;
  gap: 32px;
  align-items: center;
}

.rb-summary > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rb-l {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}

.rb-summary strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.rb-total strong {
  font-size: 20px;
  color: var(--brand);
  font-family: var(--font-num);
  letter-spacing: -0.03em;
}

.rb-total strong span {
  font-family: var(--font-kr);
  font-size: 14px;
  margin-left: 1px;
}

.rb-cta {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s ease;
}

.rb-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.rb-cta:disabled {
  background: var(--ink-4);
  cursor: not-allowed;
  transform: none;
}

.rb-cta.full {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 18px;
}

/* Step 2: info */

.info-step {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}

.info-main {
  min-width: 0;
}

.info-side {
  position: sticky;
  top: 22px;
}

.rs-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rs-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rs-field.full {
  grid-column: 1 / -1;
}

.rs-field > span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rs-field em {
  font-style: normal;
  color: var(--danger);
  font-weight: 800;
}

.rs-field input {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.rs-field input::-moz-placeholder {
  color: var(--ink-4);
}

.rs-field input::placeholder {
  color: var(--ink-4);
}

.rs-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(58, 125, 92, .12);
}

/* Extras */

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

.extra-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .15s ease;
}

.extra-card:hover {
  border-color: var(--ink-4);
}

.extra-card.on {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.extra-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all .15s ease;
}

.extra-check.on {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.extra-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  padding-right: 30px;
}

.extra-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

.extra-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand);
  font-family: var(--font-num);
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.extra-request-wrap {
  display: grid;
  gap: 18px;
}

.extra-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.extra-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.extra-group-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.extra-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.extra-add-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

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

.extra-empty {
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--ink-3);
  font-size: 13px;
}

.extra-selected-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  position: relative;
}

.extra-selected-thumb {
  width: 108px;
  height: 108px;
  border-radius: 12px;
  background: var(--bg-2);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.extra-selected-thumb img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  -o-object-fit: fill !important;
     object-fit: fill !important;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
  flex: 0 0 auto;
}

.extra-selected-thumb span {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

.extra-selected-body {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.extra-selected-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.extra-selected-meta {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  word-break: keep-all;
}

.extra-selected-remain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  background: #fde8e8;
  color: #d9485f;
  font-size: 12px;
  font-weight: 700;
}

.extra-selected-options {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.extra-selected-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.extra-selected-option-index {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-3);
}

.extra-selected-option-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.extra-selected-option-select select {
  min-width: 132px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
}

.extra-selected-option-check {
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.extra-selected-option-check.on {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.extra-selected-actions {
  min-width: 132px;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.extra-stepper {
  display: inline-grid;
  grid-template-columns: 34px auto 34px;
  align-items: center;
  gap: 8px;
}

.extra-step-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.extra-step-val {
  min-width: 16px;
  text-align: center;
  color: var(--danger);
  font-size: 18px;
  font-weight: 800;
}

.extra-selected-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.extra-remove-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #d9485f;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(25, 33, 46, 0.12);
}

.extra-modal-open {
  overflow: hidden;
}

.extra-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 24, 32, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.extra-modal {
  width: min(540px, 100%);
  height: min(84vh, 860px);
  max-height: min(84vh, 860px);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  box-shadow: 0 24px 80px rgba(18, 24, 32, 0.22);
}

.extra-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 14px;
}

.extra-modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.extra-modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.extra-modal-take-types {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 24px 10px;
}

.extra-take-chip {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.extra-take-chip.on {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.extra-take-chip:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.extra-modal-guide {
  padding: 12px 24px 6px;
  text-align: center;
}

.extra-modal-guide-msg {
  color: var(--ink-2);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.extra-modal-guide-msg .highlight {
  color: #e03131;
  text-decoration: underline;
  font-weight: 700;
}

.extra-modal-guide-sub {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}

.extra-modal-notice {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: calc(100% - 56px);
  max-width: 344px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(239, 30, 50, 0.96);
  color: #fff;
  border: 1px solid #d90429;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  line-height: 1.5;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 30;
}

.extra-modal-notice.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.extra-modal-scroll {
  overflow: auto;
  padding: 0 24px 12px;
}

.extra-modal-company {
  display: block;
  padding: 10px 0;
}

.extra-modal-company + .extra-modal-company {
  margin-top: 12px;
}

.extra-modal-company-head {
  display: grid;
  gap: 2px;
  margin-bottom: 10px;
}

.extra-modal-company-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.extra-modal-company-address {
  font-size: 12.5px;
  color: var(--ink-4);
}

.extra-modal-grid {
  display: grid;
  gap: 12px;
}

.extra-modal-card {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.extra-modal-card:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.extra-modal-card.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 12px 28px rgba(58, 125, 92, 0.12);
}

.extra-modal-card.disabled,
.extra-modal-card:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  border-color: var(--line);
  background: #f8f9fa;
  box-shadow: none;
  transform: none;
}

.extra-modal-card.disabled:hover,
.extra-modal-card:disabled:hover {
  border-color: var(--line);
  transform: none;
}

.extra-modal-thumb {
  width: 102px;
  height: 102px;
  border-radius: 14px;
  background: var(--bg-2);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.extra-modal-thumb img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  -o-object-fit: fill !important;
     object-fit: fill !important;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
  flex: 0 0 auto;
}

.extra-modal-thumb span {
  font-size: 11px;
  color: var(--ink-4);
}

.extra-modal-card-body {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 6px;
}

.extra-modal-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.extra-modal-card-meta {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

.extra-modal-card-price {
  font-size: 14px;
  color: var(--ink-2);
}

.extra-modal-card-remain {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  background: #fde8e8;
  color: #d9485f;
  font-size: 12px;
  font-weight: 700;
}

.extra-modal-empty {
  padding: 28px 18px;
  border-radius: 16px;
  background: var(--bg-2);
  color: var(--ink-3);
  text-align: center;
}

.extra-modal-loading {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
}

.extra-modal-loading .rsv2-loader-spin {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

.extra-modal-foot {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
}

.extra-modal-apply {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 14px;
  background: #ef8696;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.extra-modal-apply:hover {
  filter: brightness(0.97);
}

.extra-modal-apply:disabled {
  background: var(--ink-4);
  cursor: not-allowed;
  filter: none;
}

.pay-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(18, 24, 32, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pay-modal {
  width: min(540px, 100%);
  max-height: min(84vh, 860px);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  box-shadow: 0 24px 80px rgba(18, 24, 32, 0.22);
}

.pay-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 14px;
  border-bottom: 1px solid var(--line);
}

.pay-modal-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.pay-modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.pay-modal-body {
  overflow: auto;
  padding: 20px 24px 24px;
  display: grid;
  gap: 16px;
}

.pay-modal-method-list {
  display: grid;
  gap: 12px;
}

.pay-modal-method {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 18px 16px;
  display: grid;
  grid-template-columns: 24px auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.pay-modal-method.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 12px 28px rgba(58, 125, 92, 0.12);
}

.pay-modal-radio {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.pay-modal-method.selected .pay-modal-radio {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.pay-modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.pay-modal-badge.vbank,
.pay-modal-badge.card {
  background: #1f8f6a;
  color: #fff;
}

.pay-modal-badge.naverpay {
  background: #03c75a;
  color: #fff;
}

.pay-modal-badge.kakaopay {
  background: #fee500;
  color: #191919;
}

.pay-modal-method-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.pay-modal-method-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.pay-modal-method-text em {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-3);
}

.pay-modal-detail-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.pay-modal-form-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.pay-modal-form-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
}

.pay-modal-form-row select,
.pay-modal-form-row input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}

.pay-modal-toggle {
  display: flex;
  gap: 8px;
}

.pay-modal-toggle button {
  flex: 1;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.pay-modal-toggle button.on {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.pay-modal-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.pay-modal-expiry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 120px));
  gap: 8px;
}

.pay-modal-placeholder,
.pay-modal-empty {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  background: var(--bg-2);
}

.pay-modal-summary {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: grid;
  gap: 12px;
}

.pay-modal-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pay-modal-summary-row span {
  color: var(--ink-3);
  font-size: 14px;
}

.pay-modal-summary-row strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-align: right;
}

.pay-modal-summary-row.total strong {
  color: #0d6efd;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.pay-modal-foot {
  padding: 0 24px 24px;
}

.pay-modal-submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.pay-modal-submit:disabled {
  background: var(--ink-4);
  cursor: not-allowed;
}

/* Agree */

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-2);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background .15s ease;
}

.agree-row.on {
  background: var(--brand-soft);
}

.agree-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agree-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: transparent;
  flex-shrink: 0;
  transition: all .15s ease;
}

.agree-row.on .agree-mark {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.agree-row > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agree-row strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.agree-row em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* Summary card */

.resv-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.resv-summary h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.rsum-car {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.rsum-car-img {
  width: 80px;
  height: 50px;
  background: var(--bg-2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 4px;
  flex-shrink: 0;
}

.rsum-car-img svg {
  width: 70px;
  height: auto;
}

.rsum-car-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.rsum-car-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}

.rsum-block {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.rsum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13.5px;
}

.rsum-row > span {
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

.rsum-row strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rsum-row .num {
  font-family: var(--font-num);
}

.rsum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 4px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}

.rsum-total > span {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.rsum-total strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  font-family: var(--font-num);
  letter-spacing: -0.04em;
}

.rsum-total strong span {
  font-size: 14px;
  font-family: var(--font-kr);
  margin-left: 2px;
}

.rsum-note {
  font-size: 12px;
  color: var(--ink-4);
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* Done */

.done-step {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}

.done-hero {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
}

.done-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(58, 125, 92, .3);
}

.done-hero h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.done-hero p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0 0 22px;
}

.done-no {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-2);
  border-radius: 999px;
  margin-bottom: 28px;
}

.done-no .lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

.done-no .num {
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: 0.02em;
}

.done-copy {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all .15s ease;
  margin-left: 4px;
}

.done-copy:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.done-copy.copied {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.done-copy svg {
  flex-shrink: 0;
}

.cdw-detail-empty {
  margin: 0;
  padding: 16px 20px;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px dashed var(--line);
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.done-grid {
  margin: 0 0 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-2);
  border-radius: 14px;
  padding: 22px 24px;
}

.done-grid > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 13.5px;
}

.done-grid dt {
  color: var(--ink-3);
  font-weight: 600;
}

.done-grid dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.done-grid .num {
  font-family: var(--font-num);
}

.done-amt {
  color: var(--brand) !important;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.done-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* "Same as booker" checkbox */

.same-as-booker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  margin-bottom: 16px;
  transition: all .15s ease;
}

.same-as-booker:hover {
  border-color: var(--ink-4);
}

.same-as-booker.on {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-deep);
}

.sab-mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: transparent;
  flex-shrink: 0;
  transition: all .15s ease;
}

.same-as-booker.on .sab-mark {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.rs-field input:disabled {
  background: var(--bg-2);
  color: var(--ink-3);
  cursor: not-allowed;
}

@media (max-width: 960px) {
  .cdw-grid {
    grid-template-columns: 1fr;
  }

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

  .info-side {
    position: static;
  }

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

  .resv-car-card {
    grid-template-columns: 1fr;
  }

  .rcc-price {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px 0 0;
    text-align: left;
  }

  .rstep-bar {
    flex-wrap: wrap;
  }

  .rstep:not(:last-child)::after {
    width: 24px;
  }

  .rs-fields {
    grid-template-columns: 1fr;
  }

  .resv-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .rb-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile compact header — single-row stepper */

@media (max-width: 768px) {
  .resv-page {
    padding-bottom: 24px;
  }

  .resv-top {
    padding: 10px 0;
  }

  .resv-top .container {
    gap: 8px;
  }

  .resv-back {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    background: var(--bg-2);
    color: var(--ink-2);
    font-size: 0;
    flex-shrink: 0;
    justify-content: center;
  }

  .resv-back svg {
    margin: 0;
  }

  .rstep-bar {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }

  .rstep {
    gap: 6px;
    min-width: 0;
  }

  .rstep:not(:last-child)::after {
    width: 14px;
    margin-left: 6px;
    margin-right: 6px;
  }

  .rstep-dot {
    width: 22px;
    height: 22px;
    font-size: 11px;
    border-width: 1.5px;
    flex-shrink: 0;
  }

  .rstep-lbl {
    font-size: 12.5px;
    display: none;
    white-space: nowrap;
  }

  .rstep.current .rstep-lbl {
    display: inline;
  }

  /* Reservation page section + CDW compact */

  .resv-body {
    padding-top: 14px;
  }

  .resv-section {
    padding: 14px 14px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .rs-h2 {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 6px;
    margin: 0 0 12px;
  }

  .rs-h2-sub {
    font-size: 12px;
  }

  .cdw-grid {
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .cdw-card {
    padding: 9px 12px 10px;
    display: grid !important;
    grid-template-columns: 22px auto 1fr auto;
    grid-template-rows: auto auto;
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 1px;
    align-items: center;
    text-align: left;
    border-radius: 11px;
    position: relative;
  }

  .cdw-card.on {
    transform: none;
  }

  .cdw-recommend {
    position: static;
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    font-size: 9px;
    padding: 1px 7px;
    border-radius: 999px;
    transform: none;
    line-height: 1.5;
    margin: 0;
  }

  .cdw-card:has(.cdw-recommend) .cdw-name {
    margin-right: 0;
  }

  .cdw-check {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 22px;
    height: 22px;
    align-self: center;
  }

  .cdw-check svg {
    width: 11px;
    height: 11px;
  }

  .cdw-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    align-self: center;
    justify-self: start;
    line-height: 1.2;
    white-space: nowrap;
  }

  .cdw-price {
    grid-column: 4;
    grid-row: 1;
    font-size: 15px;
    white-space: nowrap;
    align-self: center;
    line-height: 1.2;
  }

  .cdw-desc {
    grid-column: 2 / 5;
    grid-row: 2;
    font-size: 11px;
    line-height: 1.4;
    color: var(--ink-3);
    margin-top: 1px;
  }

  .cdw-desc br {
    display: none;
  }

  .cdw-desc .cdw-limit {
    margin-right: 3px;
  }

  .cdw-help {
    padding: 8px 12px;
    font-size: 12px;
    margin-top: 8px;
    gap: 8px;
  }

  .cdw-help svg {
    width: 22px;
    height: 22px;
  }

  /* Selected car card — compact horizontal layout */

  .resv-car-card {
    grid-template-columns: 86px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 10px;
    padding: 14px;
    align-items: start;
    border-radius: 12px;
  }

  .rcc-img {
    padding: 4px;
    border-radius: 8px;
  }

  .rcc-img svg {
    width: 78px;
    height: auto;
  }

  .rcc-cat {
    font-size: 10.5px;
  }

  .rcc-body h3 {
    font-size: 15px;
    margin: 1px 0 4px;
  }

  .rcc-specs {
    gap: 8px;
    font-size: 11px;
  }

  .rcc-specs svg {
    width: 11px;
    height: 11px;
  }

  .rcc-price {
    grid-column: 1 / -1;
    text-align: left;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px dashed var(--line);
    align-self: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
  }

  .rcc-price .lbl {
    font-size: 11.5px;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .rcc-price .num {
    font-size: 18px;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  /* Extras compact */

  .extra-grid {
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .extra-card {
    padding: 9px 38px 10px 12px;
    border-radius: 11px;
    min-height: 0;
    display: block;
  }

  .extra-card .extra-name {
    font-size: 14px;
    margin: 0;
  }

  .extra-card .extra-desc {
    font-size: 11px;
    line-height: 1.4;
    margin: 1px 0 2px;
    color: var(--ink-3);
  }

  .extra-card .extra-price {
    font-size: 13px;
  }

  .extra-check {
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .extra-check svg {
    width: 11px;
    height: 11px;
  }

  .extra-group {
    padding: 14px;
    border-radius: 12px;
  }

  .extra-group-head {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .extra-group-title {
    font-size: 15px;
  }

  .extra-add-btn {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .extra-selected-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .extra-selected-thumb {
    width: 76px;
    height: 76px;
  }

  .extra-selected-body {
    gap: 6px;
  }

  .extra-selected-name {
    font-size: 14px;
  }

  .extra-selected-meta {
    font-size: 12px;
  }

  .extra-selected-remain {
    font-size: 11px;
    min-height: 24px;
  }

  .extra-selected-options {
    gap: 6px;
  }

  .extra-selected-option {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 6px;
    align-items: start;
  }

  .extra-selected-option-controls {
    gap: 6px;
  }

  .extra-selected-option-select select {
    min-width: 120px;
    height: 32px;
    font-size: 11px;
  }

  .extra-selected-option-check {
    height: 32px;
    font-size: 11px;
    padding: 0 10px;
  }

  .extra-selected-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
  }

  .extra-stepper {
    grid-template-columns: 30px auto 30px;
    gap: 6px;
  }

  .extra-step-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 18px;
  }

  .extra-step-val {
    font-size: 16px;
  }

  .extra-selected-price {
    font-size: 15px;
  }

  .extra-remove-btn {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .extra-modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .extra-modal {
    width: 100%;
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 22px 22px 0 0;
  }

  .extra-modal-head {
    padding: 18px 18px 10px;
  }

  .extra-modal-title {
    font-size: 20px;
  }

  .extra-modal-take-types {
    padding: 0 18px 10px;
  }

  .extra-modal-guide {
    padding: 10px 18px 6px;
    font-size: 13px;
  }

  .extra-modal-notice {
    width: calc(100% - 40px);
    max-width: none;
    font-size: 13px;
  }

  .extra-modal-scroll {
    padding: 0 18px 10px;
    gap: 10px;
  }

  .extra-modal-grid {
    gap: 10px;
  }

  .extra-modal-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .extra-modal-thumb {
    width: 86px;
    height: 86px;
  }

  .extra-modal-card-name {
    font-size: 15px;
  }

  .extra-modal-card-meta, .extra-modal-card-price {
    font-size: 12px;
  }

  .extra-modal-card-remain {
    font-size: 11px;
    min-height: 24px;
  }

  .extra-modal-foot {
    padding: 12px 18px 18px;
  }

  .extra-modal-apply {
    height: 50px;
    border-radius: 12px;
    font-size: 15px;
  }

  .pay-modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .pay-modal {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 22px 22px 0 0;
  }

  .pay-modal-head {
    padding: 18px 18px 10px;
  }

  .pay-modal-title {
    font-size: 20px;
  }

  .pay-modal-body {
    padding: 16px 18px 18px;
    gap: 12px;
  }

  .pay-modal-method {
    grid-template-columns: 22px auto minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
  }

  .pay-modal-radio {
    width: 22px;
    height: 22px;
  }

  .pay-modal-badge {
    min-width: 62px;
    height: 24px;
    font-size: 10px;
    padding: 0 8px;
  }

  .pay-modal-method-text strong {
    font-size: 15px;
  }

  .pay-modal-method-text em {
    font-size: 12px;
  }

  .pay-modal-detail-box {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;
  }

  .pay-modal-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .pay-modal-form-row label {
    font-size: 13px;
  }

  .pay-modal-form-row select, .pay-modal-form-row input {
    height: 42px;
    font-size: 13px;
  }

  .pay-modal-toggle button {
    height: 38px;
    font-size: 12px;
  }

  .pay-modal-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pay-modal-expiry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pay-modal-summary {
    padding-top: 12px;
    gap: 10px;
  }

  .pay-modal-summary-row span {
    font-size: 13px;
  }

  .pay-modal-summary-row strong {
    font-size: 14px;
  }

  .pay-modal-summary-row.total strong {
    font-size: 24px;
  }

  .pay-modal-foot {
    padding: 0 18px 18px;
  }

  .pay-modal-submit {
    height: 52px;
    border-radius: 12px;
    font-size: 15px;
  }

  /* Done page summary — compact */

  .done-hero {
    padding: 0 4px;
  }

  .done-hero h1 {
    font-size: 21px;
    margin-bottom: 6px;
  }

  .done-hero p {
    font-size: 13.5px;
    margin-bottom: 16px;
  }

  .done-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .done-icon svg {
    width: 28px;
    height: 28px;
  }

  .done-no {
    padding: 7px 14px;
    margin-bottom: 16px;
    gap: 8px;
  }

  .done-no .lbl {
    font-size: 11px;
  }

  .done-no .num {
    font-size: 13.5px;
  }

  .done-grid {
    padding: 14px 16px;
    margin-bottom: 18px;
    gap: 8px;
    border-radius: 12px;
  }

  .done-grid > div {
    grid-template-columns: 72px 1fr;
    -moz-column-gap: 12px;
         column-gap: 12px;
    font-size: 13px;
    align-items: baseline;
  }

  .done-grid dt {
    font-size: 12.5px;
    white-space: nowrap;
  }

  .done-grid dd {
    font-size: 13px;
    line-height: 1.4;
    word-break: keep-all;
  }

  .done-amt {
    font-size: 15px !important;
  }

  .done-actions {
    flex-direction: column;
    gap: 8px;
  }

  .done-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* [parts] lookup — 예약확인(조회폼→상세). 디자인 lookup.css */

/* ============================================================
   예약 확인 lookup — Form + Detail
   ============================================================ */

/* ----- Form ----- */

.lookup-page {
  background: var(--bg-2);
  padding: 64px 0 100px;
  min-height: 70vh;
}

.lookup-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.lookup-head {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 28px;
}

.lookup-head .eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
}

.lookup-head h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 10px 0 8px;
}

.lookup-head p {
  font-size: 15px;
  color: var(--ink-3);
  margin: 0;
}

.lookup-notice {
  grid-column: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  text-align: center;
  letter-spacing: -0.01em;
}

.lookup-notice strong {
  color: var(--ink);
  font-weight: 800;
}

.lookup-form {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.lkf-field {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
  display: block;
}

.lkf-field:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(15, 20, 23, .06);
}

.lkf-field .req {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--danger);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.lkf-field input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 44px 18px 22px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  outline: none;
}

.lkf-field input::-moz-placeholder {
  color: var(--ink-4);
  font-weight: 500;
}

.lkf-field input::placeholder {
  color: var(--ink-4);
  font-weight: 500;
}

.lkf-cta {
  margin-top: 10px;
  padding: 18px 24px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background .15s ease;
}

.lkf-cta:hover:not(:disabled) {
  background: #000;
}

.lkf-cta:disabled {
  background: var(--ink-4);
  cursor: not-allowed;
  opacity: .7;
}

.lkf-help {
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 12px;
  align-self: center;
  transition: color .15s ease;
}

.lkf-help:hover {
  color: var(--ink);
}

/* Side cards */

.lookup-side {
  grid-column: 2;
  grid-row: 2 / 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.lks-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lks-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lks-t {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.lks-num {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  margin: 4px 0 6px;
}

.lks-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ----- Detail ----- */

.detail-page {
  background: var(--bg-2);
  padding: 36px 0 100px;
}

.detail-top {
  margin-bottom: 22px;
}

.detail-back {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 14px;
  cursor: pointer;
  transition: color .15s ease;
}

.detail-back:hover {
  color: var(--ink);
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 30px;
}

.dcard-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero card */

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, #fff 0%, #f4f8fc 100%);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(8, 30, 60, .06);
}

.detail-hero.is-cancelled {
  background: linear-gradient(135deg, #f6f8fa 0%, #fff 100%);
  border: 1px solid #d8dee5;
  box-shadow: 0 4px 18px rgba(55, 65, 81, .08);
}

.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: -0.01em;
}

.dh-badge.is-pending {
  background: var(--accent);
}

.dh-badge.is-confirmed {
  background: var(--brand);
}

.detail-hero.is-cancelled .dh-badge {
  background: #7b8794;
}

.dh-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

.dh-no {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 6px;
}

.dh-no .lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.05em;
}

.dh-no .num {
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: 0.02em;
  padding: 4px 10px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 6px;
}

.detail-hero h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.3;
}

.detail-hero p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 540px;
}

.dh-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dh-cancel-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #f1f4f7;
  color: #52606d;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.dh-right {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  text-align: center;
}

.dh-car {
  display: grid;
  place-items: center;
  padding: 8px 0;
}

.dh-car svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.dh-car-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-top: 8px;
}

.dh-car-spec {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 3px;
}

.detail-cancel-banner {
  border: 1px solid #d8dee5;
  background: #f7f9fb;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-cancel-banner strong {
  font-size: 18px;
  font-weight: 800;
  color: #52606d;
  letter-spacing: -0.02em;
}

.detail-cancel-banner span {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Body grid */

.detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.detail-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 22px;
}

/* Timeline */

.dtimeline {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.dtimeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.dt-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
  z-index: 1;
}

.dt-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-4);
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.dt-step.done .dt-dot {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.dt-step.current .dt-dot {
  box-shadow: 0 0 0 4px rgba(11, 61, 107, .15);
  transform: scale(1.1);
}

.dt-idx {
  font-family: var(--font-num);
}

.dt-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.dt-step.done .dt-lbl {
  color: var(--ink);
}

.dt-step.current .dt-lbl {
  color: var(--brand);
}

.dt-date {
  font-size: 11.5px;
  color: var(--ink-4);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Schedule */

.dschedule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.ds-block {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 22px 24px;
}

.ds-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.ds-time {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.ds-where {
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ds-where svg {
  color: var(--ink-4);
  flex-shrink: 0;
}

.ds-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--brand);
}

.ds-arrow .num {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0;
}

/* Chips */

.dchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dchip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  background: var(--bg-2);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.dchip svg {
  color: var(--accent);
}

/* Fees */

.dfees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

.dfee {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.5;
}

.dfee dt {
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.dfee dd {
  margin: 0;
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.dfee dd.is-pending {
  color: #e8590c;
  font-weight: 800;
}

.dfee.free dd {
  color: var(--accent);
  font-weight: 800;
}

.dfee.discount dd {
  color: var(--danger);
}

.dtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.dt-lbl {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.dt-amt {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
}

.dt-amt .num {
  margin-right: 1px;
}

.dpay-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-4);
  font-weight: 500;
}

/* Info */

.dinfo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dinfo > div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  font-size: 13.5px;
}

.dinfo dt {
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dinfo dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dinfo .num {
  font-family: var(--font-num);
}

/* Emergency card */

.detail-card.emergency {
  background: #1a1d24;
  color: rgba(255, 255, 255, .75);
  border-color: transparent;
}

.detail-card.emergency .em-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 12px;
}

.detail-card.emergency .em-head strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.em-num {
  display: block;
  font-family: var(--font-num);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
  text-decoration: none;
}

.detail-card.emergency p {
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, .55);
}

/* Extra deals */

.extra-deals-card {
  margin-top: 18px;
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.extra-deals-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.extra-deal-group {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.ed-group-header {
  background: #fff;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.ed-comp-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ed-comp-title strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.ed-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.ed-status-badge.is-ready {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

.ed-status-badge.is-paid {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.ed-status-badge.is-confirmed {
  background: #e3f2fd;
  color: #0d47a1;
  border: 1px solid #bbdefb;
}

.ed-take-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 3px 8px;
  border-radius: 4px;
}

.ed-comp-addr {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.4;
}

.ed-group-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ed-sub-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.ed-item-name {
  color: var(--ink-2);
  font-weight: 600;
}

.ed-item-price {
  font-weight: 700;
  color: var(--ink);
}

.ed-group-footer {
  background: #f8f9fa;
  padding: 14px 20px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.ed-group-footer span {
  color: var(--ink-3);
  font-weight: 600;
}

.ed-group-footer strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}

.ed-btn-cancel-all {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 6px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-left: auto;
}

.ed-btn-cancel-all:hover {
  background: var(--danger);
  color: #fff;
}

.ed-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ed-btn-cancel-group {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 5px 10px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ed-btn-cancel-group:hover {
  background: var(--danger);
  color: #fff;
}

.btn.outline.btn-danger {
  border-color: var(--danger);
  color: var(--danger);
  background: #fff;
}

.btn.outline.btn-danger:hover {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

/* Responsive */

@media (max-width: 980px) {
  .lookup-container {
    grid-template-columns: 1fr;
  }

  .lookup-side {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
  }

  .lookup-side .lks-card {
    flex: 1;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .detail-body {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .lookup-side {
    flex-direction: column;
  }

  .dschedule {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ds-arrow {
    flex-direction: row;
  }

  .dtimeline {
    flex-wrap: wrap;
    gap: 18px;
  }

  .dtimeline::before {
    display: none;
  }

  .dt-step {
    flex: 0 0 30%;
  }
}

/* Cancel Confirm Modal */

.cancel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10020;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cancel-modal.hidden {
  display: none !important;
}

.cancel-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 23, 0.56);
  backdrop-filter: blur(6px);
}

.cancel-modal-content {
  position: relative;
  width: min(520px, calc(100% - 20px));
  max-height: calc(100vh - 24px);
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
  animation: edModalShow 0.2s ease-out;
}

.cancel-modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid #eceff3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cancel-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cancel-modal-close {
  border: 0;
  background: transparent;
  color: #8b96a2;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.cancel-modal-body {
  padding: 18px 22px 12px;
  max-height: calc(100vh - 170px);
  overflow-y: auto;
}

.cancel-modal-question {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cancel-modal-desc {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

.cancel-modal-targets,
.cancel-modal-amounts {
  border: 1px solid #e9edf2;
  border-radius: 16px;
  background: #f8fafc;
  padding: 14px 16px;
}

.cancel-modal-targets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.cancel-modal-target-row + .cancel-modal-target-row {
  padding-top: 12px;
  border-top: 1px solid #e7ebf0;
}

.cancel-modal-target-kind {
  font-size: 12px;
  color: var(--ink-4);
  margin-bottom: 4px;
}

.cancel-modal-target-kind span {
  margin-left: 6px;
}

.cancel-modal-target-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.cancel-modal-amount-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cancel-modal-amount-head strong {
  font-size: 14px;
  font-weight: 800;
}

.cancel-modal-amount-head span {
  font-size: 11.5px;
  font-weight: 700;
  color: #2f66ff;
}

.cancel-modal-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
  color: var(--ink-2);
  font-size: 12.5px;
}

.cancel-modal-amount-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.cancel-modal-amount-row.is-penalty strong,
.cancel-modal-amount-row.is-penalty span {
  color: #ef4444;
}

.cancel-modal-amount-row.is-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #d9dee5;
}

.cancel-modal-amount-row.is-total span {
  color: var(--ink);
  font-weight: 700;
}

.cancel-modal-amount-row.is-total strong {
  font-size: 22px;
  color: #2f66ff;
}

.cancel-modal-notice {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff4f4;
  color: #ef4444;
  font-size: 11.5px;
  line-height: 1.6;
  border: 1px solid #ffe1e1;
}

.cancel-modal-footer {
  padding: 14px 22px 22px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cancel-modal-btn {
  height: 46px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 112px;
  padding: 0 18px;
}

.cancel-modal-btn-secondary {
  background: #fff;
  border: 1px solid #d5dbe3;
  color: var(--ink-2);
}

.cancel-modal-btn-secondary:hover {
  border-color: #bfc9d3;
  color: var(--ink);
}

.cancel-modal-btn-primary {
  border: 0;
  background: #ff4b4b;
  color: #fff;
  box-shadow: none;
}

.cancel-modal-btn-primary:hover {
  opacity: 0.92;
}

/* Refund Modal */

.ed-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ed-modal.hidden {
  display: none !important;
}

.ed-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.ed-modal-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 440px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  animation: edModalShow 0.2s ease-out;
  font-family: inherit;
}

@keyframes edModalShow {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ed-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ed-modal-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.ed-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s;
}

.ed-modal-close:hover {
  color: #333;
}

.ed-modal-body {
  padding: 24px;
}

.ed-modal-field {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.ed-modal-field label {
  width: 80px;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.ed-modal-value {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}

.ed-modal-field select,
.ed-modal-field input {
  flex: 1;
  height: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  color: #333;
  transition: border-color 0.15s;
}

.ed-modal-field select:focus,
.ed-modal-field input:focus {
  border-color: var(--danger);
}

.ed-modal-notice {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--danger);
  line-height: 1.5;
  background: #fff5f5;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ffe3e3;
}

.ed-modal-footer {
  padding: 16px 24px 24px;
}

.ed-modal-btn-submit {
  width: 100%;
  height: 48px;
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
}

.ed-modal-btn-submit:hover {
  opacity: 0.9;
}

/* Cancelled Extra Deal Group Styling */

.extra-deal-group.is-cancelled .ed-comp-title strong,
.extra-deal-group.is-cancelled .ed-item-name,
.extra-deal-group.is-cancelled .ed-item-price,
.extra-deal-group.is-cancelled .ed-group-footer strong {
  text-decoration: line-through;
  color: #999 !important;
}

.ed-status-badge.is-cancelled {
  background: #f1f3f5;
  color: #868e96;
  border-color: #dee2e6;
}

@media (max-width: 680px) {
  .cancel-modal-content {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    border-radius: 16px;
  }

  .cancel-modal-header,
  .cancel-modal-body,
  .cancel-modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cancel-modal-header h3 {
    font-size: 17px;
  }

  .cancel-modal-footer {
    justify-content: stretch;
  }

  .cancel-modal-btn {
    flex: 1;
    min-width: 0;
  }
}

/* [parts] guide — 이용안내(탭 5개). 디자인 guide.css (원본 676행 짝없는 } 제거) */

/* ============================================================
   이용안내 — tabbed guide
   ============================================================ */

.guide-v2 {
  background: #fff;
  padding-bottom: 100px;
}

.guide-head-wrap {
  padding: 64px 0 36px;
  text-align: center;
}

.guide-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
}

.guide-head-wrap h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 10px 0 6px;
}

.guide-head-wrap > p {
  font-size: 15px;
  color: var(--ink-3);
  margin: 0;
}

/* Tabs */

.guide-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.gtab {
  white-space: nowrap;
}

/* Cars tab grid */

/* Cars tab grid */

.cars-tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 761px) {
  .cars-tab-grid {
    width: 64%;
    margin-inline: auto;
  }
}

.cars-tab-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.cars-tab-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgba(8, 30, 60, .08);
  transform: translateY(-1px);
}

@media (min-width: 761px) {
  .cars-tab-card {
    padding: 14px 22px;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    -moz-column-gap: 22px;
         column-gap: 22px;
  }

  .cars-tab-card .ctc-img {
    aspect-ratio: 16 / 10;
    width: 120px;
    order: -1;
    padding: 8px;
  }

  .cars-tab-card .ctc-img svg {
    max-width: 100%;
    max-height: 100%;
  }

  .cars-tab-card .ctc-head {
    min-width: 0;
  }

  .cars-tab-card .ctc-foot {
    justify-self: end;
    border-top: 0 !important;
    padding-top: 0 !important;
    flex-direction: row;
  }
}

.cars-tab-card .ctc-img {
  background: var(--bg-2);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.ctc-head {
}

.ctc-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.ctc-title h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0;
}

.ctc-count {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 2px 8px;
  border-radius: 999px;
}

.ctc-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ctc-img {
  background: var(--bg-2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 14px;
}

.ctc-img svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.ctc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.ctc-specs {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-2);
}

.ctc-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ctc-specs svg {
  color: var(--ink-4);
}

.ctc-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 12.5px;
  color: var(--ink-3);
}

.ctc-price .lbl {
  font-size: 11px;
}

.ctc-price .num {
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.gtab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: -0.02em;
  padding: 16px 8px;
  cursor: pointer;
  transition: all .15s ease;
  margin-bottom: -1px;
  white-space: nowrap;
}

.gtab:hover {
  color: var(--ink-2);
}

.gtab.on {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.guide-body {
  padding-bottom: 40px;
}

/* Sections */

.guide-sect {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.g-block:not(:last-child) {
  padding-bottom: 4px;
}

.g-block {
}

.g-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.g-sub {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

/* Lists */

.guide-v2 ul:not([class]) {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guide-v2 ul:not([class]) li {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

.guide-v2 ul:not([class]) li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--ink-3);
  border-radius: 50%;
}

.g-list {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.g-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.g-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--ink-3);
  border-radius: 50%;
}

/* Tables */

.guide-v2 figure.table {
  width: 100%;
  margin: 18px 0;
}

.guide-v2 table {
  border-collapse: collapse;
  width: 100%;
}

.g-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  table-layout: fixed;
}

.g-table th, .g-table td {
  padding: 18px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  letter-spacing: -0.01em;
}

.g-table thead th {
  background: var(--bg-2);
  font-weight: 800;
  color: var(--ink);
  font-size: 14.5px;
  letter-spacing: -0.02em;
}

.g-table tbody td {
  color: var(--ink-2);
  line-height: 1.55;
}

.g-table .num {
  font-family: var(--font-num);
  font-weight: 800;
  color: var(--ink);
}

.g-table.g-table-row .rh {
  background: var(--bg-2);
  font-weight: 800;
  color: var(--ink);
  width: 140px;
}

.g-foot {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.g-foot .num {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--ink-2);
}

/* Refund */

.refund-table {
  margin-top: 4px;
}

.refund-table td {
  font-size: 16px;
  font-weight: 800;
  padding: 32px 16px;
  letter-spacing: -0.02em;
}

.refund-good {
  color: var(--brand);
}

.refund-mid {
  color: var(--accent);
}

.refund-no {
  color: var(--ink-4);
}

.refund-table .num {
  color: inherit;
}

/* Step flow */

.g-steps {
  background: var(--bg-2);
  border-radius: 16px;
  padding: 22px 22px 18px;
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.g-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  min-width: 0;
  padding-top: 14px;
}

.g-step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-family: var(--font-num), sans-serif;
  z-index: 2;
  white-space: nowrap;
}

.g-step-img {
  width: 100%;
  aspect-ratio: 240 / 150;
  border-radius: 12px;
  overflow: hidden;
  background: var(--line);
}

.g-step-img svg {
  display: block;
  width: 100%;
  height: 100%;
}

.g-step-cap {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.g-step-line {
  display: block;
}

.g-step-cap strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.g-step-arrow {
  flex-shrink: 0;
  align-self: center;
  color: var(--ink-4);
  padding-top: 56px;
}

/* Callout */

.g-callout {
  background: var(--bg-2);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 14px;
}

.g-callout-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.g-callout-icon {
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-num);
}

.g-callout-head strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.g-list-callout li {
  font-size: 14px;
  color: var(--ink-2);
}

.g-list-callout li::before {
  background: var(--ink-4);
}

@media (max-width: 900px) {
  .guide-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .gtab {
    padding: 12px 6px;
    font-size: 13.5px;
  }

  .cars-tab-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dr-hero, .ac-hero {
    grid-template-columns: 1fr !important;
  }

  .dr-grid {
    grid-template-columns: 1fr !important;
  }

  .dr-prices {
    grid-template-columns: 1fr !important;
  }

  .dr-flow {
    grid-template-columns: 1fr 1fr !important;
  }

  .g-steps {
    flex-direction: column;
  }

  .g-step {
    flex: none;
    width: 100%;
  }

  .g-step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .g-table.g-table-row .rh {
    width: auto;
  }

  .refund-table td {
    padding: 18px 12px;
    font-size: 14.5px;
  }
}

/* ============================================================
   Driver-included / Accident replacement tabs
   ============================================================ */

.dr-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  background: linear-gradient(135deg, #1f2b27 0%, #2d3f37 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 4px;
}

.dr-hero-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #95d5b2;
  margin-bottom: 12px;
}

.dr-hero-text h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.3;
}

.dr-hero-text > p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin: 0 0 18px;
}

.dr-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dr-bullets li {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 18px;
}

.dr-bullets li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #95d5b2;
}

.dr-hero-card {
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.dr-hero-card svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.dr-hero-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,.66);
  letter-spacing: -0.01em;
}

.dr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.dr-card-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dr-card strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.dr-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.dr-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dr-price {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px;
  position: relative;
  text-align: left;
  transition: all .15s ease;
}

.dr-price.hot {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(58,125,92,.12);
}

.dr-price-badge {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.dr-price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  background: var(--bg-2);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.dr-price-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 4px 0 4px;
}

.dr-price-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.dr-price-amt {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.dr-price-amt .num {
  font-family: var(--font-num);
}

.dr-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dr-flow-step {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 22px 20px;
}

.dr-flow-no {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-family: var(--font-num);
  display: block;
  margin-bottom: 10px;
}

.dr-flow-step strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.dr-flow-step p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.ac-hero {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 24px;
  background: linear-gradient(135deg, #1a1d24 0%, #2a1e1e 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  align-items: center;
  margin-bottom: 4px;
}

.ac-hero-bar {
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #e8483b, #c8322a);
  border-radius: 999px;
}

.ac-hero-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ff9c91;
  margin-bottom: 12px;
}

.ac-hero-text h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ac-hero-text > p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 580px;
}

.ac-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--danger);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}

.ac-hero-cta:hover {
  background: #c8322a;
  transform: translateY(-1px);
}

/* ============================================================
   Mobile compact (≤ 600px)
   ============================================================ */

@media (max-width: 600px) {
  .guide-head-wrap {
    padding: 28px 0 16px;
  }

  .guide-head-wrap h1 {
    font-size: 24px;
    margin: 6px 0 4px;
  }

  .guide-head-wrap > p {
    font-size: 13.5px;
  }

  .ac-hero, .dr-hero {
    padding: 18px 18px 20px !important;
    border-radius: 14px;
    gap: 14px !important;
    grid-template-columns: 4px 1fr !important;
  }

  .ac-hero-bar {
    width: 4px;
  }

  .ac-hero-tag {
    font-size: 10.5px;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }

  .ac-hero-text h3 {
    font-size: 19px !important;
    margin-bottom: 10px !important;
  }

  .ac-hero-text h3 br {
    display: none;
  }

  .ac-hero-text > p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 0 14px !important;
  }

  .ac-hero-cta {
    padding: 11px 16px !important;
    font-size: 14px !important;
    gap: 8px !important;
    width: 100%;
    justify-content: center;
  }

  .ac-hero-cta svg {
    width: 14px !important;
    height: 14px !important;
  }
}

.cars-tab-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.cars-tab-card {
  padding: 12px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 6px;
  gap: 0;
}

.cars-tab-card .ctc-head {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  min-width: 0;
}

.cars-tab-card .ctc-title {
  gap: 6px;
  margin-bottom: 2px;
  flex-wrap: wrap;
}

.cars-tab-card .ctc-title h3 {
  font-size: 15.5px;
}

.cars-tab-card .ctc-count {
  font-size: 10.5px;
  padding: 1px 7px;
}

.cars-tab-card .ctc-meta {
  font-size: 11.5px;
}

.cars-tab-card .ctc-img {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 6px;
  border-radius: 8px;
  align-self: center;
  aspect-ratio: 1 / 1;
  width: 100px;
}

.cars-tab-card .ctc-img svg {
  max-width: 88px;
}

.cars-tab-card .ctc-foot {
  grid-column: 2;
  grid-row: 2;
  padding-top: 8px;
  gap: 8px;
  flex-wrap: wrap;
}

.cars-tab-card .ctc-specs {
  gap: 8px;
  font-size: 11.5px;
}

.cars-tab-card .ctc-specs svg {
  width: 12px;
  height: 12px;
}

.cars-tab-card .ctc-price {
  font-size: 11.5px;
  gap: 3px;
}

.cars-tab-card .ctc-price .lbl {
  font-size: 10px;
}

.cars-tab-card .ctc-price .num {
  font-size: 14px;
}

/* [parts] responsive — 전역 반응형(mobile.css). 데스크탑 규칙 뒤에 와야 override */

/* ============================================================
   SJ 렌트카 — Mobile / Tablet responsive layer
   Breakpoints: 1024 (tablet) · 768 (mobile) · 480 (sm mobile)
   ============================================================ */

/* ─── Mobile-only helpers ─── */

.mobile-only {
  display: none;
}

.desktop-only {
  display: initial;
}

/* Hamburger button (desktop hides it) */

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: transparent;
}

/* Mobile drawer */

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 25, .5);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -20px 0 60px rgba(8,30,60,.18);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-head .brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.mobile-drawer-head .brand-mini img {
  width: auto;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-2);
}

.mobile-drawer-nav {
  flex: 1;
  padding: 12px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-2);
  border-radius: 10px;
  letter-spacing: -0.02em;
}

.mobile-drawer-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.mobile-drawer-nav a.active {
  background: var(--brand-soft);
  color: var(--brand);
}

.mobile-drawer-nav a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .35;
}

.mobile-drawer-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-2);
}

.mobile-drawer-foot .call {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-num);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.mobile-drawer-foot .call svg {
  color: var(--brand);
}

.mobile-drawer-foot .hint {
  font-size: 12px;
  color: var(--ink-3);
}

/* ============================================================
   TABLET : ≤ 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  /* Header */

  .header .row {
    height: 68px;
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Utility bar — keep only essentials */

  .utility .row {
    height: 32px;
    font-size: 12px;
  }

  .utility .right a:not(:last-child),
  .utility .right .sep {
    display: none;
  }

  /* Hero */

  .hero {
    min-height: 580px;
  }

  .hero .container {
    padding-top: 56px;
  }

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

  .hero p.lead {
    font-size: 17px;
  }

  .hero-stats {
    gap: 24px;
  }

  /* Booking card */

  .book {
    margin-top: -140px;
    padding: 14px;
  }

  .book-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }

  .book-field {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .book-field:nth-child(2n) {
    border-right: 0;
  }

  .book-field:nth-last-of-type(-n+2) {
    border-bottom: 0;
  }

  .book-cta {
    grid-column: 1 / -1;
    padding: 10px 0 0;
    border-top: 0;
  }

  .book-cta button {
    width: 100%;
    padding: 14px;
    justify-content: center;
  }

  .book-footer .perks {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  /* Quick actions handled by quick-actions.css already */

  /* Section general */

  section {
    padding: 72px 0;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .section-head .sub {
    font-size: 15px;
  }

  /* Vehicles */

  .car-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why us / Steps / Reviews */

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

  .why-card {
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .why-card:nth-child(2n) {
    border-right: 0 !important;
  }

  .why-card:nth-last-child(-n+2):nth-child(even),
  .why-card:nth-last-child(-n+2):nth-child(even) + .why-card {
    border-bottom: 0 !important;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .step .arrow {
    display: none;
  }

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

  /* Banner */

  .banner {
    padding: 44px 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .banner h2 {
    font-size: 34px;
  }

  .banner .right {
    justify-content: flex-start;
  }

  /* Footer */

  footer .grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
  }

  footer .col:nth-child(4),
  footer .col:nth-child(5) {
    grid-column: span 1;
  }

  /* Page hero */

  .page-hero {
    padding: 44px 0 52px;
  }

  .page-hero .page-title {
    font-size: 44px;
  }

  .page-hero .page-sub {
    font-size: 16px;
  }

  /* Page sections */

  .page-section {
    padding: 60px 0;
  }

  .section-head h2 {
    font-size: 32px;
  }

  /* Insurance plans */

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .plan.popular {
    transform: none;
  }

  /* Guide flow */

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

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

  /* Docs */

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

  /* Pickup hero */

  .pickup-hero {
    grid-template-columns: 1fr;
    padding: 36px 32px;
    gap: 28px;
  }

  /* Results page */

  .results-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filters {
    position: static;
  }

  .search-summary {
    top: 68px;
  }

  .ss-fields {
    gap: 10px 14px;
  }

  .ss-sep {
    display: none;
  }
}

/* ============================================================
   MOBILE : ≤ 768px
   ============================================================ */

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: initial;
  }

  /* Utility bar — hide entirely on mobile (info in drawer) */

  .utility {
    display: none;
  }

  /* Header */

  .header .row {
    height: 60px;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
  }

  .header .brand {
    justify-self: start;
  }

  .header .nav {
    display: none;
  }

  .header .header-cta {
    justify-self: end;
  }

  .brand {
    font-size: 16px;
    letter-spacing: -0.03em;
  }

  .brand .mark {
    width: auto;
    height: 36px;
    max-width: 140px;
  }

  .brand .sub {
    font-size: 9.5px;
    margin-top: 1px;
  }

  .brand > div:last-child {
    line-height: 1.15;
  }

  /* Hero */

  .hero-wrap {
    background-position: center 20%;
    padding-bottom: 24px;
  }

  .hero {
    min-height: 460px;
  }

  .hero .container {
    padding-top: 40px;
  }

  .hero-eyebrow {
    font-size: 11.5px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
  }

  .hero p.lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-top: 12px;
    margin-top: 14px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 12px);
  }

  .hero-stat .v {
    font-size: 24px;
  }

  .hero-stat .v sup {
    font-size: 13px;
  }

  .hero-stat .l {
    font-size: 12px;
  }

  /* Booking card — ultra compact 2×2 grid on mobile */

  .hero-wrap {
    padding-bottom: 12px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 8px;
  }

  .hero-stats {
    margin-top: 14px;
    padding-top: 12px;
  }

  .book {
    margin-top: 12px;
    padding: 8px;
    border-radius: 12px;
  }

  .book-tabs {
    width: 100%;
    margin-bottom: 8px;
    padding: 3px;
  }

  .book-tab {
    flex: 1;
    justify-content: center;
    padding: 6px 6px;
    font-size: 12px;
    gap: 4px;
  }

  .book-tab svg {
    width: 12px;
    height: 12px;
  }

  .book-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    border-radius: 9px;
  }

  .book-field {
    padding: 6px 10px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  /* Row order: 픽업 장소 | 운전자  /  대여 일시 | 반납 일시 */

  .book-field:nth-child(1) {
    /* 픽업 장소 */
    grid-row: 1;
    grid-column: 1;
    border-right: 1px solid var(--line) !important;
  }

  .book-field:nth-child(2) {
    /* 대여 일시 */
    grid-row: 2;
    grid-column: 1;
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
  }

  .book-field:nth-child(3) {
    /* 반납 일시 */
    grid-row: 2;
    grid-column: 2;
    border-bottom: 0 !important;
  }

  .book-field:nth-child(4) {
    /* 운전자 */
    grid-row: 1;
    grid-column: 2;
  }

  .book-field .lbl {
    font-size: 10px;
    margin-bottom: 1px;
    gap: 3px;
  }

  .book-field .lbl svg {
    width: 10px;
    height: 10px;
  }

  .book-field .val {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .book-field .meta {
    font-size: 10px;
    margin-top: 0;
  }

  .book-cta {
    padding: 6px 0 0;
  }

  .book-cta button {
    padding: 9px;
    font-size: 13.5px;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    gap: 6px;
  }

  .book-cta button svg {
    width: 14px;
    height: 14px;
  }

  .book-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 6px;
    margin-top: 6px;
    font-size: 11px;
  }

  .book-footer .perks {
    gap: 4px 10px;
    font-size: 11px;
  }

  .book-footer .perks span {
    gap: 3px;
  }

  .book-footer .perks svg {
    width: 11px;
    height: 11px;
  }

  /* Quick actions strip */

  .quick {
    margin-top: 28px;
    gap: 12px;
  }

  .qa-loc {
    padding: 0;
    gap: 0;
    border-radius: 12px;
  }

  .qa-loc .qa-loc-block {
    padding: 14px 16px;
  }

  .qa-loc-divider {
    margin: 0;
  }

  .qa-lbl {
    font-size: 11px;
    margin-bottom: 6px;
    gap: 5px;
  }

  .qa-lbl svg {
    width: 11px;
    height: 11px;
  }

  .qa-big {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .qa-link {
    font-size: 12px;
  }

  .qa-link svg {
    width: 11px;
    height: 11px;
  }

  .qa-addr {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .qa-addr-sub {
    font-size: 11.5px;
  }

  .qa-chat {
    padding: 12px 16px;
  }

  .qa-chat-ico {
    width: 38px;
    height: 38px;
  }

  .qa-chat-t {
    font-size: 14.5px;
  }

  .qa-banner {
    padding: 12px 16px;
    min-height: 0;
    gap: 2px;
    border-radius: 12px;
  }

  .qa-banner-tag {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  .qa-banner-t {
    font-size: 15px;
    margin-top: 2px;
  }

  .qa-banner-s {
    font-size: 11.5px;
    margin-top: 2px;
  }

  .qa-banner-cta {
    font-size: 11.5px;
    margin-top: 6px;
  }

  .qa-banner-cta svg {
    width: 12px;
    height: 12px;
  }

  .qa-banner-deco {
    right: -16px;
    bottom: -16px;
    opacity: .18;
  }

  .qa-banner-deco svg {
    width: 78px;
    height: 78px;
  }

  /* Section general */

  section {
    padding: 56px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-head .right {
    width: 100%;
    flex-wrap: wrap;
  }

  .section-head h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .section-head h2 br {
    display: none;
  }

  .section-head .sub {
    font-size: 14px;
  }

  .section-head .eyebrow {
    font-size: 11.5px;
    margin-bottom: 6px;
  }

  /* Vehicles */

  .vehicles-bg .section-head .right .btn.outline {
    display: none;
  }

  .cat-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    scrollbar-width: none;
  }

  .cat-chips::-webkit-scrollbar {
    display: none;
  }

  .cat-chip {
    padding: 9px 16px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .car-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .car-body {
    padding: 14px 14px 16px;
  }

  .car-name {
    font-size: 15px;
  }

  .car-cat {
    font-size: 10.5px;
  }

  .car-specs {
    gap: 8px;
    margin: 8px 0 10px;
    font-size: 11.5px;
  }

  .car-price .num {
    font-size: 17px;
  }

  .car-price .unit {
    font-size: 11px;
  }

  .car-price .from {
    font-size: 10px;
  }

  .car-img .tag {
    font-size: 10px;
    padding: 4px 8px;
    top: 10px;
    left: 10px;
  }

  .car-img .heart {
    width: 28px;
    height: 28px;
    top: 10px;
    right: 10px;
  }

  /* Why us */

  .why-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .why-card {
    padding: 26px 22px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .why-card:last-child {
    border-bottom: 0 !important;
  }

  .why-card h4 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 13.5px;
  }

  .why-card .ico {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  /* Steps */

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step {
    padding: 22px 22px;
  }

  .step h4 {
    font-size: 19px;
  }

  .step p {
    font-size: 13.5px;
  }

  /* Reviews */

  .review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review {
    padding: 22px 22px;
  }

  .review .body {
    font-size: 14.5px;
    margin-bottom: 16px;
  }

  .review .quote-mark {
    font-size: 44px;
    top: 16px;
    right: 18px;
  }

  /* Banner */

  .banner {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .banner::before {
    right: -160px;
    top: -140px;
    width: 320px;
    height: 320px;
  }

  .banner .eyebrow {
    font-size: 11.5px;
  }

  .banner h2 {
    font-size: 24px;
  }

  .banner h2 br {
    display: none;
  }

  .banner p {
    font-size: 14px;
  }

  .banner .right {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .banner .right .btn {
    justify-content: center;
  }

  /* Footer */

  footer {
    padding: 28px 0 22px;
    font-size: 13px;
  }

  footer .container {
    padding: 0 20px;
  }

  footer .grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 16px !important;
    display: grid !important;
    align-items: start !important;
  }

  /* Top row: logo left, customer center right */

  footer .grid > div:first-child {
    order: 1;
    padding-top: 0;
    border-top: 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px;
  }

  footer .grid > div:first-child > .brand {
    margin-bottom: 0;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0;
    flex: 0 0 auto;
    min-width: 0;
  }

  footer .grid > div:first-child > .brand > .mark {
    width: auto !important;
    max-width: 136px !important;
    height: 46px !important;
    margin-bottom: 0 !important;
    margin-top: -4px !important;
    margin-left: -4px !important;
    flex-shrink: 0;
  }

  footer .grid > div:first-child > .socials {
    margin-top: 0 !important;
    flex-shrink: 0;
    gap: 6px;
    align-self: flex-start;
  }

  footer .socials a {
    width: 32px !important;
    height: 32px !important;
  }

  /* Customer center at top right */

  footer .footer-contact {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    width: 100% !important;
    gap: 4px;
  }

  footer .footer-contact,
  footer .footer-contact h5,
  footer .footer-contact a {
    text-align: right !important;
  }

  footer .col h5 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  footer .col a {
    font-size: 12.5px;
    padding: 2px 0;
  }

  footer .footer-phone {
    font-size: 22px !important;
    padding: 2px 0 !important;
  }

  footer .footer-hours {
    font-size: 12px !important;
    line-height: 1.4;
    opacity: .7;
  }

  .hero-wrap {
    padding-bottom: 4px;
  }

  .quick {
    margin-top: 18px;
    gap: 12px;
  }

  footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  footer .grid > div:first-child {
    grid-column: auto;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
  }

  footer .grid > div:first-child > .brand {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-bottom: 0 !important;
    flex: 0 1 auto !important;
  }

  footer .grid > div:first-child > .socials {
    margin-top: 0 !important;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important;
  }

  footer .col h5 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  footer .col a {
    font-size: 12.5px;
    padding: 3px 0;
  }

  footer .footer-phone {
    font-size: 19px !important;
    padding: 4px 0 !important;
  }

  footer .footer-hours {
    font-size: 11.5px !important;
    line-height: 1.4;
  }

  footer .legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  footer .legal .row1 {
    gap: 6px 12px;
    font-size: 11.5px;
  }

  footer .legal .row1 span:not(:last-child)::after {
    margin-left: 12px;
  }

  /* Floating CTA */

  .floating-cta {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-cta button {
    width: 48px;
    height: 48px;
  }

  .floating-cta button svg {
    width: 20px;
    height: 20px;
  }

  /* Page hero */

  .page-hero {
    padding: 32px 0 40px;
  }

  .page-hero .crumb {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .page-hero .page-eyebrow {
    font-size: 11.5px;
  }

  .page-hero .page-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .page-hero .page-sub {
    font-size: 14.5px;
  }

  /* Page sections */

  .page-section {
    padding: 44px 0;
  }

  /* Guide */

  .guide-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gflow-step {
    padding: 22px 22px 24px;
  }

  .gflow-n {
    font-size: 38px;
    top: 14px;
    right: 18px;
  }

  /* Pickup hero */

  .pickup-hero {
    padding: 28px 22px;
    gap: 22px;
    border-radius: 18px;
  }

  .pickup-text .big-no {
    font-size: 56px;
  }

  .pickup-text h3 {
    font-size: 22px;
  }

  .pickup-text p {
    font-size: 14px;
  }

  .pickup-map {
    height: 180px;
    padding: 22px;
  }

  /* Search results — summary */

  .search-summary {
    top: 60px;
  }

  .ss-row {
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .ss-back {
    width: 34px;
    height: 34px;
  }

  .ss-fields {
    gap: 8px 14px;
    flex: 1;
    min-width: 0;
  }

  .ss-lbl {
    font-size: 10px;
  }

  .ss-val {
    font-size: 13.5px;
  }

  .ss-arrow {
    display: none;
  }

  .ss-edit {
    width: 100%;
    padding: 11px !important;
    justify-content: center;
    font-size: 13px !important;
  }

  /* Results main */

  .results-head {
    padding: 0;
  }

  .rh-left strong {
    font-size: 16px;
  }

  .filters {
    padding: 18px;
  }

  /* Cars toolbar */

  .cars-toolbar {
    gap: 12px;
  }

  .cars-sort {
    font-size: 13px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cars-sort .sep {
    display: none;
  }

  /* Notices */

  .notice-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .notice-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .notice-tabs::-webkit-scrollbar {
    display: none;
  }

  .ntab {
    flex-shrink: 0;
  }

  .notice-actions {
    width: 100%;
    justify-content: stretch;
  }

  .notice-search {
    width: 100%;
  }

  .edit-mode-field.notice-write-btn {
    min-width: 78px;
    padding: 0 16px;
  }

  .nrow {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 18px;
  }

  .nrow.head {
    display: none;
  }

  .nrow .ndate {
    font-size: 12px;
    color: var(--ink-4);
  }

  .nrow .ntitle a {
    white-space: normal;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .nrow .badge {
    justify-self: start;
    margin-bottom: 4px;
  }

  .notice-detail {
    gap: 16px;
  }

  .notice-detail-card {
    border-radius: 18px;
  }

  .notice-detail-hero {
    padding: 24px 20px 20px;
  }

  .notice-detail-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .notice-detail-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .notice-weight-wrap {
    width: 100%;
  }

  .notice-weight-copy {
    min-width: 0;
  }

  .notice-weight-input {
    width: 92px;
    min-width: 92px;
    text-align: right;
  }

  .notice-detail-title {
    font-size: 24px;
    line-height: 1.35;
  }

  .notice-detail-summary {
    font-size: 14px;
    margin-top: 10px;
  }

  .notice-detail-meta {
    gap: 10px 14px;
    margin-top: 18px;
    font-size: 12.5px;
  }

  .notice-detail-body {
    padding: 24px 20px 28px;
  }

  .notice-detail-article {
    font-size: 14px;
    line-height: 1.8;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vehicle-card-head {
    gap: 10px;
  }

  .vehicle-thumb-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .vehicle-thumb-head {
    flex-direction: column;
    align-items: stretch;
  }

  .vehicle-thumb-actions {
    justify-content: flex-start;
  }

  .notice-detail-article .ck.ck-editor__main > .ck-editor__editable,
  .vehicle-thumb-section + .notice-detail-article .ck.ck-editor__main > .ck-editor__editable {
    min-height: 320px;
    height: 320px;
  }

  /* Fee table */

  .fee-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 18px;
  }

  .fee-row.head {
    display: none;
  }

  .fee-row > div:first-child {
    font-size: 14px;
  }

  .fee-row .meta {
    font-size: 12.5px;
  }

  /* Coverage table */

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

  .cov-cell {
    padding: 12px 10px;
    font-size: 12.5px;
  }

  .cov-cell.label {
    font-size: 13px;
  }

  /* Guide tabs */

  .guide-tabs {
    width: 100%;
  }

  .guide-tab {
    flex: 1;
    justify-content: center;
    padding: 10px 6px;
    font-size: 13px;
  }

  /* FAQ */

  .faq-q {
    padding: 16px 18px;
  }

  .faq-q .t {
    font-size: 14.5px;
  }

  .faq-a {
    padding: 0 18px 18px 60px;
  }

  .faq-a .amark {
    left: 18px;
  }

  /* Plan card */

  .plan {
    padding: 28px 22px 24px;
  }

  .plan-name {
    font-size: 22px;
  }

  .plan-price .num {
    font-size: 30px;
  }

  /* Pager */

  .pager {
    margin-top: 32px;
    gap: 4px;
  }

  .pg {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* ============================================================
   SMALL MOBILE : ≤ 480px
   ============================================================ */

@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  /* Brand */

  .brand .sub {
    display: none;
  }

  /* Hero */

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

  .hero p.lead {
    font-size: 14px;
  }

  .hero-stats {
    gap: 14px 18px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 9px);
  }

  .hero-stat .v {
    font-size: 21px;
  }

  /* Section headings */

  .section-head h2 {
    font-size: 23px;
  }

  /* Page hero */

  .page-hero .page-title {
    font-size: 25px;
  }

  /* Vehicles — keep 2 cols but tighter */

  .car-grid {
    gap: 10px;
  }

  .car-body {
    padding: 12px 12px 14px;
  }

  /* Banner */

  .banner h2 {
    font-size: 21px;
  }

  /* Floating */

  .floating-cta button {
    width: 44px;
    height: 44px;
  }
}

/* trigger rebuild */
