/* Babe Booking – clean black/white, mobile-first */

.babe-booking-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  color: #111;
  background: #fff;
}
@media (min-width: 640px) {
  .babe-booking-wrap { max-width: 560px; padding: 0 16px; }
}
@media (min-width: 900px) {
  .babe-booking-wrap { max-width: 720px; }
}

.babe-booking-logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  filter: brightness(0);
  object-fit: contain;
}
@media (min-width: 640px) {
  .babe-booking-logo { max-width: 200px; max-height: 64px; margin-bottom: 1.25rem; }
}

/* Card / sections */
.babe-cart-wrap,
.babe-group {
  background: #fff;
  color: #111;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 12px 14px;
  margin: 0 0 14px;
}
@media (min-width: 640px) {
  .babe-cart-wrap, .babe-group { padding: 14px 18px; margin-bottom: 18px; }
}

.babe-cart-wrap h4,
.babe-group h4 {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111;
}
.babe-cart-wrap ul { margin: 0 0 8px; padding-left: 1.25em; color: #111; }
.babe-cart-total { margin: 4px 0; font-weight: 600; font-size: 0.9rem; color: #111; }
.babe-cart-actions { margin: 10px 0 0; }

/* Category selector */
.babe-category-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 12px;
}
.babe-category-label { font-weight: 600; font-size: 0.9rem; color: #111; margin-right: 2px; }
.babe-category-btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 0.9rem;
}
.babe-category-btn:hover { border-color: #111; background: #fff; }
.babe-category-btn.active {
  border-color: #111;
  background: #111;
  color: #fff;
}
.babe-choose-category { margin: 8px 0; font-size: 0.9rem; color: #444; }
.babe-add-another { margin-top: 10px; }

/* Service list */
.babe-service {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #111;
}
.babe-service:last-child { border-bottom: none; }
.babe-service-name { flex: 1; font-size: 0.9375rem; }
.babe-service-meta { font-size: 0.8125rem; color: #555; }

/* Buttons – black primary */
.babe-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.babe-btn:hover { opacity: 0.88; color: #fff; }
.babe-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.babe-btn-small { padding: 6px 12px; font-size: 0.875rem; }

/* Time slots */
.babe-times-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.babe-time {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 0.9rem;
}
.babe-time:hover { border-color: #111; }
.babe-time.active { border-color: #111; background: #111; color: #fff; }

.babe-error { color: #b00020; font-size: 0.9rem; }

/* Confirm step: login/register gate */
.babe-confirm-gate .babe-auth-block { margin: 14px 0; }
.babe-confirm-gate .babe-auth-block h4 { margin: 12px 0 6px; font-size: 0.9375rem; font-weight: 600; color: #111; }
.babe-confirm-gate .babe-auth-block h4:first-of-type { margin-top: 0; }
.babe-gate-note { margin-top: 12px; font-size: 0.875rem; color: #555; }

/* Calendar – clean, disabled days red/greyed */
.babe-calendar-month {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 380px) {
  .babe-calendar-month { max-width: 320px; }
}

.babe-calendar-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #111;
  margin-bottom: 8px;
}
.babe-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  color: #666;
}
.babe-calendar-weekdays span { text-align: center; }
.babe-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.babe-calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 4px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 0.875rem;
}
.babe-calendar-day:hover:not(:disabled) { border-color: #111; background: #f8f8f8; }
.babe-calendar-day-empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.babe-calendar-day-unavailable {
  background: #f5f0f0;
  color: #888;
  border-color: #ebe5e5;
  cursor: not-allowed;
  opacity: 0.9;
}
.babe-calendar-day-selected {
  border-color: #111;
  background: #111;
  color: #fff;
}
.babe-calendar-day-selected:hover { background: #111; color: #fff; }

/* Treatment Recommendations */
.babe-recommendations {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: #111;
  padding: 0;
}
@media (min-width: 640px) {
  .babe-recommendations { max-width: 560px; }
}
.babe-recommendations-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 12px 0;
  color: #111;
}
.babe-recommendations-card h3 { margin-top: 0; font-size: 1rem; font-weight: 600; color: #111; }
.babe-recommendation-info { margin-top: 10px; font-size: 0.9rem; color: #444; }

/* ========== Premium booking experience (Elementor embed) ========== */

/* Booking container */
.babe-booking-wrap {
  max-width: 420px;
  margin: 0 auto;
  font-family: inherit;
}

/* Buttons */
.babe-booking-wrap button,
.babe-booking-wrap .babe-btn {
  background: #fff;
  border: 1px solid #000;
  color: #000;
  border-radius: 999px;
  padding: 12px 22px;
  transition: all .25s ease;
}

.babe-booking-wrap button:hover,
.babe-booking-wrap .babe-btn:hover {
  background: #000;
  color: #fff;
}

/* Active selection */
.babe-booking-wrap .is-active {
  background: #000 !important;
  color: #fff !important;
}

/* Inputs */
.babe-booking-wrap input,
.babe-booking-wrap select {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 12px;
}

/* Calendar */
.babe-calendar-day.is-selected {
  background: #000;
  color: #fff;
}

.babe-calendar-day.is-disabled {
  opacity: 0.3;
}

/* Section transitions */
.babe-step {
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ultimate Member polish */
.babe-booking-wrap .um-field-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.babe-booking-wrap .um-button {
  border-radius: 999px !important;
}

.babe-treatments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.babe-treatments-list .babe-service-btn {
  margin: 0;
}
