.glb-booking { margin: 1.5rem 0 2.5rem; }
.glb-booking__offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.glb-booking__flex {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--glb-accent-soft, #E8F0F7);
  border: 1px solid var(--glb-line, #D5DCE3);
  border-radius: 10px;
}
.glb-booking__flex-label { font-weight: 700; margin: 0 0 0.65rem; }
.glb-booking__flex-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.glb-booking__flex-chip {
  border: 1px solid var(--glb-line, #D5DCE3);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.glb-booking__flex-chip.is-selected {
  border-color: var(--glb-accent, #2F5D8C);
  background: var(--glb-accent, #2F5D8C);
  color: #fff;
}
.glb-booking__flex-total { margin: 0.75rem 0 0; font-weight: 700; color: var(--glb-accent-deep, #1A3A5C); }
.glb-booking__offer {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--glb-line, #D5DCE3);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.glb-booking__offer input { position: absolute; opacity: 0; pointer-events: none; }
.glb-booking__offer.is-selected {
  border-color: var(--glb-accent, #2F5D8C);
  box-shadow: inset 0 0 0 1px var(--glb-accent, #2F5D8C);
  background: var(--glb-accent-soft, #E8F0F7);
}
.glb-booking__offer-name { font-weight: 700; color: var(--glb-ink, #1A1F24); }
.glb-booking__offer-price { font-weight: 700; color: var(--glb-accent-deep, #1A3A5C); }
.glb-booking__offer-desc { font-size: 0.9rem; color: var(--glb-muted, #5C6770); }
.glb-booking__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}
.glb-booking__calendar label,
.glb-booking__form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: var(--glb-ink, #1A1F24);
}
.glb-booking__calendar input[type="date"],
.glb-booking__form input,
.glb-booking__form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--glb-line, #D5DCE3);
  border-radius: 8px;
  font: inherit;
}
.glb-booking__slot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}
.glb-booking__slot {
  border: 1px solid var(--glb-line, #D5DCE3);
  background: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.4rem;
  font-weight: 600;
  cursor: pointer;
}
.glb-booking__slot.is-selected,
.glb-booking__slot:hover {
  border-color: var(--glb-accent, #2F5D8C);
  background: var(--glb-accent-soft, #E8F0F7);
}
.glb-booking__hint { color: var(--glb-muted, #5C6770); font-size: 0.95rem; }
.glb-booking__selected { font-weight: 600; margin: 0.5rem 0 1rem; }
.glb-booking__msg { min-height: 1.25rem; color: var(--glb-muted, #5C6770); }
.glb-booking__msg.is-error { color: #A33B3B; }
.glb-hp { position: absolute !important; left: -9999px !important; height: 0 !important; width: 0 !important; opacity: 0 !important; }
.glb-booking-confirm {
  background: var(--glb-accent-soft, #E8F0F7);
  border: 1px solid var(--glb-line, #D5DCE3);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 900px) {
  .glb-booking__offers,
  .glb-booking__grid { grid-template-columns: 1fr; }
  .glb-booking__slot-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
