.vbw-booking-ui {
  border: 1px solid #ddd;
  padding: 12px;
  margin: 12px 0;
  border-radius: 8px;
  background: #fafafa;
}
.vbw-booking-ui .vbw-row { margin-bottom: 12px; }
.vbw-booking-ui label { display: block; font-weight: 600; margin-bottom: 4px; }

/* Calendar (primary entry point) */
.vbw-js .vbw-date-native { display: none; }
.vbw-calendar {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px;
}
.vbw-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.vbw-cal-title { font-weight: 700; font-size: 16px; }
.vbw-cal-nav {
  display: flex;
  gap: 8px;
}
.vbw-cal-nav button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  cursor: pointer;
}
.vbw-cal-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
.vbw-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.vbw-cal-dow {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 2px 0;
}
.vbw-cal-blank { height: 44px; }
.vbw-cal-day {
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 700;
}
.vbw-cal-day[data-available="1"] {
  background: #fff;
  border-color: #ddd;
}
.vbw-cal-day[data-selected="1"] {
  border-color: #111;
  background: #e9f4ff;
}
.vbw-cal-day[data-today="1"] {
  box-shadow: 0 0 0 2px #111 inset;
}
.vbw-cal-day:disabled { opacity: 0.35; cursor: not-allowed; }
.vbw-cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f8f4a;
  margin: 6px auto 0;
}

.vbw-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.vbw-slot {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  background: #fff;
  font-size: 14px;
}
.vbw-slot[data-selected="1"] {
  border-color: #111;
  background: #e9f4ff;
}
.vbw-slot small { display: block; color: #555; }
.vbw-attendee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  background: #fff;
}
.vbw-stepper { display: flex; align-items: center; gap: 6px; }
.vbw-stepper button {
  width: 28px; height: 28px; border: 1px solid #ccc; background: #f7f7f7; border-radius: 4px; cursor: pointer;
}
.vbw-stepper input {
  width: 42px; text-align: center; border: 1px solid #ddd; border-radius: 4px; padding: 4px;
}
.vbw-addons .vbw-addon {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.vbw-inline-note { color: #777; font-size: 12px; }
.vbw-price-row { border-top: 1px dashed #e0e0e0; padding-top: 10px; }
.vbw-price-preview { font-size: 18px; font-weight: 700; }
