/* ================= Reservation Page ================= */
.rsv-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rsv-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow: var(--shadow);
}

.rsv-card-title{
  font-weight:900;
  margin-bottom:12px;
  font-size:15px;
}

.rsv-row{
  display:grid;
  grid-template-columns: 110px 1fr;
  align-items:center;
  gap:10px;
  margin:10px 0;
}

.rsv-label{
  font-size:13px;
  font-weight:800;
  color:#374151;
}

.rsv-control{
  width:100%;
  height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  padding:0 12px;
  outline:none;
  font-size:14px;
  background:#fff;
}

.rsv-control:focus{
  border-color:#111827;
  box-shadow: 0 0 0 3px rgba(17,24,39,.08);
}

.rsv-control[disabled]{
  background:#f3f4f6;
  color:#6b7280;
  cursor:not-allowed;
}

.rsv-help{
  display:flex;
  gap:8px;
  align-items:flex-start;
  color:#6b7280;
  font-size:13px;
  margin-top:10px;
}

.rsv-help .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#f59e0b;
  margin-top:5px;
  flex:0 0 auto;
}

.rsv-quote{
  margin-top:12px;
  border:1px dashed var(--line);
  border-radius:14px;
  padding:14px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  background:#fafafa;
}

.rsv-quote-title{
  font-weight:900;
  margin-bottom:2px;
}

.rsv-quote-sub{
  font-size:13px;
  color:#6b7280;
}

.rsv-quote-price{
  font-size:20px;
  font-weight:900;
  text-align:right;
}

.rsv-quote-nights{
  font-size:12px;
  color:#6b7280;
  text-align:right;
}

.rsv-actions{
  display:flex;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}

.rsv-msg{
  margin-top:12px;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
  line-height:1.6;
}

.rsv-msg.is-ok{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.08);
}

.rsv-msg.is-err{
  border-color: rgba(225,29,72,.35);
  background: rgba(225,29,72,.08);
}

@media (max-width: 960px){
  .rsv-grid{ grid-template-columns:1fr; }
  .rsv-row{ grid-template-columns: 1fr; }
  .rsv-label{ margin-bottom: 4px; }
}

.reserve-bullets .highlight {
  background: #ffffff;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 12px 12px 12px 22px;
}

.reserve-bullets li.highlight::before{
  content: none;
}

/* ===============================
   예약 요약 카드
================================ */

.rsv-summary-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;

  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e8e2d8;
  margin-bottom: 22px;
}

.rsv-summary-card__thumb {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-radius: 10px;
  align-self: start;
}

.rsv-summary-card__thumb img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.rsv-summary-card__body {
  min-width: 0;
}

.rsv-summary-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.rsv-summary-card__actions {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.rsv-summary-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #8a8f94;
  letter-spacing: 0.06em;
}

.rsv-summary-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0;
}

.rsv-summary-card__desc {
  font-size: 14px;
  color: #6b7280;
}

.rsv-summary-card__back {
  white-space: nowrap;
}

.rsv-summary-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.rsv-summary-meta__item {
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.rsv-summary-meta__item .label {
  display: block;
  font-size: 12px;
  color: #8a8f94;
  margin-bottom: 4px;
}

.is-price {
  color: #1e3a8a;
  font-weight: 700;
}

/* 예약불가 option - 브라우저별 제한 있음 */
option.site-unavailable {
  color: #d62828;
  font-weight: 700;
}

@media (max-width: 768px) {
  .rsv-summary-card {
    grid-template-columns: 1fr;
  }

  .rsv-summary-card__thumb {
    max-height: 260px;
  }

  .rsv-summary-card__thumb img {
    min-height: 200px;
    max-height: 260px;
  }

  .rsv-summary-card__top {
    flex-direction: column;
  }

  .rsv-summary-card__actions {
    justify-content: flex-start;
  }

  .rsv-summary-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===============================
   예약 요약 카드
================================ */

.rsv-summary-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;

  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e8e2d8;
  margin-bottom: 22px;
}

.rsv-summary-card__thumb {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-radius: 10px;
  align-self: start;
}

.rsv-summary-card__thumb img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.rsv-summary-card__body {
  min-width: 0;
}

.rsv-summary-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.rsv-summary-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rsv-summary-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #8a8f94;
  letter-spacing: 0.06em;
}

.rsv-summary-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0;
}

.rsv-summary-card__desc {
  font-size: 14px;
  color: #6b7280;
}

.rsv-summary-card__back {
  white-space: nowrap;
}

.rsv-summary-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.rsv-summary-meta__item {
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.rsv-summary-meta__item .label {
  display: block;
  font-size: 12px;
  color: #8a8f94;
  margin-bottom: 4px;
}

.is-price {
  color: #1e3a8a;
  font-weight: 700;
}

/* ✅ 선택 정보 수정 패널을 카드 전체폭으로 */
.rsv-edit-panel {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 18px;
}

/* 예약불가 option - 브라우저별 제한 있음 */
option.site-unavailable {
  color: #d62828;
  font-weight: 700;
}

@media (max-width: 768px) {
  .rsv-summary-card {
    grid-template-columns: 1fr;
  }

  .rsv-summary-card__thumb {
    max-height: 260px;
  }

  .rsv-summary-card__thumb img {
    min-height: 200px;
    max-height: 260px;
  }

  .rsv-summary-card__top {
    flex-direction: column;
  }

  .rsv-summary-card__actions {
    justify-content: flex-start;
  }

  .rsv-summary-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .rsv-edit-panel {
    grid-column: auto;
  }
}
/* ===============================
   안내도 다시 보기 모달
================================ */

.guide-map-modal[hidden] {
  display: none;
}

.guide-map-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.guide-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.guide-map-modal__dialog {
  position: relative;
  width: min(1200px, calc(100vw - 32px));
  height: min(860px, calc(100vh - 32px));
  margin: 16px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.guide-map-modal__header {
  height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.guide-map-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}

.guide-map-modal__close {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.guide-map-modal__body {
  flex: 1;
  min-height: 0;
  background: #f8fafc;
}

.guide-map-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

body.guide-map-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .guide-map-modal__dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 14px;
  }

  .guide-map-modal__header {
    height: 56px;
    padding: 0 14px;
  }

  .guide-map-modal__title {
    font-size: 16px;
  }
}
/* =========================================
   안내도 다시 선택 모달
========================================= */

.site-map-modal[hidden] {
  display: none !important;
}

.site-map-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.site-map-modal.is-open {
  display: block;
}

.site-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.site-map-modal__dialog {
  position: relative;
  width: min(1380px, calc(100vw - 32px));
  height: min(920px, calc(100vh - 32px));
  margin: 16px auto;
  background: #f7f4ee;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.site-map-modal__dialog--booking {
  background: #f6f3ec;
}

.site-map-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #18352a;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.site-map-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid #e6dfd2;
}

.site-map-modal__head--booking {
  padding-right: 96px;
}

.site-map-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #718076;
  text-transform: uppercase;
}

.site-map-modal__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #173829;
}

.site-map-legend {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.site-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #526155;
}

.site-map-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
}

.site-map-legend__dot--available {
  background: #36b56d;
}

.site-map-legend__dot--pending {
  background: #e2b23f;
}

.site-map-legend__dot--confirmed {
  background: #d96464;
}

.site-map-modal__layout {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.site-map-main {
  min-width: 0;
  min-height: 0;
  padding: 18px 18px 18px 24px;
}

.site-map-main__map {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #f7f3ea;
  border: 1px solid #e7e0d3;
  border-radius: 20px;
  padding: 10px;
  overflow: auto;
}

.site-map-stage {
  width: 100%;
  min-width: 960px;
  min-height: 100%;
  position: relative;
  background: #f8f5ee;
  border-radius: 16px;
  overflow: hidden;
}

/* fragment 내부 svg/object/img 대응 */
.site-map-stage svg,
.site-map-stage object,
.site-map-stage img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-map-side {
  border-left: 1px solid #e6dfd2;
  background: #f9f7f1;
  padding: 26px 24px;
  overflow-y: auto;
}

.site-map-side--booking {
  padding-top: 30px;
}

.booking-summary-card h4 {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  color: #173829;
}

.site-preview-card {
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
}

.site-preview-card__image-wrap {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  background: #ece8df;
}

.site-preview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ece8df;
}

.site-preview-card__body {
  padding: 18px 18px 16px;
}

.site-preview-card__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  color: #2d4337;
  margin-bottom: 8px;
}

.site-preview-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #78857c;
}

.booking-summary-list {
  margin: 0;
}

.booking-summary-list div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed #d8d2c7;
}

.booking-summary-list dt {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #66766b;
}

.booking-summary-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #345141;
  text-align: right;
}

.booking-summary-list dd.is-total,
.booking-summary-list .is-total {
  color: #1f5138;
  font-size: 18px;
}

.site-map-side__help {
  margin: 24px 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #7b887f;
}

.site-map-book-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: #264f38;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.site-map-book-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #214730;
}

.site-map-book-btn:disabled {
  background: #b7c0b8;
  cursor: not-allowed;
  opacity: 1;
}

body.guide-map-modal-open {
  overflow: hidden;
}

/* =========================================
   안내도 SVG 마커 상태
========================================= */

/* g 태그 자체에 상태 클래스가 붙는 구조 대응 */
.site-map-stage g {
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, filter 0.15s ease;
  transform-origin: center;
}

.site-map-stage g:hover:not(.is-disabled) {
  filter: brightness(1.03);
}

.site-map-stage g.is-selected {
  filter: drop-shadow(0 0 0.4rem rgba(23, 56, 41, 0.28));
}

/* 비활성 상태 */
.site-map-stage g.is-disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

/* 상태 컬러가 circle/ellipse/path/text 조합일 수 있으므로 폭넓게 대응 */
.site-map-stage g.is-available circle,
.site-map-stage g.is-available ellipse,
.site-map-stage g.is-available path.marker-fill,
.site-map-stage g.is-available .marker-fill {
  fill: #36b56d !important;
}

.site-map-stage g.is-pending circle,
.site-map-stage g.is-pending ellipse,
.site-map-stage g.is-pending path.marker-fill,
.site-map-stage g.is-pending .marker-fill {
  fill: #e2b23f !important;
}

.site-map-stage g.is-confirmed circle,
.site-map-stage g.is-confirmed ellipse,
.site-map-stage g.is-confirmed path.marker-fill,
.site-map-stage g.is-confirmed .marker-fill {
  fill: #d96464 !important;
}

/* 선택 강조 */
.site-map-stage g.is-selected circle,
.site-map-stage g.is-selected ellipse,
.site-map-stage g.is-selected path.marker-fill,
.site-map-stage g.is-selected .marker-fill {
  stroke: #173829 !important;
  stroke-width: 3 !important;
}

/* 숫자 텍스트 가독성 */
.site-map-stage g text {
  pointer-events: none;
  user-select: none;
}

/* =========================================
   반응형
========================================= */

@media (max-width: 1200px) {
  .site-map-modal__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 960px) {
  .site-map-modal__dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 20px;
  }

  .site-map-modal__head {
    padding: 22px 20px 16px;
  }

  .site-map-modal__head--booking {
    padding-right: 74px;
  }

  .site-map-modal__title {
    font-size: 22px;
  }

  .site-map-modal__layout {
    grid-template-columns: 1fr;
  }

  .site-map-main {
    padding: 14px 14px 10px;
  }

  .site-map-main__map {
    min-height: 360px;
  }

  .site-map-stage {
    min-width: 820px;
  }

  .site-map-side {
    border-left: 0;
    border-top: 1px solid #e6dfd2;
    padding: 20px 18px 22px;
  }
}

@media (max-width: 640px) {
  .site-map-modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .site-map-modal__head {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-map-modal__head--booking {
    padding-right: 20px;
  }

  .site-map-legend {
    gap: 14px;
  }

  .site-map-main__map {
    padding: 8px;
  }

  .site-map-stage {
    min-width: 720px;
  }

  .booking-summary-card h4 {
    font-size: 20px;
  }

  .site-preview-card__body {
    padding: 15px 15px 14px;
  }

  .site-map-book-btn {
    height: 50px;
    border-radius: 14px;
  }
}
/* =========================================
   안내도 다시 선택 모달 - online_reg와 높이감 통일
========================================= */

.site-map-modal[hidden] {
  display: none !important;
}

.site-map-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.site-map-modal.is-open {
  display: block;
}

.site-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.site-map-modal__dialog {
  position: relative;
  width: min(1420px, calc(100vw - 24px));
  height: min(960px, calc(100vh - 20px));
  margin: 10px auto;
  background: #f7f4ee;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.site-map-modal__dialog--booking {
  background: #f6f3ec;
}

.site-map-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #18352a;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.site-map-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid #e6dfd2;
}

.site-map-modal__head--booking {
  padding-right: 96px;
}

.site-map-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #718076;
  text-transform: uppercase;
}

.site-map-modal__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #173829;
}

.site-map-legend {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.site-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #526155;
}

.site-map-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
}

.site-map-legend__dot--available {
  background: #2fb765;
}

.site-map-legend__dot--pending {
  background: #d9a62c;
}

.site-map-legend__dot--confirmed {
  background: #c94747;
}

.site-map-modal__layout {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.site-map-main {
  min-width: 0;
  min-height: 0;
  padding: 14px 14px 14px 18px;
}

.site-map-main__map {
  width: 100%;
  height: 100%;
  min-height: 760px;
  background: #f7f3ea;
  border: 1px solid #e7e0d3;
  border-radius: 20px;
  padding: 10px;
  overflow: auto;
}

.site-map-stage {
  width: 100%;
  min-width: 960px;
  min-height: 100%;
  position: relative;
  background: #f8f5ee;
  border-radius: 16px;
  overflow: hidden;
}

.site-map-stage svg,
.site-map-stage object,
.site-map-stage img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-map-side {
  border-left: 1px solid #e6dfd2;
  background: #f9f7f1;
  padding: 26px 24px;
  overflow-y: auto;
}

.site-map-side--booking {
  padding-top: 30px;
}

.booking-summary-card h4 {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  color: #173829;
}

.site-preview-card {
  background: #fff;
  border: 1px solid #e7e0d3;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
}

.site-preview-card__image-wrap {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  background: #ece8df;
}

.site-preview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ece8df;
}

.site-preview-card__body {
  padding: 18px 18px 16px;
}

.site-preview-card__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  color: #2d4337;
  margin-bottom: 8px;
}

.site-preview-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #78857c;
}

.booking-summary-list {
  margin: 0;
}

.booking-summary-list div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed #d8d2c7;
}

.booking-summary-list dt {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #66766b;
}

.booking-summary-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: #345141;
  text-align: right;
}

.booking-summary-list dd.is-total,
.booking-summary-list .is-total {
  color: #1f5138;
  font-size: 18px;
}

.site-map-side__help {
  margin: 24px 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #7b887f;
}

.site-map-book-btn {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: #264f38;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.site-map-book-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #214730;
}

.site-map-book-btn:disabled {
  background: #b7c0b8;
  cursor: not-allowed;
  opacity: 1;
}

body.guide-map-modal-open {
  overflow: hidden;
}

/* 상태 표시 */
.site-map-stage g {
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, filter 0.15s ease;
  transform-origin: center;
}

.site-map-stage g:hover:not(.is-disabled) {
  filter: brightness(1.03);
}

.site-map-stage g.is-selected {
  filter: drop-shadow(0 0 0.45rem rgba(23, 56, 41, 0.32));
}

/* reservation 쪽도 disabled를 너무 흐리지 않게 */
.site-map-stage g.is-disabled {
  opacity: 0.95;
  cursor: not-allowed;
}

.site-map-stage g.is-available circle,
.site-map-stage g.is-available ellipse,
.site-map-stage g.is-available path.marker-fill,
.site-map-stage g.is-available .marker-fill {
  fill: #2fb765 !important;
}

.site-map-stage g.is-pending circle,
.site-map-stage g.is-pending ellipse,
.site-map-stage g.is-pending path.marker-fill,
.site-map-stage g.is-pending .marker-fill {
  fill: #d9a62c !important;
}

.site-map-stage g.is-confirmed circle,
.site-map-stage g.is-confirmed ellipse,
.site-map-stage g.is-confirmed path.marker-fill,
.site-map-stage g.is-confirmed .marker-fill {
  fill: #c94747 !important;
}

/* 현재 reservation은 disabled 사이트를 사실상 완료처럼 보여주는 용도 */
.site-map-stage g.is-confirmed.is-disabled,
.site-map-stage g.is-pending.is-disabled {
  opacity: 1 !important;
}

.site-map-stage g.is-selected circle,
.site-map-stage g.is-selected ellipse,
.site-map-stage g.is-selected path.marker-fill,
.site-map-stage g.is-selected .marker-fill {
  stroke: #173829 !important;
  stroke-width: 3 !important;
}

.site-map-stage g text {
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1200px) {
  .site-map-modal__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 960px) {
  .site-map-modal__dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 20px;
  }

  .site-map-modal__head {
    padding: 22px 20px 16px;
  }

  .site-map-modal__head--booking {
    padding-right: 74px;
  }

  .site-map-modal__title {
    font-size: 22px;
  }

  .site-map-modal__layout {
    grid-template-columns: 1fr;
  }

  .site-map-main {
    padding: 14px 14px 10px;
  }

  .site-map-main__map {
    min-height: 420px;
  }

  .site-map-stage {
    min-width: 820px;
  }

  .site-map-side {
    border-left: 0;
    border-top: 1px solid #e6dfd2;
    padding: 20px 18px 22px;
  }
}

@media (max-width: 640px) {
  .site-map-modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .site-map-modal__head {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-map-modal__head--booking {
    padding-right: 20px;
  }

  .site-map-legend {
    gap: 14px;
  }

  .site-map-main__map {
    padding: 8px;
  }

  .site-map-stage {
    min-width: 720px;
  }

  .booking-summary-card h4 {
    font-size: 20px;
  }

  .site-preview-card__body {
    padding: 15px 15px 14px;
  }

  .site-map-book-btn {
    height: 50px;
    border-radius: 14px;
  }
}
/* ===============================
   예약 상태 텍스트 색상
=============================== */

.rsv-quote-sub {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

.rsv-quote-sub.is-pending {
  color: #b7791f;
}

.rsv-quote-sub.is-confirmed {
  color: #1f6b45;
}

.rsv-quote-sub.is-canceled,
.rsv-quote-sub.is-expired {
  color: #c84545;
}

/* =========================================
   예약페이지 모바일 - 선택정보 버튼 1열
   ========================================= */
@media (max-width: 768px) {
  .rsv-summary-card__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 14px !important;
  }

  .rsv-summary-card__actions .btn,
  .rsv-summary-card__actions button {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
  }
}

@media (max-width: 375px) {
  .rsv-summary-card__actions {
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .rsv-summary-card__actions .btn,
  .rsv-summary-card__actions button {
    min-height: 44px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 325px) {
  .rsv-summary-card__actions .btn,
  .rsv-summary-card__actions button {
    min-height: 42px !important;
    font-size: 13px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* =========================================
   MOBILE SITE MAP - FIT LIKE map.html
   맨 아래 추가
   ========================================= */
@media (max-width: 768px) {

  /* 모달 자체는 세로 스크롤 가능하게 */
  .site-map-modal__dialog {
    width: calc(100vw - 12px) !important;
    height: calc(100dvh - 12px) !important;
    margin: 6px auto !important;
    border-radius: 20px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .site-map-modal__layout {
    display: block !important;
    min-height: 0 !important;
  }

  .site-map-main {
    padding: 12px 12px 10px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #e8e2d8 !important;
    min-height: 0 !important;
  }

  /* 핵심: 지도 박스를 고정 높이 스크롤 영역으로 두지 말고
     map.html처럼 내용 높이만큼 자연스럽게 */
  .site-map-main__map {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 8px !important;
    border-radius: 16px !important;
    background: #f7f3ea !important;
  }

  /* 핵심: min-width 강제 제거 */
  .site-map-stage {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 14px !important;
    background: #f8f5ee !important;
    padding: 0 !important;
  }

  /* 지도 fragment 전체를 map.html처럼 반응형으로 */
  .reservation-map {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .reservation-map__svg {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* 오른쪽 요약 영역은 아래로 자연스럽게 */
  .site-map-side {
    padding: 14px 14px 16px !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .booking-summary-card {
    gap: 12px !important;
  }

  /* 선택 전 카드도 너무 커지지 않게 */
  .site-preview-card.is-empty .site-preview-card__image-wrap {
    display: none !important;
  }

  .site-preview-card.is-empty .site-preview-card__image {
    display: none !important;
  }

  .site-preview-card.is-empty .site-preview-card__body {
    padding: 14px 16px 16px !important;
  }
}

@media (max-width: 480px) {
  .site-map-modal__dialog {
    width: calc(100vw - 8px) !important;
    height: calc(100dvh - 8px) !important;
    margin: 4px auto !important;
    border-radius: 18px !important;
  }

  .site-map-main {
    padding: 10px 10px 8px !important;
  }

  .site-map-main__map {
    padding: 6px !important;
  }
}
@media (max-width: 768px) {

  .site-map-main {
    padding: 10px 10px 6px !important;
  }

  .site-map-main__map {
    padding: 6px !important;
  }

}
/* =========================================
   예약페이지 안내문구 모바일 가독성 개선
   reserve-notice / reserve-bullets
   ========================================= */
@media (max-width: 768px) {
  .reserve-notice {
    margin-top: 4px !important;
  }

  .reserve-bullets {
    margin: 0 !important;
    padding-left: 18px !important;
  }

  .reserve-bullets li {
    margin-bottom: 10px !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .reserve-bullets li strong {
    display: inline !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.7 !important;
  }

  .reserve-bullets li .muted,
  .reserve-bullets li span {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #667085 !important;
  }

  .reserve-bullets li.highlight {
    padding: 12px 14px !important;
    border-radius: 14px !important;
    margin-top: 4px !important;
    margin-bottom: 10px !important;
  }

  .reserve-bullets li.highlight strong,
  .reserve-bullets li.highlight span {
    display: block !important;
  }

  .reserve-bullets li.highlight strong {
    margin-bottom: 4px !important;
  }
}

@media (max-width: 375px) {
  .reserve-bullets {
    padding-left: 16px !important;
  }

  .reserve-bullets li {
    margin-bottom: 9px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .reserve-bullets li strong {
    font-size: 14px !important;
  }

  .reserve-bullets li .muted,
  .reserve-bullets li span {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .reserve-bullets li.highlight {
    padding: 10px 12px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 325px) {
  .reserve-bullets {
    padding-left: 14px !important;
  }

  .reserve-bullets li {
    margin-bottom: 8px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .reserve-bullets li strong {
    font-size: 13px !important;
  }

  .reserve-bullets li .muted,
  .reserve-bullets li span {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .reserve-bullets li.highlight {
    padding: 9px 10px !important;
    border-radius: 10px !important;
  }
}
/* =========================================
   RESERVATION PAGE UNIFY OVERRIDE
   맨 아래 덮어쓰기용
   ========================================= */

/* 페이지 전체 상단 여백/톤 */
main.container{
  padding-top: 0;
}

/* 본문 헤더 통일 */
.unified-head{
  text-align: center;
  padding: 18px 0 30px;
}

.unified-head__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #a98654;
}

.unified-head__title{
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1f2937;
}

.unified-head__desc{
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #667085;
  font-weight: 700;
}

/* 메인 패널 */
.reservation-page-panel,
.panel{
  border-radius: 22px;
}

/* 예약 정보 입력 상단 패널 여백 */
.panel > .panel-title{
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  color: #1f3d2b;
  margin-bottom: 8px;
}

.panel > .panel-sub{
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 18px;
}

/* 요약 카드 업그레이드 */
.rsv-summary-card{
  background: #fffdf8 !important;
  border: 1px solid rgba(31, 61, 43, 0.10) !important;
  border-radius: 24px !important;
  box-shadow: 0 16px 36px rgba(23, 34, 23, 0.10) !important;
  padding: 22px !important;
  gap: 24px !important;
}

.rsv-summary-card__thumb{
  border-radius: 18px !important;
  overflow: hidden;
}

.rsv-summary-card__thumb img{
  border-radius: 18px !important;
}

.rsv-summary-card__eyebrow{
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  color: #7a8a7d !important;
}

.rsv-summary-card__title{
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  color: #1f3d2b !important;
  margin: 8px 0 10px !important;
}

.rsv-summary-card__desc{
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #667085 !important;
  margin: 0 !important;
}

.rsv-summary-card__actions{
  gap: 10px !important;
}

.rsv-summary-meta{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 18px !important;
}

.rsv-summary-meta__item{
  background: #f8f4ea !important;
  border: 1px solid rgba(31, 61, 43, 0.08) !important;
  border-radius: 16px !important;
  padding: 14px 14px !important;
  font-size: 14px !important;
}

.rsv-summary-meta__item .label{
  display: block;
  margin-bottom: 6px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #68776b !important;
}

.rsv-summary-meta__item strong{
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #1f3d2b !important;
}

.rsv-summary-meta__item .is-price,
.is-price{
  color: #1f6b45 !important;
  font-weight: 900 !important;
}

/* 수정 패널 */
.rsv-edit-panel{
  grid-column: 1 / -1;
  margin-top: 2px !important;
  background: #fcfaf4 !important;
  border: 1px solid rgba(31, 61, 43, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  padding: 20px !important;
}

/* 공통 카드 톤 */
.rsv-card{
  background: #fffdf8 !important;
  border: 1px solid rgba(31, 61, 43, 0.10) !important;
  border-radius: 22px !important;
  box-shadow: 0 12px 28px rgba(23, 34, 23, 0.08) !important;
  padding: 20px !important;
}

.rsv-card-title{
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  color: #1f3d2b !important;
  margin-bottom: 16px !important;
}

/* 입력 행 */
.rsv-row{
  gap: 12px !important;
  margin: 12px 0 !important;
}

.rsv-label{
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #4b5c52 !important;
}

.rsv-control{
  height: 48px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(31, 61, 43, 0.12) !important;
  background: rgba(255,255,255,0.92) !important;
  padding: 0 14px !important;
  font-size: 14px !important;
}

.rsv-control:focus{
  border-color: rgba(31, 61, 43, 0.34) !important;
  box-shadow: 0 0 0 4px rgba(31, 61, 43, 0.08) !important;
}

/* 예상요금 박스 */
.rsv-quote{
  margin-top: 16px !important;
  border: 1px solid rgba(31, 61, 43, 0.10) !important;
  border-radius: 18px !important;
  padding: 16px 18px !important;
  background: #f9f5ec !important;
}

.rsv-quote-title{
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #1f3d2b !important;
}

.rsv-quote-sub{
  font-size: 13px !important;
  color: #667085 !important;
}

.rsv-quote-price{
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #1f6b45 !important;
}

.rsv-quote-nights{
  font-size: 12px !important;
  color: #667085 !important;
}

/* 버튼 영역 */
.rsv-actions{
  margin-top: 16px !important;
  gap: 10px !important;
}

/* 안내 카드 리스트 */
.reserve-notice{
  border-radius: 18px !important;
  border: 1px solid rgba(31, 61, 43, 0.08) !important;
  background: #fcfaf4 !important;
  padding: 16px 18px !important;
}

.reserve-bullets{
  margin: 0 !important;
  padding-left: 18px !important;
}

.reserve-bullets li{
  line-height: 1.8 !important;
  color: #4b5563 !important;
}

/* 모바일 */
@media (max-width: 768px){
  .unified-head{
    padding: 14px 0 22px;
  }

  .unified-head__title{
    font-size: 34px;
  }

  .unified-head__desc{
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }

  .panel > .panel-title{
    font-size: 24px;
  }

  .panel > .panel-sub{
    font-size: 14px;
  }

  .rsv-summary-card{
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 16px !important;
    border-radius: 20px !important;
  }

  .rsv-summary-card__title{
    font-size: 24px !important;
  }

  .rsv-summary-meta{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .rsv-card{
    border-radius: 18px !important;
    padding: 16px !important;
  }

  .rsv-card-title{
    font-size: 18px !important;
  }

  .rsv-edit-panel{
    padding: 16px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 480px){
  .unified-head__title{
    font-size: 30px;
  }

  .rsv-summary-meta{
    grid-template-columns: 1fr !important;
  }

  .rsv-summary-card__actions{
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .rsv-summary-card__actions .btn,
  .rsv-summary-card__actions button{
    width: 100% !important;
  }
}