/* ─── Juma Bookings Front CSS ─── */
:root {
  --jf-primary:       #6366f1;
  --jf-primary-dark:  #4f46e5;
  --jf-primary-light: #eef2ff;
  --jf-success:       #22c55e;
  --jf-danger:        #ef4444;
  --jf-bg:            #f8f9fb;
  --jf-surface:       #ffffff;
  --jf-border:        #e5e7eb;
  --jf-text:          #111827;
  --jf-muted:         #6b7280;
  --jf-radius:        12px;
  --jf-shadow:        0 2px 8px rgba(0,0,0,.08);
  --jf-shadow-md:     0 8px 30px rgba(0,0,0,.14);
}

/* ─── Booking wrap ─── */
.juma-booking-wrap {
  max-width: 680px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  color: var(--jf-text);
  font-size: 15px;
}

/* ─── Step indicator ─── */
.juma-step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  justify-content: center;
  gap: 0;
}
.juma-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.juma-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--jf-border);
  color: var(--jf-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.juma-step small {
  font-size: 11px;
  color: var(--jf-muted);
  white-space: nowrap;
}
.juma-step.active span {
  background: var(--jf-primary);
  color: #fff;
}
.juma-step.done span {
  background: #dcfce7;
  color: var(--jf-success);
}
.juma-step-line {
  flex: 1;
  height: 2px;
  background: var(--jf-border);
  min-width: 30px;
  max-width: 80px;
  margin-bottom: 18px;
}

/* ─── Step title ─── */
.juma-step-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--jf-text);
}

/* ─── Service options list ─── */
.juma-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.juma-service-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--jf-border);
  border-radius: var(--jf-radius);
  cursor: pointer;
  transition: all .15s;
  background: var(--jf-surface);
  position: relative;
}
.juma-service-option:hover {
  border-color: var(--jf-primary);
  background: var(--jf-primary-light);
}
.juma-service-option.selected {
  border-color: var(--jf-primary);
  background: var(--jf-primary-light);
}
.juma-service-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.juma-service-option-info {
  flex: 1;
}
.juma-service-option-info strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
}
.juma-service-option-info p {
  font-size: 13px;
  color: var(--jf-muted);
  margin: 2px 0 6px;
}
.juma-service-option-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--jf-muted);
}
.juma-service-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--jf-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.juma-service-option.selected .juma-service-check {
  display: flex;
}

/* ─── Staff options ─── */
.juma-staff-select-wrap { margin-bottom: 20px; }
.juma-staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.juma-staff-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 2px solid var(--jf-border);
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  background: var(--jf-surface);
}
.juma-staff-option:hover,
.juma-staff-option.selected {
  border-color: var(--jf-primary);
  background: var(--jf-primary-light);
  color: var(--jf-primary);
}
.juma-staff-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--jf-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ─── Calendar ─── */
.juma-calendar-wrap {
  background: var(--jf-surface);
  border: 1px solid var(--jf-border);
  border-radius: var(--jf-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.juma-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.juma-cal-month-label {
  font-size: 16px;
  font-weight: 600;
}
.juma-cal-btn {
  background: none;
  border: 1px solid var(--jf-border);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  color: var(--jf-muted);
}
.juma-cal-btn:hover { background: var(--jf-bg); color: var(--jf-text); }
.juma-cal-btn:disabled { opacity: .35; cursor: default; }

.juma-cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.juma-cal-days-header span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--jf-muted);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.juma-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.juma-cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: default;
  transition: all .15s;
  border: 2px solid transparent;
  color: var(--jf-text);
}
.juma-cal-cell.empty   { cursor: default; }
.juma-cal-cell.past    { color: var(--jf-border); cursor: default; }
.juma-cal-cell.unavailable { color: #d1d5db; cursor: default; }
.juma-cal-cell.available {
  cursor: pointer;
  background: var(--jf-primary-light);
  color: var(--jf-primary);
  font-weight: 600;
}
.juma-cal-cell.available:hover {
  background: var(--jf-primary);
  color: #fff;
}
.juma-cal-cell.selected {
  background: var(--jf-primary);
  color: #fff;
  border-color: var(--jf-primary-dark);
}
.juma-cal-cell.today {
  border-color: var(--jf-primary);
}

/* ─── Time slots ─── */
.juma-time-slots-wrap { margin-bottom: 20px; }
.juma-slots-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--jf-text);
}
.juma-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.juma-time-slot {
  padding: 8px 14px;
  border: 2px solid var(--jf-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  background: var(--jf-surface);
  color: var(--jf-text);
}
.juma-time-slot:hover {
  border-color: var(--jf-primary);
  background: var(--jf-primary-light);
  color: var(--jf-primary);
}
.juma-time-slot.selected {
  background: var(--jf-primary);
  color: #fff;
  border-color: var(--jf-primary);
}
.juma-no-slots {
  font-size: 13px;
  color: var(--jf-muted);
  padding: 12px 0;
}

/* ─── Form fields ─── */
.juma-field { margin-bottom: 16px; }
.juma-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--jf-text);
  margin-bottom: 6px;
}
.juma-booking-wrap .juma-input,
.juma-booking-wrap .juma-select,
.juma-booking-wrap .juma-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--jf-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--jf-text);
  background: var(--jf-surface);
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  font-family: inherit;
}
.juma-booking-wrap .juma-input:focus,
.juma-booking-wrap .juma-select:focus,
.juma-booking-wrap .juma-textarea:focus {
  outline: none;
  border-color: var(--jf-primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.juma-booking-wrap .juma-textarea { min-height: 80px; resize: vertical; }
.juma-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── Payment options ─── */
.juma-payment-options { display: flex; flex-direction: column; gap: 10px; }
.juma-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid var(--jf-border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: all .15s;
}
.juma-radio-label:has(input:checked) {
  border-color: var(--jf-primary);
  background: var(--jf-primary-light);
}
.juma-radio-label input { accent-color: var(--jf-primary); }
.juma-stripe-card {
  padding: 14px;
  border: 1.5px solid var(--jf-border);
  border-radius: 10px;
  background: var(--jf-surface);
  transition: border-color .15s;
}
.juma-stripe-card.StripeElement--focus { border-color: var(--jf-primary); }

/* ─── Step actions ─── */
.juma-step-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
}

/* ─── Booking summary ─── */
.juma-booking-summary-mini,
.juma-confirm-summary {
  background: var(--jf-bg);
  border: 1px solid var(--jf-border);
  border-radius: var(--jf-radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
}
.juma-confirm-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--jf-border);
}
.juma-confirm-summary-row:last-child { border-bottom: none; }
.juma-confirm-summary-row .label { color: var(--jf-muted); }
.juma-confirm-summary-row .value { font-weight: 500; }
.juma-confirm-summary-total .value { font-size: 16px; font-weight: 700; color: var(--jf-primary); }

/* ─── Buttons ─── */
.juma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s;
  font-family: inherit;
  line-height: 1.4;
}
.juma-btn:disabled { opacity: .5; cursor: not-allowed; }
.juma-btn-primary { background: var(--jf-primary); color: #fff; }
.juma-btn-primary:hover:not(:disabled) { background: var(--jf-primary-dark); }
.juma-btn-ghost { background: transparent; color: var(--jf-text); border: 1.5px solid var(--jf-border); }
.juma-btn-ghost:hover:not(:disabled) { background: var(--jf-bg); }
.juma-full-width { width: 100%; }

/* ─── Success state ─── */
.juma-booking-success {
  text-align: center;
  padding: 40px 20px;
}
.juma-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--jf-success);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.juma-booking-success h2 { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.juma-booking-success p { color: var(--jf-muted); margin: 0 0 8px; }
.juma-success-message { font-size: 15px; color: var(--jf-text) !important; }

/* ─── Field error ─── */
.juma-field-error {
  color: var(--jf-danger);
  font-size: 13px;
  margin-top: 6px;
  padding: 8px 12px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

/* ─── Location select ─── */
.juma-location-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ─── Modal popup ─── */
.juma-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.juma-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}
.juma-modal-box,
.juma-modal-booking {
  position: relative;
  background: var(--jf-surface);
  border-radius: 18px;
  padding: 32px;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--jf-shadow-md);
  z-index: 2;
  animation: juma-modal-in .2s ease;
  box-sizing: border-box;
}

#juma-reschedule-modal .juma-modal-box {
  max-width: 520px;
}
.juma-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--jf-bg);
  border: 1px solid var(--jf-border);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jf-muted);
  line-height: 1;
}
.juma-modal-close:hover { background: #f3f4f6; color: var(--jf-text); }
@keyframes juma-modal-in {
  from { opacity: 0; transform: scale(.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}


#juma-reschedule-modal .juma-modal-overlay {
  z-index: 1;
}
#juma-reschedule-modal h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--jf-text);
}
#juma-reschedule-modal .jf-r-day.avail:hover,
#juma-reschedule-modal .jf-r-prev:hover,
#juma-reschedule-modal .jf-r-next:hover {
  filter: brightness(.97);
}
#juma-reschedule-modal .jf-r-slot.selected {
  background: var(--jf-primary);
  color: #fff;
  border-color: var(--jf-primary);
}

/* ─── Portal ─── */
.juma-portal-wrap {
  max-width: 720px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}
.juma-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.juma-portal-header h2 { margin: 0; font-size: 22px; font-weight: 700; }
.juma-portal-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--jf-border);
  margin-bottom: 20px;
}
.juma-portal-tab {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--jf-muted);
  transition: all .15s;
  font-family: inherit;
}
.juma-portal-tab.active { color: var(--jf-primary); border-bottom-color: var(--jf-primary); }
.juma-portal-tab-content { display: none; }
.juma-portal-tab-content.active { display: block; }

/* Portal booking cards */
.juma-portal-booking-card {
  background: var(--jf-surface);
  border: 1px solid var(--jf-border);
  border-radius: var(--jf-radius);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.juma-portal-booking-color {
  width: 4px;
  border-radius: 4px;
  min-height: 60px;
  background: var(--jf-primary);
  flex-shrink: 0;
}
.juma-portal-booking-info { flex: 1; }
.juma-portal-booking-info h3 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.juma-portal-booking-meta { font-size: 13px; color: var(--jf-muted); margin-bottom: 10px; }
.juma-portal-booking-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.juma-portal-empty { text-align: center; padding: 40px 20px; color: var(--jf-muted); font-size: 14px; }

/* Portal login */
.juma-portal-login-wrap { display: flex; justify-content: center; padding: 40px 16px; }
.juma-portal-login-card {
  background: var(--jf-surface);
  border: 1px solid var(--jf-border);
  border-radius: 16px;
  padding: 36px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--jf-shadow);
}
.juma-portal-login-card h2 { margin: 0 0 6px; font-size: 22px; font-weight: 700; }
.juma-portal-login-card .juma-text-muted { margin: 0 0 24px; font-size: 14px; color: var(--jf-muted); }
.juma-portal-note { margin: 0; font-size: 12px; text-align: center; }
.juma-mt-3 { margin-top: 12px; }
.juma-text-muted { color: var(--jf-muted); }

/* Loading */
.juma-loading-dots { color: var(--jf-muted); font-size: 14px; padding: 20px 0; }

/* Reschedule modal */
.juma-reschedule-cal { margin-bottom: 16px; }
.juma-reschedule-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.juma-reschedule-actions { display: flex; justify-content: flex-end; }

/* ─── Responsive ─── */
@media (max-width: 580px) {
  .juma-form-2col { grid-template-columns: 1fr; }
  .juma-step-line { min-width: 16px; }
  .juma-portal-login-card { padding: 24px 20px; }
  .juma-modal-booking { padding: 20px 16px; }
  .juma-step-actions { flex-wrap: wrap; }
}

.juma-account-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--jf-border);
  border-radius: 14px;
  background: #f9fafb;
}
.juma-account-box-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--jf-text);
  margin-bottom: 4px;
}
.juma-account-box .juma-text-muted {
  margin: 0 0 14px;
  font-size: 13px;
}
.juma-success-actions {
  margin-top: 18px;
}


/* Juma Bookings 1.0.3 - polished Google-style frontend */
.juma-booking-wrap,.juma-portal-wrap{font-family:Inter,Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;}
.juma-booking-wrap{background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);border:1px solid #e5e7eb;border-radius:28px;box-shadow:0 22px 60px rgba(15,23,42,.10);animation:jumaFadeUp .45s ease both;}
.juma-step-title{letter-spacing:-.03em;background:linear-gradient(135deg,#111827,#4f46e5);-webkit-background-clip:text;background-clip:text;color:transparent;}
.juma-service-option,.juma-staff-option,.juma-time-slot,.juma-portal-booking-card{transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease;}
.juma-service-option:hover,.juma-staff-option:hover,.juma-time-slot:hover,.juma-portal-booking-card:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(15,23,42,.10);}
.juma-service-option.selected,.juma-staff-option.selected,.juma-time-slot.selected{box-shadow:0 12px 35px rgba(79,70,229,.22);}
.juma-btn{border-radius:14px;font-weight:700;transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease;}
.juma-btn:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 10px 24px rgba(79,70,229,.20);}
.juma-btn-primary{background:linear-gradient(135deg,#4f46e5,#7c3aed)!important;}
.juma-input,.juma-select,.juma-textarea{border-radius:14px!important;border:1px solid #dbe3ef!important;background:#fff!important;transition:border-color .2s ease,box-shadow .2s ease;}
.juma-input:focus,.juma-select:focus,.juma-textarea:focus{border-color:#6366f1!important;box-shadow:0 0 0 4px rgba(99,102,241,.14)!important;outline:none!important;}
.juma-capacity-chip{background:#eef2ff;color:#4338ca;border-radius:999px;padding:3px 8px;font-weight:700;}
.juma-people-field{background:linear-gradient(135deg,#f8fafc,#eef2ff);border:1px solid #e0e7ff;border-radius:20px;padding:16px;margin-top:16px;}
.juma-people-control{display:flex;align-items:center;gap:10px;max-width:220px;}
.juma-people-control button{width:42px;height:42px;border:0;border-radius:14px;background:#4f46e5;color:#fff;font-size:22px;font-weight:800;cursor:pointer;box-shadow:0 10px 24px rgba(79,70,229,.22);}
.juma-people-count{text-align:center;font-size:18px;font-weight:800;}
.juma-time-slot small{display:block;font-size:11px;color:#64748b;margin-top:2px;}
.juma-booking-step{animation:jumaFadeUp .3s ease both;}
.juma-success-icon{animation:jumaPop .45s cubic-bezier(.2,1.4,.3,1) both;}
.juma-portal-header{background:linear-gradient(135deg,#eef2ff,#ffffff);border:1px solid #e0e7ff;border-radius:24px;padding:22px 24px;margin-bottom:18px;box-shadow:0 12px 30px rgba(15,23,42,.06);}
.juma-portal-booking-card{position:relative;border-radius:22px!important;background:#fff!important;border:1px solid #e5e7eb!important;box-shadow:0 10px 28px rgba(15,23,42,.07);overflow:hidden;animation:jumaFadeUp .35s ease both;}
.juma-portal-booking-info{width:100%;}
.juma-portal-booking-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;}
.juma-status-badge{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:7px 12px;font-size:12px;font-weight:800;white-space:nowrap;text-transform:uppercase;letter-spacing:.03em;}
.juma-status-pending{background:#fef3c7;color:#92400e;}
.juma-status-approved{background:#dcfce7;color:#166534;}
.juma-status-cancelled{background:#fee2e2;color:#991b1b;}
.juma-status-completed{background:#dbeafe;color:#1d4ed8;}
.juma-status-no_show{background:#f3f4f6;color:#374151;}
.juma-people-meta{margin-top:5px;font-weight:700;color:#475569!important;}
@keyframes jumaFadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@keyframes jumaPop{0%{transform:scale(.72);opacity:0}80%{transform:scale(1.08)}100%{transform:scale(1);opacity:1}}
@media (max-width:640px){.juma-portal-booking-top{flex-direction:column}.juma-status-badge{align-self:flex-start}.juma-people-control{max-width:100%}}

/* Juma Bookings 1.0.3 hotfix - per-person pricing UI + glass spacing */
.juma-booking-wrap{
  padding:34px 38px!important;
  background:linear-gradient(145deg,rgba(255,255,255,.86),rgba(248,250,252,.68))!important;
  border:1px solid rgba(226,232,240,.95)!important;
  box-shadow:0 24px 70px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.75)!important;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.juma-booking-step{
  padding:6px 2px 2px;
}
.juma-services-list{
  gap:14px;
}
.juma-service-option{
  padding:18px 20px!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.72)!important;
  border:1px solid rgba(226,232,240,.95)!important;
  box-shadow:0 8px 26px rgba(15,23,42,.05);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.juma-service-option.selected{
  background:linear-gradient(135deg,rgba(238,242,255,.90),rgba(255,255,255,.78))!important;
  border-color:rgba(99,102,241,.85)!important;
}
.juma-people-field{
  padding:22px 24px!important;
  margin:18px 0 22px!important;
  background:linear-gradient(135deg,rgba(255,255,255,.76),rgba(238,242,255,.72))!important;
  border:1px solid rgba(199,210,254,.90)!important;
  box-shadow:0 14px 36px rgba(79,70,229,.10), inset 0 1px 0 rgba(255,255,255,.75);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.juma-confirm-summary-total .value{
  font-size:18px;
  font-weight:900;
}
@media (max-width:580px){
  .juma-booking-wrap{padding:24px 18px!important;border-radius:22px!important;}
  .juma-service-option{padding:16px!important;}
  .juma-people-field{padding:18px!important;}
}

/* EM Bookings 2.0.0 - staff photos + strong readable portal text */
.juma-booking-wrap,.juma-portal-wrap,.juma-portal-login-wrap{color:#111827!important;}
.juma-booking-wrap h1,.juma-booking-wrap h2,.juma-booking-wrap h3,.juma-booking-wrap h4,
.juma-portal-wrap h1,.juma-portal-wrap h2,.juma-portal-wrap h3,.juma-portal-wrap h4,
.juma-portal-login-card h2,.juma-step-title,.juma-portal-header h2{color:#111827!important;background:none!important;-webkit-text-fill-color:#111827!important;}
.juma-portal-header,.juma-portal-booking-card,.juma-portal-login-card{color:#111827!important;}
.juma-portal-booking-meta,.juma-text-muted,.juma-portal-note{color:#6b7280!important;}
.juma-staff-option{align-items:center;gap:10px;padding:12px 16px!important;border-radius:18px;}
.juma-staff-avatar{width:42px;height:42px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;font-weight:800;flex:0 0 42px;overflow:hidden;box-shadow:0 8px 18px rgba(99,102,241,.2);}
.juma-staff-avatar.has-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.juma-staff-text{display:flex;flex-direction:column;line-height:1.2;}
.juma-staff-text strong{font-size:14px;color:#111827!important;}
.juma-staff-title{font-size:12px;color:#6b7280;margin-top:3px;}

/* Hotfix: show blocked day / holiday reason under the no-slots message */
.juma-unavailable-reason {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(99, 102, 241, 0.18);
  color: #111827 !important;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.juma-unavailable-reason strong {
  color: #4f46e5 !important;
  font-weight: 800;
}


/* Terms & availability labels hotfix */
.juma-time-slot{position:relative;display:inline-flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;min-width:72px;}
.juma-time-slot strong{font-size:14px;color:#111827;}
.juma-time-slot small{font-size:11px;color:#667085;}
.juma-slot-status{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;border-radius:999px;padding:2px 7px;margin-top:2px;}
.juma-slot-status.available{background:#dcfce7;color:#166534;}
.juma-slot-status.not-available{background:#fee2e2;color:#991b1b;}
.juma-terms-box{margin:18px 0 4px;padding:18px 20px;border-radius:20px;background:rgba(255,255,255,.82);border:1px solid rgba(255,255,255,.78);box-shadow:0 16px 36px rgba(15,23,42,.08);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);}
.juma-terms-box h3{margin:0 0 10px;font-size:17px;font-weight:800;color:#111827!important;}
.juma-terms-content{max-height:150px;overflow:auto;padding:14px;border-radius:14px;background:rgba(255,255,255,.72);border:1px solid rgba(15,23,42,.08);color:#334155!important;font-size:13px;line-height:1.6;}
.juma-terms-content p{margin:0 0 8px;color:#334155!important;}
.juma-terms-accept{display:flex;align-items:flex-start;gap:10px;margin-top:13px;font-weight:700;color:#111827!important;font-size:13px;}
.juma-terms-accept input{margin-top:2px;transform:scale(1.15);}

/* Hotfix: show calendar date availability only on hover, not inside each slot */
.juma-cal-cell { position: relative; overflow: visible; }
.juma-date-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 30;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 104px;
  max-width: 180px;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #111827;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 12px 26px rgba(15,23,42,.18);
  pointer-events: none;
  animation: jumaTooltipIn .12s ease-out;
}
.juma-date-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255,255,255,.94);
}
.juma-date-tooltip.available { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.juma-date-tooltip.not-available { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.juma-date-tooltip small {
  display: block;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  color: inherit;
  opacity: .9;
}
@keyframes jumaTooltipIn { from { opacity: 0; transform: translate(-50%, 4px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Remove the previous slot-level Available badges. Slots remain clean; date availability appears on hover. */
.juma-slot-status { display: none !important; }


/* Rules page shortcode */
.juma-rules-page{max-width:880px;margin:40px auto;padding:0 16px;}
.juma-rules-card{background:rgba(255,255,255,.90);border:1px solid rgba(255,255,255,.75);border-radius:24px;padding:28px 32px;box-shadow:0 20px 50px rgba(15,23,42,.14);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);color:#111827!important;}
.juma-rules-card h2{margin:0 0 18px;color:#111827!important;font-size:30px;font-weight:850;}
.juma-rules-content{color:#334155!important;font-size:15px;line-height:1.75;}
.juma-rules-content p{margin:0 0 12px;color:#334155!important;}
.juma-rules-content ul,.juma-rules-content ol{margin:0 0 14px 22px;color:#334155!important;}

/* Help support widget */
.juma-help-floating{position:fixed;right:22px;bottom:22px;z-index:99999;font-family:inherit;}
.juma-help-trigger{display:flex;align-items:center;gap:9px;border:0;border-radius:999px;padding:12px 16px;background:linear-gradient(135deg,#5b5ff6,#8a35ff);color:#fff;font-weight:800;box-shadow:0 16px 34px rgba(74,58,255,.32);cursor:pointer;transition:transform .18s ease,box-shadow .18s ease;}
.juma-help-trigger:hover{transform:translateY(-2px);box-shadow:0 20px 42px rgba(74,58,255,.4);}
.juma-help-dot{width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.22);display:inline-flex;align-items:center;justify-content:center;font-weight:900;}
.juma-help-panel{position:absolute;right:0;bottom:58px;width:320px;padding:18px;border-radius:22px;background:rgba(255,255,255,.92);border:1px solid rgba(255,255,255,.85);box-shadow:0 24px 60px rgba(15,23,42,.22);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);color:#111827!important;}
.juma-help-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px;}
.juma-help-head strong{font-size:17px;color:#111827!important;}
.juma-help-close{border:0;background:#f1f5f9;color:#334155;width:30px;height:30px;border-radius:50%;font-size:20px;line-height:1;cursor:pointer;}
.juma-help-panel p{margin:0 0 14px;color:#475569!important;font-size:13px;line-height:1.55;}
.juma-help-actions{display:grid;gap:9px;}
.juma-help-btn{display:flex;align-items:center;justify-content:center;text-align:center;border-radius:14px;padding:11px 12px;text-decoration:none!important;font-weight:800;font-size:13px;transition:transform .16s ease,opacity .16s ease;}
.juma-help-btn:hover{transform:translateY(-1px);opacity:.94;}
.juma-help-btn.whatsapp{background:#dcfce7;color:#166534!important;}
.juma-help-btn.call{background:#dbeafe;color:#1d4ed8!important;}
.juma-help-btn.email{background:#f3e8ff;color:#6d28d9!important;}
.juma-help-inline{position:relative;max-width:640px;margin:24px auto;}
.juma-help-inline .juma-help-trigger{display:none;}
.juma-help-inline .juma-help-panel{position:relative;right:auto;bottom:auto;width:auto;}
@media(max-width:600px){.juma-help-floating{right:14px;bottom:14px}.juma-help-panel{width:calc(100vw - 28px);right:0}.juma-help-trigger span:last-child{display:none}}


/* EM Bookings v2.0.0 visual service icons and staff popup */
.juma-service-option{position:relative;gap:14px}
.em-service-visual{width:54px;height:54px;min-width:54px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.72);box-shadow:0 10px 24px rgba(15,23,42,.08);overflow:hidden;font-size:26px;border:1px solid rgba(99,102,241,.14)}
.em-service-visual img{width:100%;height:100%;object-fit:cover;display:block}
.juma-staff-option{position:relative;padding-right:44px!important;cursor:pointer}
.juma-staff-info-btn{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:999px;border:1px solid rgba(99,102,241,.2);background:#fff;color:#4f46e5;font-weight:800;cursor:pointer;box-shadow:0 8px 20px rgba(15,23,42,.08)}
.juma-staff-info-btn:hover{background:#eef2ff}
.juma-staff-profile-modal{position:fixed;inset:0;z-index:999999;display:flex;align-items:center;justify-content:center;padding:20px}
.juma-staff-profile-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.48);backdrop-filter:blur(6px)}
.juma-staff-profile-card{position:relative;width:min(520px,94vw);max-height:88vh;overflow:auto;background:rgba(255,255,255,.96);border:1px solid rgba(255,255,255,.75);border-radius:26px;padding:24px;box-shadow:0 30px 80px rgba(15,23,42,.25);animation:jumaProfileIn .22s ease-out;color:#111827}
@keyframes jumaProfileIn{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.juma-staff-profile-close{position:absolute;right:16px;top:14px;border:0;background:#f8fafc;border-radius:12px;width:36px;height:36px;font-size:22px;line-height:1;cursor:pointer;color:#111827}
.juma-profile-cover{height:150px;margin:-24px -24px 18px;border-radius:26px 26px 0 0;overflow:hidden;background:#eef2ff}
.juma-profile-cover img{width:100%;height:100%;object-fit:cover}
.juma-profile-head{display:flex;gap:16px;align-items:center;margin-bottom:14px}
.juma-profile-avatar{width:72px;height:72px;border-radius:22px;overflow:hidden;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;font-size:28px;font-weight:800;box-shadow:0 16px 32px rgba(99,102,241,.25)}
.juma-profile-avatar img{width:100%;height:100%;object-fit:cover}
.juma-profile-head h3{margin:0 0 5px!important;color:#111827!important;font-size:24px!important}
.juma-profile-head p{margin:0!important;color:#64748b!important}
.juma-profile-rating{display:inline-flex;padding:7px 12px;border-radius:999px;background:#fef3c7;color:#92400e;font-weight:800;margin-bottom:14px}
.juma-profile-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:10px 0 16px}
.juma-profile-grid>div,.juma-profile-section{border:1px solid #e5e7eb;background:#f8fafc;border-radius:16px;padding:13px}
.juma-profile-grid span,.juma-profile-section span{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.04em;color:#64748b;font-weight:800;margin-bottom:5px}
.juma-profile-grid strong,.juma-profile-section p{color:#111827;margin:0;font-weight:700;line-height:1.45}
.juma-profile-highlights{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:14px 0}
.juma-profile-highlights div{background:#eef2ff;border-radius:14px;padding:10px;text-align:center;color:#111827}
.juma-profile-highlights strong{display:block;color:#4f46e5;font-size:18px}
.juma-profile-highlights small{display:block;color:#64748b;font-weight:700}
.juma-staff-profile-select{width:100%;justify-content:center;margin-top:8px}
@media(max-width:520px){.juma-profile-grid,.juma-profile-highlights{grid-template-columns:1fr}.juma-profile-head{align-items:flex-start}.em-service-visual{width:46px;height:46px;min-width:46px}}

/* Coupon / discount box */
.juma-coupon-box{margin:18px 0;padding:18px;border-radius:20px;background:rgba(255,255,255,.86);border:1px solid rgba(226,232,240,.9);box-shadow:0 12px 34px rgba(15,23,42,.08);color:#111827!important}
.juma-coupon-box h3{margin:0 0 6px!important;color:#111827!important;font-size:18px!important;font-weight:850!important}
.juma-coupon-row{display:flex;gap:10px;align-items:center;margin-top:12px}
.juma-coupon-row .juma-input{text-transform:uppercase;letter-spacing:.04em;font-weight:800}
.juma-coupon-message{margin-top:10px;padding:10px 12px;border-radius:14px;font-size:13px;font-weight:800}
.juma-coupon-message.success{background:#dcfce7;color:#166534;border:1px solid #bbf7d0}
.juma-coupon-message.error{background:#fee2e2;color:#991b1b;border:1px solid #fecaca}
@media(max-width:520px){.juma-coupon-row{display:grid}.juma-coupon-row .juma-btn{width:100%;justify-content:center}}

/* FAQ page shortcode */
.juma-faq-page{max-width:900px;margin:40px auto;padding:0 18px;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:#111827!important}
.juma-faq-card{background:rgba(255,255,255,.88);border:1px solid rgba(226,232,240,.9);border-radius:26px;padding:28px;box-shadow:0 24px 70px rgba(15,23,42,.14);backdrop-filter:blur(16px)}
.juma-faq-card h2{margin:0 0 20px!important;color:#111827!important;font-size:28px!important;font-weight:900!important;line-height:1.15!important}
.juma-faq-list{display:grid;gap:12px}
.juma-faq-item{background:#fff;border:1px solid #e5e7eb;border-radius:18px;padding:0;overflow:hidden;box-shadow:0 8px 22px rgba(15,23,42,.06)}
.juma-faq-item summary{cursor:pointer;padding:16px 18px;font-weight:850;color:#111827!important;list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px}
.juma-faq-item summary::-webkit-details-marker{display:none}
.juma-faq-item summary:after{content:'+';width:24px;height:24px;border-radius:999px;background:#eef2ff;color:#4f46e5;display:grid;place-items:center;font-weight:900;flex:0 0 auto}
.juma-faq-item[open] summary:after{content:'–'}
.juma-faq-item div{padding:0 18px 18px;color:#475569!important;font-size:15px;line-height:1.65}
.juma-faq-item div p{margin:0 0 10px!important;color:#475569!important}


/* Refund request modal */
.juma-refund-modal-box .juma-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:16px 0}.juma-refund-modal-box label{font-weight:700;color:#111827;font-size:13px}.juma-refund-modal-box input,.juma-refund-modal-box textarea{margin-top:6px}.juma-refund-message{padding:12px 14px;border-radius:14px;margin:12px 0;font-weight:700}.juma-refund-message.success{background:#dcfce7;color:#166534}.juma-refund-message.error{background:#fee2e2;color:#991b1b}@media(max-width:720px){.juma-refund-modal-box .juma-form-grid{grid-template-columns:1fr}}

/* EM Bookings: refund + reschedule helper styles */
.juma-small-note{display:inline-flex;align-items:center;padding:8px 10px;border-radius:999px;background:rgba(148,163,184,.16);color:#475569;font-size:12px;font-weight:700}
.juma-refund-chip{display:inline-flex;margin-top:12px;padding:8px 12px;border-radius:999px;background:rgba(99,102,241,.10);color:#4f46e5;font-size:12px;font-weight:800;border:1px solid rgba(99,102,241,.20)}
.juma-faq-page{max-width:920px;margin:34px auto;padding:0 16px}.juma-faq-card{background:rgba(255,255,255,.78);backdrop-filter:blur(18px);border:1px solid rgba(255,255,255,.65);border-radius:26px;padding:26px;box-shadow:0 18px 55px rgba(15,23,42,.10)}.juma-faq-list{display:grid;gap:12px}.juma-faq-item{background:#fff;border:1px solid rgba(226,232,240,.9);border-radius:16px;padding:14px 16px}.juma-faq-item summary{cursor:pointer;font-weight:800;color:#111827}.juma-faq-item div{color:#475569;margin-top:10px}

/* EM Bookings compact FAQ improvement */
.juma-faq-compact{max-width:760px!important;margin:22px auto 34px!important;padding:0 16px!important}
.juma-faq-compact .juma-faq-card{padding:18px!important;border-radius:22px!important;background:rgba(255,255,255,.82)!important;box-shadow:0 16px 44px rgba(15,23,42,.10)!important;border:1px solid rgba(255,255,255,.75)!important}
.juma-faq-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:12px}
.juma-faq-head h2{font-size:22px!important;margin:0!important;color:#111827!important;line-height:1.2!important}
.juma-faq-head span{font-size:12px;color:#64748b;font-weight:700}
.juma-faq-compact .juma-faq-list{gap:8px!important}
.juma-faq-compact .juma-faq-item{border-radius:14px!important;box-shadow:none!important;border:1px solid #e5e7eb!important;background:rgba(255,255,255,.92)!important}
.juma-faq-compact .juma-faq-item summary{padding:12px 14px!important;font-size:14px!important;color:#111827!important}
.juma-faq-compact .juma-faq-item div{padding:0 14px 12px!important;font-size:13px!important;line-height:1.55!important;color:#475569!important}
@media(max-width:640px){.juma-faq-head{display:block}.juma-faq-head span{display:block;margin-top:4px}}
.juma-refund-chip{display:inline-flex;align-items:center;margin-top:10px;padding:7px 11px;border-radius:999px;background:#eef2ff;color:#4338ca;font-size:12px;font-weight:850;border:1px solid #c7d2fe}
.juma-refund-paid{background:#dcfce7!important;color:#166534!important;border-color:#bbf7d0!important}
.juma-refund-approved{background:#dbeafe!important;color:#1d4ed8!important;border-color:#bfdbfe!important}
.juma-refund-rejected{background:#fee2e2!important;color:#991b1b!important;border-color:#fecaca!important}
.juma-refund-pending{background:#fef3c7!important;color:#92400e!important;border-color:#fde68a!important}

/* EM Bookings FAQ side widget hotfix: compact, non-blocking FAQ display */
.juma-faq-side-widget{position:fixed;right:24px;bottom:96px;z-index:9998;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:#111827!important}
.juma-faq-side-details{position:relative}
.juma-faq-side-details>summary{list-style:none;cursor:pointer;display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.88);border:1px solid rgba(255,255,255,.75);border-radius:999px;padding:10px 14px;box-shadow:0 16px 45px rgba(15,23,42,.16);backdrop-filter:blur(16px);font-weight:900;color:#111827!important}
.juma-faq-side-details>summary::-webkit-details-marker{display:none}
.juma-faq-side-icon{width:24px;height:24px;border-radius:999px;display:grid;place-items:center;background:#eef2ff;color:#4f46e5;font-weight:900}
.juma-faq-side-panel{position:absolute;right:0;bottom:54px;width:min(340px,calc(100vw - 32px));max-height:420px;overflow:auto;background:rgba(255,255,255,.96);border:1px solid rgba(226,232,240,.95);border-radius:20px;padding:14px;box-shadow:0 24px 70px rgba(15,23,42,.22);backdrop-filter:blur(18px)}
.juma-faq-side-panel h3{margin:0 0 10px!important;font-size:16px!important;font-weight:900!important;color:#111827!important;line-height:1.2!important}
.juma-faq-side-item{border:1px solid #e5e7eb;border-radius:14px;background:#fff;margin:8px 0;overflow:hidden}
.juma-faq-side-item>summary{list-style:none;cursor:pointer;padding:11px 12px!important;font-size:13px!important;font-weight:850!important;color:#111827!important;display:flex;justify-content:space-between;gap:10px;line-height:1.35!important}
.juma-faq-side-item>summary::-webkit-details-marker{display:none}
.juma-faq-side-item>summary:after{content:'+';color:#4f46e5;font-weight:900;flex:0 0 auto}
.juma-faq-side-item[open]>summary:after{content:'–'}
.juma-faq-side-item div{padding:0 12px 12px!important;font-size:12.5px!important;line-height:1.55!important;color:#475569!important}
.juma-faq-side-item div p{margin:0 0 8px!important;color:#475569!important}
@media(max-width:760px){.juma-faq-side-widget{right:16px;bottom:90px}.juma-faq-side-panel{width:calc(100vw - 32px)}}

/* Cancellation warning modal */
.juma-cancel-warning-box{
  max-width:520px;
  text-align:center;
  padding:34px 32px!important;
}
.juma-cancel-warning-icon{
  width:58px;height:58px;border-radius:50%;
  margin:0 auto 14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#fff7ed,#fed7aa);
  color:#c2410c;
  font-size:28px;font-weight:900;
  border:1px solid #fdba74;
  box-shadow:0 12px 28px rgba(251,146,60,.22);
}
.juma-cancel-warning-box h3{
  color:#111827!important;
  margin:0 0 10px!important;
  font-size:24px!important;
  line-height:1.25!important;
}
.juma-refund-policy-mini{
  margin:18px auto 20px;
  padding:14px 16px;
  background:rgba(255,247,237,.8);
  border:1px solid #fed7aa;
  border-radius:16px;
  color:#7c2d12;
  font-size:14px;
  text-align:left;
}
.juma-cancel-warning-box .juma-reschedule-actions{
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Special late refund request modal */
.juma-special-refund-form{margin-top:16px;text-align:left;background:rgba(248,250,252,.88);border:1px solid rgba(226,232,240,.9);border-radius:18px;padding:16px}
.juma-special-refund-form label{display:block;font-weight:700;color:#0f172a;margin-bottom:12px}
.juma-special-refund-form textarea,.juma-special-refund-form input{margin-top:7px}
.juma-late-cancel-message{margin:12px 0;padding:10px 12px;border-radius:12px;font-weight:700}
.juma-late-cancel-message.error{background:#fee2e2;color:#991b1b;border:1px solid #fecaca}
.juma-late-cancel-message.success{background:#dcfce7;color:#166534;border:1px solid #bbf7d0}
.juma-refund-special_pending{background:#fff7ed!important;color:#9a3412!important;border:1px solid #fed7aa!important}

/* EM Bookings: customer profile photo, favorite staff, and booking notes */
.juma-profile-header{display:flex;align-items:center;justify-content:space-between;gap:18px}
.juma-profile-main{display:flex;align-items:center;gap:14px}
.juma-customer-avatar-large{width:64px;height:64px;border-radius:22px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;font-weight:900;font-size:24px;box-shadow:0 12px 30px rgba(99,102,241,.22);overflow:hidden;flex:none}
.juma-customer-avatar-large.has-photo{background:#fff}
.juma-customer-avatar-large img{width:100%;height:100%;object-fit:cover;display:block}
.juma-profile-photo-panel{max-width:900px;margin:14px auto 22px;background:rgba(255,255,255,.78);border:1px solid rgba(255,255,255,.75);box-shadow:0 18px 45px rgba(15,23,42,.12);border-radius:22px;padding:18px;backdrop-filter:blur(14px)}
.juma-profile-photo-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap}.juma-profile-photo-row input[type=file]{max-width:360px}.juma-profile-photo-message{margin-top:10px;padding:10px 12px;border-radius:14px;font-weight:700}.juma-profile-photo-message.success{background:#dcfce7;color:#166534}.juma-profile-photo-message.error{background:#fee2e2;color:#991b1b}
.juma-staff-option.is-favorite{border-color:#f59e0b!important;background:linear-gradient(135deg,rgba(255,251,235,.9),rgba(255,255,255,.82))!important;box-shadow:0 14px 30px rgba(245,158,11,.12)}
.juma-staff-actions{margin-left:auto;display:flex;align-items:center;gap:6px}.juma-staff-fav-btn,.juma-staff-info-btn{border:1px solid #e5e7eb;background:#fff;border-radius:999px;padding:6px 10px;font-size:12px;font-weight:800;cursor:pointer;color:#4f46e5}.juma-staff-fav-btn:hover,.juma-staff-info-btn:hover{background:#eef2ff}.juma-staff-option.is-favorite .juma-staff-fav-btn{background:#fef3c7;color:#92400e;border-color:#fde68a}
.juma-booking-note{margin-top:10px;background:#f8fafc;border:1px solid #e5e7eb;color:#334155;border-radius:14px;padding:9px 12px;font-size:13px}.juma-booking-note strong{color:#111827}
@media(max-width:640px){.juma-profile-header{align-items:flex-start;flex-direction:column}.juma-staff-actions{width:100%;justify-content:flex-start}.juma-staff-option{flex-wrap:wrap}}
