/* Booking wizard — King Island Lodge (placeholder front-end) */
.demo-banner {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: rgba(195,154,82,.12); border: 1px solid rgba(195,154,82,.4);
  border-radius: var(--radius-lg); padding: 1rem 1.2rem;
}
.demo-banner svg { flex: none; width: 22px; height: 22px; color: var(--cedar); margin-top: 2px; }
.demo-banner p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; max-width: none; }
.demo-banner strong { color: var(--ink); }

.booking { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }

/* Progress */
.booking-steps { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--cream-alt); border-bottom: 1px solid var(--paper-line); }
.booking-steps li { display: flex; align-items: center; gap: 0.55rem; padding: 1rem 1.1rem; font-size: 0.82rem; font-weight: 600; color: var(--stone); border-right: 1px solid var(--paper-line); }
.booking-steps li:last-child { border-right: none; }
.booking-steps .dot { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--sand); color: var(--stone); font-size: 0.8rem; }
.booking-steps li.is-active { color: var(--pine-deep); }
.booking-steps li.is-active .dot { background: var(--brass); color: var(--pine-deep); }
.booking-steps li.is-done .dot { background: var(--pine); color: var(--cream); }
.booking-steps li.is-done { color: var(--ink-soft); }
@media (max-width: 720px) {
  .booking-steps { grid-template-columns: 1fr 1fr; }
  .booking-steps li { border-bottom: 1px solid var(--paper-line); }
  .booking-steps li span:not(.dot) { display: none; }
  .booking-steps li::after { content: attr(data-label); }
}

/* Panels */
.booking-panel { display: none; padding: clamp(1.6rem, 4vw, 3rem); }
.booking-panel.is-active { display: block; animation: panelIn .4s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.booking-panel h2 { font-size: var(--step-2); margin-bottom: 0.5rem; }
.booking-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--paper-line); }

/* Cottage list */
.cottage-list { display: grid; gap: 1rem; }
.cottage {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1.1rem; align-items: center;
  border: 1.5px solid var(--paper-line); border-radius: var(--radius-lg); padding: 0.8rem; cursor: pointer;
  transition: border-color .25s, box-shadow .25s, background .25s; background: var(--white); text-align: left; width: 100%;
}
.cottage:hover:not(.is-unavailable) { border-color: var(--brass); box-shadow: var(--shadow-sm); }
.cottage.is-selected { border-color: var(--brass); background: rgba(195,154,82,.08); box-shadow: 0 0 0 2px rgba(195,154,82,.35); }
.cottage.is-unavailable { opacity: .55; cursor: not-allowed; }
.cottage__img { width: 96px; height: 72px; border-radius: var(--radius); object-fit: cover; }
.cottage__name { font-family: var(--font-display); font-size: 1.15rem; color: var(--pine-deep); }
.cottage__meta { font-size: 0.85rem; color: var(--stone); margin-top: 2px; }
.cottage__right { text-align: right; }
.cottage__price { font-family: var(--font-display); font-size: 1.1rem; color: var(--pine); }
.cottage__price span { font-size: 0.72rem; color: var(--stone); font-family: var(--font-body); display: block; }
.badge-avail { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 100px; margin-top: 6px; }
.badge-avail.free { background: rgba(47,83,64,.14); color: var(--pine); }
.badge-avail.gone { background: rgba(120,60,40,.12); color: #8a4a34; }
@media (max-width: 560px) {
  .cottage { grid-template-columns: 64px 1fr; }
  .cottage__img { width: 64px; height: 56px; }
  .cottage__right { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; text-align: left; padding-top: 0.4rem; border-top: 1px dashed var(--paper-line); }
}

/* Review */
.review-card { border: 1px solid var(--paper-line); border-radius: var(--radius-lg); overflow: hidden; }
.review-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.3rem; font-size: 0.95rem; }
.review-row:nth-child(odd) { background: var(--cream-alt); }
.review-row dt { color: var(--stone); }
.review-row dd { font-weight: 600; text-align: right; color: var(--ink); }
.review-total { background: var(--pine-deep) !important; color: var(--cream); }
.review-total dt { color: rgba(245,239,227,.75); }
.review-total dd { color: var(--brass); font-family: var(--font-display); font-size: 1.15rem; }

/* Done */
.booking-done { text-align: center; max-width: 560px; margin-inline: auto; }
.check-badge { width: 66px; height: 66px; border-radius: 50%; background: var(--pine); color: var(--cream); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.check-badge svg { width: 30px; height: 30px; }
