/* ─── 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;}
}
