/* ═══════════════════════════════════════════════════════
   AYURSPA ROYAL ANCIENT GOLD THEME
   Elevating the massage booking experience to a luxury ritual.
   ═══════════════════════════════════════════════════════ */

/* Import Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Global Wrapper Adjustments */
#mb-booking-wrap {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: #2c2a20 !important;
  background: #f5efe0 !important; /* Premium royal beige-gold parchment background */
  border: 1px solid rgba(197, 162, 93, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(30, 58, 47, 0.07), 0 0 30px rgba(197, 162, 93, 0.04) !important;
  position: relative;
}

/* Add custom paper grain/texture overlay subtle vibe */
#mb-booking-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  background-image: radial-gradient(rgba(197, 162, 93, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Ensure all core child elements sit above the background overlay */
.mb-step-indicator,
.mb-step {
  position: relative;
  z-index: 1;
}

/* ── Typography & Headings ───────────────────────────── */
#mb-booking-wrap .mb-step-header h2.mb-step-heading,
#mb-booking-wrap h2.mb-step-heading,
#mb-booking-wrap .mb-step-heading,
.mb-step-heading {
  font-family: 'Cinzel', Georgia, serif !important;
  font-size: clamp(20px, 4.2vw, 24px) !important; /* Highly responsive royal heading size */
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.6px !important;
  color: #1e3a2f !important; /* Royal dark green */
  text-shadow: 0.5px 0.5px 0px rgba(197, 162, 93, 0.45) !important;
  margin: 0 0 8px 0 !important;
}

.mb-step-subtext {
  font-family: 'Outfit', sans-serif !important;
  color: #827866 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.5px !important;
  font-weight: 400 !important;
}

/* Ancient decorative gold flourish under titles */
.mb-step-header::after {
  content: '';
  display: block;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a25d 50%, transparent) !important;
  margin: 16px auto 0 !important;
}

/* ── Step Indicators ─────────────────────────────────── */
.mb-dot-circle {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  border: 2px solid #c5a25d !important; /* Gold metal ring */
  color: #9a9282 !important;
  background: #fdfcf7 !important;
  box-shadow: inset 0 0 5px rgba(197, 162, 93, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.mb-step-dot.active .mb-dot-circle {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important; /* Emerald Velvet */
  border-color: #c5a25d !important;
  color: #ebd28e !important; /* Sparkling Gold text */
  box-shadow: 0 0 15px rgba(197, 162, 93, 0.4), 0 4px 14px rgba(30, 58, 47, 0.2) !important;
  transform: scale(1.08) !important;
}

.mb-step-dot.completed .mb-dot-circle {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important;
  border-color: #ebd28e !important;
  color: #ebd28e !important;
  box-shadow: 0 4px 10px rgba(30, 58, 47, 0.15) !important;
}

.mb-dot-label {
  font-family: 'Cinzel', serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  color: #9a9282 !important;
}

.mb-step-dot.active .mb-dot-label {
  color: #1e3a2f !important;
  font-weight: 700 !important;
}

.mb-step-dot.completed .mb-dot-label {
  color: #c5a25d !important;
}

.mb-step-connector {
  background: rgba(197, 162, 93, 0.2) !important;
}

.mb-step-connector.done {
  background: linear-gradient(90deg, #c5a25d, #ebd28e) !important; /* Gold wire line */
}

/* ── Service & Location Cards (Royal Gold Touches) ───── */
.mb-service-card,
.mb-location-card {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #faf3e0 0%, #f4e3be 100%) !important; /* Rich Luxury Golden Parchment */
  border: 1px solid rgba(197, 162, 93, 0.45) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(197, 162, 93, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* Elegant Shimmer Sweep Effect */
.mb-service-card::after,
.mb-location-card::after,
.mb-pay-card::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 80%; height: 100%;
  background: linear-gradient(
    95deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 239, 190, 0.35) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 239, 190, 0.35) 70%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  transform: skewX(-22deg) !important;
  transition: none !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.mb-service-card:hover::after,
.mb-location-card:hover::after,
.mb-pay-card:hover::after {
  left: 150% !important;
  transition: left 2.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* Hover State */
.mb-service-card:hover,
.mb-location-card:hover {
  border-color: #c5a25d !important;
  background: linear-gradient(135deg, #fffcf5 0%, #f7ebd0 100%) !important; /* Glowing warm gold cream */
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(197, 162, 93, 0.22), 0 0 1px #c5a25d !important;
}

/* Selected Active State Animation */
@keyframes goldPulse {
  0% { box-shadow: 0 8px 24px rgba(158, 125, 59, 0.25), inset 0 0 15px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 12px 36px rgba(158, 125, 59, 0.45), inset 0 0 22px rgba(255, 255, 255, 0.5); }
  100% { box-shadow: 0 8px 24px rgba(158, 125, 59, 0.25), inset 0 0 15px rgba(255, 255, 255, 0.3); }
}

.mb-service-card.selected,
.mb-location-card.active {
  border: 2px solid #9e7d3b !important; /* Rich antique gold frame */
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba%28158,125,59,0.15%29' stroke-width='1'/%3E%3C/svg%3E"), 
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0px, rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 6px),
    linear-gradient(135deg, #f7e7c4 0%, #ecd6a2 50%, #d8ba73 100%) !important; /* Textured hammered gold foil & royal lattice */
  animation: goldPulse 4s infinite ease-in-out !important;
}

/* Card Elements Typography */
.mb-card-name,
.mb-loc-name {
  font-family: 'Cinzel', serif !important;
  font-weight: 800 !important;
  font-size: 15.5px !important;
  background: linear-gradient(135deg, #0d2119 0%, #204e3b 100%) !important; /* Luxury deep green gradient */
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  letter-spacing: 0.3px !important;
  line-height: 1.35 !important;
}

.mb-card-desc,
.mb-loc-desc {
  font-family: 'Outfit', sans-serif !important;
  color: #173629 !important; /* Deep Pine Green for high-end styling and legibility */
  font-size: 13.2px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.mb-card-from-price {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  color: #7b5c1b !important; /* Rich Dark Gold Price */
  font-size: 14.5px !important;
  letter-spacing: 0.3px !important;
}

/* Selected Card text accentuation */
.mb-service-card.selected .mb-card-name,
.mb-location-card.active .mb-loc-name {
  background: linear-gradient(135deg, #050f0b 0%, #0d221a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  text-shadow: 0.1px 0.1px 0px rgba(255,255,255,0.2) !important;
}

/* Pills inside cards */
.mb-card-pill,
.mb-card-duration,
.mb-loc-price {
  background: linear-gradient(135deg, #ebd49f 0%, #b08c40 100%) !important;
  color: #0d2119 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  border: 1px solid #9e7d3b !important;
  font-size: 11px !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 2px 6px rgba(158, 125, 59, 0.15) !important;
}


/* Checkboxes / Radio indicators */
.mb-card-check,
.mb-loc-check {
  border: 2px solid rgba(197, 162, 93, 0.5) !important;
  background: transparent !important;
  color: transparent !important;
  transition: all 0.3s ease !important;
}

.mb-service-card.selected .mb-card-check,
.mb-location-card.active .mb-loc-check {
  background: linear-gradient(135deg, #1e3a2f 0%, #0d2119 100%) !important; /* Deep Green circle */
  border-color: #c5a25d !important; /* Gold ring */
  color: #ebd28e !important; /* Gold check icon */
  box-shadow: 0 0 8px rgba(197, 162, 93, 0.4) !important;
}
/* ── Preference Icons (Location & Payment wrappers) ── */
#mb-booking-wrap .mb-loc-icon,
#mb-booking-wrap .mb-pay-icon {
  background: linear-gradient(135deg, #ebd49f 0%, #b08c40 100%) !important; /* Gold circle backdrop */
  border: 1.5px solid #9e7d3b !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 3px 8px rgba(158, 125, 59, 0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#mb-booking-wrap .mb-loc-icon svg,
#mb-booking-wrap .mb-pay-icon svg {
  color: #0d2119 !important; /* Force Dark Green on SVGs */
}

/* Selected state counter-contrast */
#mb-booking-wrap .mb-location-card.active .mb-loc-icon,
#mb-booking-wrap .mb-pay-card.selected .mb-pay-icon {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important; /* Deep Green Velvet backdrop inside selected */
  border-color: #ebd28e !important;
  box-shadow: 0 4px 10px rgba(30, 58, 47, 0.25) !important;
}

#mb-booking-wrap .mb-location-card.active .mb-loc-icon svg,
#mb-booking-wrap .mb-pay-card.selected .mb-pay-icon svg {
  color: #ebd28e !important; /* Force Glittering Gold on selected SVGs */
}

/* ── Custom Select Dropdowns ─────────────────────────── */
#mb-booking-wrap .mb-select-styled {
  font-family: 'Outfit', sans-serif !important;
  background: #fdfcf7 !important;
  border: 1.5px solid rgba(197, 162, 93, 0.35) !important;
  color: #4a4538 !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
}

#mb-booking-wrap .mb-select-styled:focus {
  border-color: #c5a25d !important;
  box-shadow: 0 0 0 3px rgba(197, 162, 93, 0.15) !important;
}

#mb-variant-wrap {
  background: #faf6ed !important;
  border: 1px solid rgba(197, 162, 93, 0.25) !important;
  border-radius: 12px !important;
}

.mb-variant-heading {
  font-family: 'Cinzel', serif !important;
  color: #826227 !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

/* ── Date & Time Calendar Styles ────────────────────── */
.mb-month-nav {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  color: #1e3a2f !important;
  letter-spacing: 0.5px !important;
}

.mb-nav-btn {
  background: #fdfcf7 !important;
  border: 1.5px solid rgba(197, 162, 93, 0.3) !important;
  color: #826227 !important;
  border-radius: 8px !important;
}

.mb-nav-btn:hover {
  color: #1e3a2f !important;
  border-color: #c5a25d !important;
  background: #fff !important;
}

.mb-dow-row {
  font-family: 'Cinzel', serif !important;
  color: #826227 !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.mb-cal-cell {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
}

.mb-cal-cell:not(.mb-cal-past):not(.mb-cal-empty) {
  background: #fdfcf7 !important;
  border-color: rgba(197, 162, 93, 0.22) !important;
}

.mb-cal-cell:not(.mb-cal-past):not(.mb-cal-empty):hover {
  background: #f5ede0 !important;
  border-color: #c5a25d !important;
}

.mb-cal-today {
  background: #e9f2eb !important; /* Very soft green */
  border-color: #c5a25d !important; /* Gold ring today */
  color: #1e3a2f !important;
  font-weight: 700 !important;
}

#mb-booking-wrap .mb-calendar-grid .mb-cal-cell.mb-cal-selected,
#mb-booking-wrap .mb-calendar-grid .mb-cal-selected,
#mb-booking-wrap .mb-cal-cell.mb-cal-selected,
.mb-calendar-grid .mb-cal-cell.mb-cal-selected,
.mb-cal-selected {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important; /* Velvet Green */
  color: #ebd28e !important; /* Gold text */
  border-color: #c5a25d !important; /* Gold ring */
  font-weight: 700 !important;
  box-shadow: 0 6px 16px rgba(197, 162, 93, 0.35) !important;
  transform: scale(1.08) !important;
}

/* Time slots label & range */
.mb-slots-label {
  font-family: 'Cinzel', serif !important;
  color: #1e3a2f !important;
}

.mb-slots-range {
  font-family: 'Outfit', sans-serif !important;
  color: #826227 !important;
  font-weight: 600 !important;
}

/* Time slots grid and items */
.mb-slots-grid .mb-slot {
  background: #fdfcf7 !important;
  border: 1.5px solid rgba(197, 162, 93, 0.3) !important;
  color: #4a4538 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
}

.mb-slots-grid .mb-slot:not(.mb-slot-active):hover {
  border-color: #c5a25d !important;
  background: #fff !important;
  color: #1e3a2f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 12px rgba(197, 162, 93, 0.12) !important;
}

#mb-booking-wrap .mb-slots-grid .mb-slot.mb-slot-active,
#mb-booking-wrap .mb-slots-grid .mb-slot-active,
#mb-booking-wrap .mb-slot.mb-slot-active,
.mb-slots-grid .mb-slot.mb-slot-active,
.mb-slot-active {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important;
  color: #ebd28e !important;
  border-color: #c5a25d !important;
  box-shadow: 0 6px 16px rgba(197, 162, 93, 0.3) !important;
  transform: translateY(-2px) scale(1.03) !important;
}

/* ── Primary Action Buttons (Metallic Royal Gold) ────── */
#mb-booking-wrap button.mb-cta-btn,
#mb-booking-wrap input[type="button"].mb-cta-btn,
#mb-booking-wrap input[type="submit"].mb-cta-btn,
#mb-booking-wrap a.mb-cta-btn,
#mb-booking-wrap .mb-cta-btn {
  background: linear-gradient(135deg, #c5a25d 0%, #e2c279 50%, #9e7d3b 100%) !important;
  color: #1e3a2f !important; /* Deep Green typography for contrast */
  border: 1px solid rgba(197, 162, 93, 0.4) !important;
  border-radius: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 15px rgba(197, 162, 93, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

#mb-booking-wrap button.mb-cta-btn:hover:not(:disabled),
#mb-booking-wrap input[type="button"].mb-cta-btn:hover:not(:disabled),
#mb-booking-wrap input[type="submit"].mb-cta-btn:hover:not(:disabled),
#mb-booking-wrap a.mb-cta-btn:hover:not(:disabled),
#mb-booking-wrap .mb-cta-btn:hover:not(:disabled),
#mb-booking-wrap button.mb-cta-btn:active,
#mb-booking-wrap button.mb-cta-btn:focus,
#mb-booking-wrap .mb-cta-btn:active,
#mb-booking-wrap .mb-cta-btn:focus,
#mb-booking-wrap .mb-cta-btn.active {
  background: linear-gradient(135deg, #d2b46e 0%, #ebd395 50%, #b2904d 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(197, 162, 93, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

#mb-booking-wrap button.mb-cta-btn:disabled,
#mb-booking-wrap input[type="button"].mb-cta-btn:disabled,
#mb-booking-wrap input[type="submit"].mb-cta-btn:disabled,
#mb-booking-wrap .mb-cta-btn:disabled,
#mb-booking-wrap button.mb-cta-btn[disabled],
#mb-booking-wrap .mb-cta-btn[disabled] {
  background: #e6e2da !important;
  color: #a39f96 !important;
  border-color: #d8d4cc !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}

#mb-booking-wrap .mb-back-link {
  font-family: 'Outfit', sans-serif !important;
  color: #827866 !important;
  font-weight: 600 !important;
  transition: color 0.25s ease !important;
}

#mb-booking-wrap .mb-back-link:hover {
  color: #1e3a2f !important;
}

/* ── Summary & Sidebar Panels (Golden Framing) ───────── */
.mb-summary-card,
.mb-confirm-sidebar {
  background: linear-gradient(135deg, #fdfbf7 0%, #faf6ec 100%) !important;
  border: 1px solid rgba(197, 162, 93, 0.45) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 25px rgba(197, 162, 93, 0.07), inset 0 0 12px rgba(197, 162, 93, 0.04) !important;
}

.mb-sidebar-label {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  color: #1e3a2f !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
}

.mb-summary-row {
  font-family: 'Outfit', sans-serif !important;
  color: #645e52 !important;
}

.mb-summary-row strong,
.mb-confirm-service,
.mb-confirm-date,
.mb-confirm-type {
  color: #1e3a2f !important;
  font-weight: 600 !important;
}

.mb-summary-sep,
.mb-sidebar-divider {
  border-top: 1px dashed rgba(197, 162, 93, 0.4) !important;
}

.mb-summary-total,
.mb-sidebar-total {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
}

.mb-summary-total strong,
.mb-confirm-price {
  color: #b08c40 !important; /* Gold Price Highlight */
  font-family: 'Cinzel', serif !important;
  font-size: 19.5px !important;
  font-weight: 800 !important;
  text-shadow: 0.3px 0.3px 0px rgba(197,162,93,0.2) !important;
}

.mb-summary-note {
  font-family: 'Outfit', sans-serif !important;
  color: #9a9282 !important;
}

/* ── Client Details Form Fields ──────────────────────── */
.mb-field label {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  color: #2c2a20 !important;
  letter-spacing: 0.2px !important;
}

#mb-booking-wrap .mb-field input,
#mb-booking-wrap .mb-field textarea {
  font-family: 'Outfit', sans-serif !important;
  background: #fdfdfb !important;
  border: 1.5px solid rgba(197, 162, 93, 0.3) !important;
  color: #4a4538 !important;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

#mb-booking-wrap .mb-field input:focus,
#mb-booking-wrap .mb-field textarea:focus {
  border-color: #c5a25d !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(197, 162, 93, 0.15) !important;
}

/* Banners, Alerts, Notices (Softened Gold Alert style) */
.mb-home-banner,
.mb-home-charge-notice,
.mb-location-note {
  background: #fbf8f0 !important;
  border: 1px solid rgba(197, 162, 93, 0.35) !important;
  color: #826227 !important;
  border-radius: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
}

.mb-location-note svg,
.mb-home-banner svg,
.mb-home-charge-notice svg {
  color: #c5a25d !important;
}

/* Login recommendation banner */
#mb-login-banner {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important;
  border: 1px solid #c5a25d !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 15px rgba(197, 162, 93, 0.15) !important;
}

.mb-login-banner-inner {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #ebd28e !important;
  font-family: 'Outfit', sans-serif !important;
}

.mb-login-banner-icon svg {
  color: #c5a25d !important;
}

.mb-login-banner-text strong {
  font-family: 'Cinzel', serif !important;
  color: #fff !important;
}

#mb-booking-wrap .mb-login-banner-cta,
#mb-booking-wrap a.mb-login-banner-cta {
  background: linear-gradient(135deg, #c5a25d, #9e7d3b) !important;
  color: #1e3a2f !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  padding: 6px 14px !important;
  transition: all 0.25s ease !important;
}

#mb-booking-wrap .mb-login-banner-cta:hover,
#mb-booking-wrap a.mb-login-banner-cta:hover {
  background: #fff !important;
  color: #1e3a2f !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

.mb-login-banner-close svg {
  color: rgba(235, 210, 142, 0.6) !important;
}

.mb-login-banner-close:hover svg {
  color: #fff !important;
}

/* Apply Gift Card section styling */
#mb-booking-wrap .mb-gift-redemption-container {
  border: 1px solid rgba(197, 162, 93, 0.45) !important;
  background: linear-gradient(135deg, #faf3e0 0%, #f4e3be 100%) !important; /* Gold parchment */
  border-radius: 8px !important;
  padding: 12px 16px !important;
}

#mb-booking-wrap .mb-gift-toggle-header h4 {
  font-family: 'Cinzel', serif !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #0d2119 0%, #204e3b 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

#mb-booking-wrap .mb-gift-toggle-icon {
  color: #826227 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
}

#mb-booking-wrap #mb-apply-gift-btn,
#mb-booking-wrap button#mb-apply-gift-btn {
  background: linear-gradient(135deg, #1e3a2f, #0d2119) !important;
  color: #ebd28e !important;
  border: 1px solid #c5a25d !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

#mb-booking-wrap #mb-apply-gift-btn:hover,
#mb-booking-wrap button#mb-apply-gift-btn:hover {
  background: linear-gradient(135deg, #c5a25d, #9e7d3b) !important;
  color: #1e3a2f !important;
}

/* Payment Section Title */
#mb-booking-wrap #mb-pay-section h3 {
  font-family: 'Cinzel', serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1e3a2f !important;
  margin-bottom: 16px !important;
  text-shadow: 0.3px 0.3px 0px rgba(197, 162, 93, 0.3) !important;
}

/* Payment Method Cards */
#mb-booking-wrap .mb-pay-card {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #faf3e0 0%, #f4e3be 100%) !important; /* Rich Luxury Golden Parchment */
  border: 1px solid rgba(197, 162, 93, 0.45) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(197, 162, 93, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

#mb-booking-wrap .mb-pay-card:hover {
  border-color: #c5a25d !important;
  background: linear-gradient(135deg, #fffcf5 0%, #f7ebd0 100%) !important; /* Glowing warm gold cream */
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(197, 162, 93, 0.22), 0 0 1px #c5a25d !important;
}

#mb-booking-wrap .mb-pay-card.selected {
  border: 2px solid #9e7d3b !important; /* Thick antique gold frame */
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba%28158,125,59,0.15%29' stroke-width='1'/%3E%3C/svg%3E"), 
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0px, rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 6px),
    linear-gradient(135deg, #f7e7c4 0%, #ecd6a2 50%, #d8ba73 100%) !important; /* Textured gold foil */
  animation: goldPulse 4s infinite ease-in-out !important;
}


#mb-booking-wrap .mb-pay-label {
  font-family: 'Cinzel', serif !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  background: linear-gradient(135deg, #0d2119 0%, #204e3b 100%) !important; /* Green gradient text */
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

#mb-booking-wrap .mb-pay-label small {
  color: #173629 !important; /* Deep Pine green subtexts */
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
}

/* Enter Wallet Details container */
#mb-booking-wrap #mb-wallet-input-container {
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba%28158,125,59,0.12%29' stroke-width='1'/%3E%3C/svg%3E"), 
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 6px),
    linear-gradient(135deg, #faf3e0 0%, #f4e3be 100%) !important; /* Golden paper background */
  border: 1.5px solid rgba(197, 162, 93, 0.45) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  box-shadow: 0 10px 25px rgba(197, 162, 93, 0.08) !important;
}

#mb-booking-wrap #mb-wallet-input-container #mb-wallet-guest > div:first-child,
#mb-booking-wrap #mb-wallet-input-container #mb-wallet-logged-in > div:first-child {
  font-family: 'Cinzel', serif !important;
  color: #1e3a2f !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#mb-booking-wrap #mb-wallet-input-container div {
  color: #173629 !important; /* Deep Pine green subtext */
  font-family: 'Outfit', sans-serif !important;
}

/* Success Step */
.mb-success-icon svg {
  color: #ebd28e !important;
  background: #1e3a2f !important;
  border-radius: 50% !important;
  border: 2px solid #c5a25d !important;
  box-shadow: 0 0 20px rgba(197, 162, 93, 0.4) !important;
}

.mb-success h2 {
  font-family: 'Cinzel', serif !important;
  color: #1e3a2f !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.mb-success-details {
  background: linear-gradient(135deg, #fdfbf7 0%, #faf6ec 100%) !important;
  border: 1px solid rgba(197, 162, 93, 0.4) !important;
  border-radius: 12px !important;
}

.mb-success-row span {
  font-family: 'Outfit', sans-serif !important;
  color: #645e52 !important;
}

.mb-success-row strong {
  font-family: 'Outfit', sans-serif !important;
  color: #1e3a2f !important;
}

@media (max-width: 520px) {
    .mb-step-dot .mb-dot-label {
        font-size: 9px !important;
    }

    .mb-step-connector {
    min-width: 14px;
    margin: 0 2px;
}
}

@media (max-width: 370px) {
    .mb-step-dot .mb-dot-label {
        font-size: 8px !important;
    }

    .mb-step-connector {
    min-width: 10px;
    margin: 0 2px;
}
}