/* ============================================
   CLARO CLINIC — Booking Modal
   Pixel-perfect per Figma nodes 20:325/326/328/331
   Exact tokens extracted from figma_6nodes.json
   ============================================ */

/* ── COLOUR TOKENS (exact from Figma) ──────── */
/*
  Modal bg:       #FFFFFF
  Modal body bg:  #F7F3EE
  Card bg:        #FFFFFF
  Card icon bg:   #F3DFD1 / #F2DFD0
  Body text:      #393834
  Muted text:     #666460
  Faint text:     #82807B
  Accent green:   #7DA08F
  Selected day:   #6A5C51
  Selected slot:  #F3DFD1
  Unsel slot bg:  #FDF9F5
  Input bg:       #FDF9F5
  Close btn bg:   #F7F3EE (stap 1/2) / #FDF9F5 (succes)
  Progress track: #F3DFD1
  Progress fill:  #7DA08F (107/320 = 33% for step 1)
  CTA btn bg:     #7DA08F
  CTA btn text:   #FFF6F1
  Back btn text:  #666460
*/

/* ── OVERLAY ──────────────────────────────── */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(57, 56, 52, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
}
.booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ── MODAL SHELL ──────────────────────────── */
.booking-modal {
  background: #FFFFFF;
  border-radius: 48px;
  width: 100%;
  max-width: 768px;       /* Figma: 768px for step 1/2 */
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              max-width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-radius 0.3s;
  box-shadow:
    0 24px 48px rgba(57, 56, 52, 0.12),
    0 4px 16px rgba(57, 56, 52, 0.06);
}
.booking-modal.step-3 {
  max-width: 520px;  /* Figma stap 3: 520px */
  border-radius: 40px;
}
.booking-modal.step-success {
  max-width: 512px;  /* Figma succes: 512px */
  border-radius: 48px;
}
.booking-overlay.is-open .booking-modal {
  transform: translateY(0) scale(1);
}

/* ── MODAL HEADER ─────────────────────────── */
.bm-header {
  background: #FFFFFF;
  padding: 32px 40px 24px 40px;
  position: sticky;
  top: 0;
  z-index: 2;
  border-radius: 48px 48px 0 0;
}

/* Progress indicator */
.bm-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.bm-step-label {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666460;
}

/* Close button — Figma: 40x40, r=9999, fill=#F7F3EE, icon fill=#393834 12x12 */
.bm-close {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #F7F3EE;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}
.bm-close:hover { background: #EEE9E1; }

/* Progress bar — Figma: 320x12, r=9999, track=#F3DFD1, fill=#7DA08F */
.bm-progress-track {
  height: 12px;
  border-radius: 9999px;
  background: #F3DFD1;
  overflow: hidden;
  margin-bottom: 12px;
}
.bm-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: #7DA08F;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Header title — Figma: Plus Jakarta Sans w700 38px/40px #7DA08F */
.bm-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #7DA08F;
  letter-spacing: -0.01em;
  margin: 0 0 0 0;
}

/* ── MODAL BODY ───────────────────────────── */
/* Figma MCP: fill_WZQNC9 = #F7F3EE (Modal Body / Grid), fill_TOVUC0 = #F7F3EE */
.bm-body {
  background: #F7F3EE;
  padding: 24px 40px 40px 40px;
  margin: 0;
}

/* ── STEP 1: Service cards ────────────────── */
/* Figma: 2-col grid, gap between cards — all 4 cards equal size */
.bm-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}

/* Card — fixed height so all 4 are exactly equal */
.bm-service-card {
  background: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 32px;
  padding: 24px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 220px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.bm-service-card:hover {
  border-color: rgba(125, 160, 143, 0.4);
  transform: translateY(-2px);
}
.bm-service-card.is-selected {
  border-color: #7DA08F;
  background: rgba(125, 160, 143, 0.10);
  box-shadow: 0 4px 20px rgba(125, 160, 143, 0.2);
}
/* Checkmark badge on selected card */
.bm-service-card.is-selected::before {
  content: '\2713';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: #7DA08F;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: bm-check-pop 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes bm-check-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Card gradient bottom — Figma MCP: fill_BHQAXJ = linear-gradient(90deg, #6A5C51, #5D4F45), opacity=0 default */
.bm-service-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #6A5C51 0%, #5D4F45 100%);
  border-radius: 0 0 30px 30px;
  opacity: 0;
  transition: opacity 0.2s;
}
.bm-service-card:hover::after {
  opacity: 0.3;
}
.bm-service-card.is-selected::after {
  opacity: 1;
}

/* Icon bg — 56x56 (compact for fixed-height card), r=9999, fill=#F3DFD1 */
.bm-service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #F3DFD1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
/* Alternate terracotta: #F2DFD0 for cards 2+4 */
.bm-service-card:nth-child(even) .bm-service-icon-wrap {
  background: #F2DFD0;
}

/* Card title — Figma Modal H3: Plus Jakarta Sans w600 21px/28px #393834 */
.bm-service-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  color: #393834;
  margin-bottom: 6px;
}

/* Card desc — Figma: Public Sans w400 14px/20px #666460 */
.bm-service-desc {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666460;
}

/* CTA — step 1 next (full width, centered via parent) */
.bm-step-footer--centered {
  justify-content: center;
}
.bm-step1-next {
  width: 100%;
  justify-content: center;
}

/* ── STEP 2: Calendar + Time ─────────────── */
/* Figma: 2-col layout, left=calendar, right=time slots */
.bm-step2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Calendar container */
.bm-calendar {
  display: flex;
  flex-direction: column;
}

/* Calendar header — Figma: month label Plus Jakarta Sans, nav arrows */
.bm-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
/* Month name — Figma: Plus Jakarta Sans w600 16px / #393834 (inferred) */
.bm-cal-month {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #393834;
}
/* Nav arrows — Figma: small circular buttons */
.bm-cal-nav {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1px solid rgba(57, 56, 52, 0.15);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666460;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.bm-cal-nav:hover { background: #7DA08F; color: #FFF6F1; border-color: transparent; }

/* Weekday headers — Figma: Public Sans w600 12px/16px #666460 */
.bm-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.bm-cal-weekday {
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #666460;
}

/* Day grid — Figma: 7 cols, each day = 39x39, r=9999 */
.bm-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.bm-cal-day {
  width: 39px;
  height: 39px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #393834;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.bm-cal-day:hover {
  background: rgba(125, 160, 143, 0.15);
}
/* Selected day — Figma: fill=#6A5C51, text=#FFF6F1, w600 */
.bm-cal-day.is-selected {
  background: #6A5C51;
  color: #FFF6F1;
  font-weight: 600;
}
.bm-cal-day.is-empty {
  cursor: default;
  pointer-events: none;
}
.bm-cal-day.is-past {
  color: #666460;
  opacity: 0.4;
  pointer-events: none;
}
.bm-cal-day.is-today {
  color: #7DA08F;
  font-weight: 600;
}

/* ── TIME SLOTS ─────────────────────────── */
.bm-times-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 28px;
  color: #393834;
  margin-bottom: 16px;
}

/* Slot container — Figma: gap=16px */
.bm-times-slots {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Time slot — clock icon prefix, NO radio button */
/* Figma: icon left = clock SVG, fill=#FDF9F5, selected=#F3DFD1 */
.bm-time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 48px;
  background: #FDF9F5;
  border: 1.5px solid transparent;
  cursor: pointer;
  height: 60px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  width: 100%;
}
.bm-time-slot:hover {
  border-color: rgba(125, 160, 143, 0.4);
}
.bm-time-slot.is-selected {
  background: #F3DFD1;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(106, 92, 81, 0.12);
}

/* Time slot left side layout */
.bm-time-slot-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Clock icon in time slot */
.bm-time-clock {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #82807B;
  transition: color 0.15s;
}
.bm-time-slot.is-selected .bm-time-clock {
  color: #6A5C51;
}

/* Selected checkmark circle (replaces clock on selection) */
.bm-time-check-circle {
  display: none;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: #6A5C51;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bm-time-slot.is-selected .bm-time-check-circle {
  display: flex;
}
.bm-time-slot.is-selected .bm-time-clock-wrap { display: none; }

/* Time text — Figma: Public Sans w400 18px/28px #393834 */
.bm-time-text {
  font-family: 'Public Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #393834;
}
/* Selected time is bold */
.bm-time-slot.is-selected .bm-time-text {
  font-weight: 500;
}

/* Period label — Figma: Public Sans w400 14px/20px #666460 */
.bm-time-period {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666460;
}

/* Step 2 footer */
.bm-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

/* Back button — Figma MCP: fill_6RP003 = #6A5C51 (Terug tekst), Public Sans w600 16px/24px */
.bm-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #6A5C51;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.bm-back-btn:hover { color: #393834; }

/* Next button — Figma: fill=#7DA08F, r=48, pad=16px 32px, Public Sans w500 16px/24px #FFF7F2 */
.bm-next-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #7DA08F;
  color: #FFF7F2;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.18s, background 0.18s;
}
.bm-next-btn.is-ready {
  opacity: 1;
  pointer-events: all;
}
.bm-next-btn.is-ready:hover {
  transform: translateY(-2px);
  background: #6A9280;
}

/* ── STEP 3: Form ─────────────────────────── */
/* Figma: modal w=520, r=40, header pad implied */
.bm-form-subtitle {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #666460;
  margin: 8px 0 0 0;
}

/* Form — Figma: gap=24px */
.bm-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

/* Input group — Figma: gap=8px */
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Label — Figma: Public Sans w500 14px/21px #393834 */
.bm-field label {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #393834;
}

/* Input — Figma: fill=#FDF9F5, r=48, pad=18px 20px 19px 20px, h=56 */
.bm-input {
  height: 56px;
  padding: 18px 20px 19px 20px;
  border-radius: 48px;
  border: 1.5px solid transparent;
  background: #FDF9F5;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #393834;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.bm-input::placeholder {
  color: #82807B;
}
.bm-input:focus {
  border-color: #7DA08F;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(125, 160, 143, 0.1);
}

/* Checkbox — Figma: pad=8px 0 0 0 (Checkbox:margin), gap=16px */
.bm-privacy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}
.bm-privacy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #7DA08F;
  cursor: pointer;
}
/* Privacy text — Figma: Public Sans w400 15px/24.38px #666460 */
.bm-privacy label {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #666460;
  cursor: pointer;
}

/* Actions row — Figma: pad-top=32px, gap between back+submit */
.bm-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

/* Submit button — Figma: fill=#7DA08F, r=48, pad=16px 32px, w500 16px/24px #FFF7F2 */
.bm-submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #7DA08F;
  color: #FFF7F2;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s;
}
.bm-submit-btn:hover { transform: translateY(-2px); background: #6A9280; }

/* ── SUCCESS STATE ────────────────────────── */
.bm-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 56px 56px;
  position: relative;
}
.bm-success.is-active {
  display: flex;
}

/* Close button top-right — Figma: fill=#FDF9F5, r=9999, 40x40 */
.bm-success-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #FDF9F5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.bm-success-close:hover { background: #EEE9E0; }



/* Success icon — Figma MCP: fill_4AEEUK = #5D4F45 (icon vector), wrapper is #F3DFD1 96x96 */
/* De donkere cirkel ZIT erin als icon, de outer wrapper is de peach glow */
.bm-success-icon-outer {
  width: 96px;
  height: 96px;
  border-radius: 9999px;
  background: #F3DFD1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 16px;
  margin-bottom: 48px;
  flex-shrink: 0;
}
.bm-success-icon-outer::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 9999px;
  background: #F3DFD1;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%       { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}
.bm-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: #5D4F45;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(93, 79, 69, 0.3);
}

/* Succes! — Figma: Plus Jakarta Sans w700 38px/48px #7DA08F */
.bm-success-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  color: #7DA08F;
  margin: 0 0 24px 0;
}

/* Body text — Figma: Public Sans w400 16px/29.25px #666460 */
.bm-success-body {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29.25px;
  color: #666460;
  max-width: 331px;
  margin: 0 0 0 0;
}

/* Note text — Figma: Public Sans w400 14px/20px #82807B, pad=16px 16px 0 16px */
.bm-success-note {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #82807B;
  max-width: 335px;
  padding: 16px 16px 0 16px;
  margin-bottom: 64px;
}

/* Homepage CTA — Figma: fill=#7DA08F, r=48, pad=20px 32px, w500 16px/28px #FFF6F1, w=400 */
.bm-success-home-btn {
  width: 400px;
  max-width: 100%;
  padding: 20px 32px;
  background: #7DA08F;
  color: #FFF6F1;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s;
}
.bm-success-home-btn:hover { transform: translateY(-2px); background: #6A9280; }

/* ── STEP PANEL MANAGEMENT ────────────────── */
.bm-step { display: none; }
.bm-step.is-active { display: block; }

/* Input field error state */
.bm-input.has-error {
  border-color: #E07A70;
  background: #FFF8F7;
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%  { transform: translateX(-6px); }
  60%  { transform: translateX(6px); }
  80%  { transform: translateX(-3px); }
}

/* ── CLOSE CONFIRMATION OVERLAY ─────────── */
.bm-confirm-overlay {
  display: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(249, 246, 240, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  align-items: center;
  justify-content: center;
}
.bm-confirm-overlay.is-visible {
  display: flex;
  animation: bm-fade-in 0.2s ease;
}
@keyframes bm-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.bm-confirm-box {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px 36px 36px;
  box-shadow: 0 8px 40px rgba(106, 92, 81, 0.16);
  text-align: center;
  max-width: 320px;
  width: 90%;
  animation: bm-slide-up 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes bm-slide-up {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.bm-confirm-msg {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #393834;
  margin: 0 0 28px;
}
.bm-confirm-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bm-confirm-cancel {
  padding: 14px 24px;
  border-radius: 48px;
  border: 1.5px solid #C5BFB8;
  background: transparent;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #393834;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.bm-confirm-cancel:hover {
  background: #F5F1EC;
  border-color: #7DA08F;
}
.bm-confirm-ok {
  padding: 14px 24px;
  border-radius: 48px;
  border: none;
  background: #E07A70;
  font-family: 'Public Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.bm-confirm-ok:hover {
  background: #C96A60;
  transform: translateY(-1px);
}
