/* Booking calendar — styled to the site's own vocabulary:
   brandon-grotesque light headings, proxima-nova 300 body, #444 ink, quiet greys. */

#booking-widget { font-family: "proxima-nova", sans-serif; font-weight: 300; color: #444; letter-spacing: 0.3px; }

#booking-widget .bk-guestbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
#booking-widget .bk-guestbar label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.32px; text-transform: uppercase; color: #3e3d3d;
}
#booking-widget .bk-guestbar select {
  font: inherit; font-size: 15px; color: #444; border: 1px solid #ccc; background: #fafafa; padding: 8px 12px;
}

#booking-widget .bk-props { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
#booking-widget .bk-prop {
  font-size: 11px; font-weight: 600; letter-spacing: 1.32px; text-transform: uppercase;
  color: #3e3d3d; background: #fff; border: 1px solid #ccc; padding: 10px 16px; cursor: pointer;
}
#booking-widget .bk-prop.sel { background: #444; border-color: #444; color: #fff; }

#booking-widget .bk-monthbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
#booking-widget .bk-monthbar h3 {
  font-family: "brandon-grotesque", sans-serif; font-weight: 300; font-size: 21px;
  letter-spacing: 0.63px; color: #222; margin: 0;
}
#booking-widget .bk-nav {
  border: 1px solid #ccc; background: #fff; color: #444; width: 32px; height: 32px;
  cursor: pointer; font-size: 14px; line-height: 1;
}
#booking-widget .bk-nav:disabled { opacity: 0.3; cursor: default; }

#booking-widget table { width: 100%; border-collapse: collapse; table-layout: fixed; }
#booking-widget th {
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: #999; padding: 6px 0; text-align: center;
}
#booking-widget td { padding: 1px; }
#booking-widget .bk-day {
  position: relative; border: 1px solid #eee; background: #fff; width: 100%;
  padding: 6px 2px 4px; cursor: pointer; text-align: center; font: inherit; color: #444;
}
#booking-widget .bk-day .d { font-size: 13px; line-height: 1.2; display: block; }
#booking-widget .bk-day .p { font-size: 10px; color: #999; display: block; margin-top: 2px; }
#booking-widget .bk-day.off { visibility: hidden; }
#booking-widget .bk-day:disabled { cursor: default; color: #ccc; background: #fafafa; }
#booking-widget .bk-day:disabled .p { visibility: hidden; }
#booking-widget .bk-day.booked:disabled .d { text-decoration: line-through; }
#booking-widget .bk-day.inrange { background: #ececec; border-color: #e0e0e0; }
#booking-widget .bk-day.edge { background: #444; border-color: #444; color: #fff; }
#booking-widget .bk-day.edge .p { color: #ddd; }

#booking-widget .bk-hint { font-size: 13px; color: #999; margin: 12px 0 0; min-height: 18px; }

#booking-widget .bk-quote { margin: 18px 0 0; border-top: 1px solid #eee; padding-top: 14px; font-size: 15px; line-height: 24px; }
#booking-widget .bk-quote .row { display: flex; justify-content: space-between; }
#booking-widget .bk-quote .total { font-weight: 600; border-top: 1px solid #eee; margin-top: 6px; padding-top: 6px; }

#booking-widget .bk-form { margin-top: 20px; display: none; }
#booking-widget .bk-form.show { display: block; }
#booking-widget .bk-form label { display: block; font-size: 13px; margin: 12px 0 4px; color: #444; }
#booking-widget .bk-form input, #booking-widget .bk-form textarea, #booking-widget .bk-form select {
  width: 100%; box-sizing: border-box; border: 1px solid #ccc; background: #fafafa;
  font: inherit; font-size: 15px; color: #444; padding: 10px 12px;
}
#booking-widget .bk-form .cols { display: flex; gap: 12px; }
#booking-widget .bk-form .cols > div { flex: 1; }
#booking-widget .bk-submit {
  margin-top: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: #000; background: #fff; border: 1px solid #000; padding: 14px 30px; cursor: pointer;
}
#booking-widget .bk-submit:hover { background: #000; color: #fff; }
#booking-widget .bk-submit:disabled { opacity: 0.4; cursor: default; }
#booking-widget .bk-error { color: #a33; font-size: 13px; margin-top: 10px; min-height: 17px; }

@media (max-width: 640px) {
  #booking-widget .bk-day .p { font-size: 8px; }
  #booking-widget .bk-form .cols { flex-direction: column; gap: 0; }
}

#booking-widget .bk-policy { font-size: 12px; color: #999; margin-top: 12px; }

#booking-widget .bk-day.depart-ok { border-color: #999; }
#booking-widget .bk-day.depart-ok .p { color: #777; font-style: italic; }
#booking-widget .bk-restart { margin: 6px 0 0; }
#booking-widget .bk-restart a { font-size: 12px; color: #999; letter-spacing: .3px; }
#booking-widget .bk-restart a:hover { color: #444; }
