/* Book Now — multi-step booking form */

.book-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.book-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--shadow);
}

.book-card h2 {
  font-size: 1.55rem;
  color: var(--plum);
  margin-bottom: 0.35rem;
}

.book-card > .lead {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.book-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.book-progress li {
  flex: 1 1 auto;
  min-width: 88px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 8px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.book-progress li.is-active {
  color: #fff;
  background: var(--terra);
  border-color: var(--terra);
}

.book-step[hidden] {
  display: none;
}

.book-step .step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 1rem;
}

.book-step .step-copy {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.book-form .field {
  margin-bottom: 18px;
}

.book-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--ink);
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.book-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236A5B66' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 154, 78, 0.2);
}

.book-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.book-form .phone-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
}

.currency-prices {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}

.currency-prices table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.currency-prices th,
.currency-prices td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.currency-prices th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(67, 39, 63, 0.04);
}

.currency-prices tr:last-child td {
  border-bottom: 0;
}

.currency-prices tr.is-selected td {
  background: rgba(140, 58, 116, 0.1);
  font-weight: 600;
  color: var(--plum);
}

.currency-prices .price-unavailable {
  color: var(--ink-soft);
  font-style: italic;
}

.book-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 1.5rem;
}

.book-actions .btn-ghost {
  min-width: 110px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  margin-top: 1rem;
}

.slot-btn {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.slot-btn:hover {
  border-color: var(--gold);
}

.slot-btn.is-selected {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.book-summary {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 1.2rem;
}

.book-summary p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.book-summary p:last-child {
  margin-bottom: 0;
}

.book-total {
  margin-top: 0.8rem !important;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 1rem !important;
  color: var(--plum) !important;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.payment-placeholder {
  border: 1px dashed rgba(67, 39, 63, 0.25);
  border-radius: 12px;
  padding: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.book-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 12px;
  min-height: 1.2em;
}

.book-sidebar h3 {
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 0.8rem;
}

.book-sidebar .contact-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.book-sidebar .contact-item:first-of-type {
  border-top: 0;
}

.book-sidebar .ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(217, 154, 78, 0.2);
  display: grid;
  place-items: center;
}

.book-sidebar .ic img {
  width: 20px;
  height: 20px;
}

.book-sidebar .socials {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.book-sidebar .social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(217, 154, 78, 0.2);
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.book-sidebar .social-link:hover {
  background: rgba(140, 58, 116, 0.28);
  transform: translateY(-1px);
}

.book-sidebar .social-link img {
  display: block;
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(47%) saturate(714%) hue-rotate(337deg) brightness(92%) contrast(93%);
}

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

@media (max-width: 760px) {
  .book-form .row2,
  .book-form .phone-row {
    grid-template-columns: 1fr;
  }

  .book-actions {
    flex-direction: column-reverse;
  }

  .book-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
