/* ============================================================
   Field & Fetch Booking Plugin — Stylesheet
   Brand: Green #3A7D44 | Brown #6B4226 | Cream #F8F4EE
   Uses Tabler Icons webfont for all iconography (no emoji)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --ff-green        : #3A7D44;
  --ff-green-dark   : #2C6035;
  --ff-green-light  : #E8F4EA;
  --ff-green-mid    : #C6E0CA;
  --ff-brown        : #6B4226;
  --ff-brown-light  : #F5EDE6;
  --ff-cream        : #F8F4EE;
  --ff-white        : #FFFFFF;
  --ff-text         : #1E1E1E;
  --ff-text-light   : #6B7280;
  --ff-border       : #DDD5C8;
  --ff-border-light : #EEE8E0;
  --ff-red          : #DC2626;
  --ff-red-light    : #FEF2F2;
  --ff-amber        : #D97706;
  --ff-amber-light  : #FFFBEB;
  --ff-blue         : #2563EB;
  --ff-blue-light   : #EFF6FF;
  --ff-radius       : 10px;
  --ff-radius-sm    : 6px;
  --ff-radius-lg    : 14px;
  --ff-shadow       : 0 2px 12px rgba(0,0,0,.08);
  --ff-shadow-lg    : 0 8px 40px rgba(0,0,0,.14);
  --ff-font         : 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ff-mono         : 'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Reset & base ───────────────────────────────────────────────────────── */
.ff-booking-app *,
.ff-meetgreet-app *,
.ff-account-app *,
.ff-admin-wrap * {
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════════════════════
   BOOKING APP WRAPPER
══════════════════════════════════════════════════════════════════════════ */
#ff-booking-app,
#ff-meetgreet-app,
#ff-account-app {
  font-family : var(--ff-font);
  color       : var(--ff-text);
  max-width   : 860px;
  margin      : 0 auto;
  position    : relative;
}

.ff-booking-step { display: none; }
#ff-step-calendar { display: block; }

/* ══════════════════════════════════════════════════════════════════════════
   INLINE NOTICES
══════════════════════════════════════════════════════════════════════════ */
.ff-notice {
  display       : flex;
  align-items   : flex-start;
  gap           : 10px;
  padding       : 12px 16px;
  border-radius : var(--ff-radius);
  font-size     : 14px;
  line-height   : 1.5;
  margin-bottom : 16px;
}
.ff-notice i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ff-notice-success { background: var(--ff-green-light); color: var(--ff-green-dark); border-left: 3px solid var(--ff-green); }
.ff-notice-error   { background: var(--ff-red-light);   color: var(--ff-red);        border-left: 3px solid var(--ff-red); }
.ff-notice-warning { background: var(--ff-amber-light); color: var(--ff-amber);      border-left: 3px solid var(--ff-amber); }
.ff-notice-info    { background: var(--ff-blue-light);  color: var(--ff-blue);       border-left: 3px solid var(--ff-blue); }
.ff-inline-notice  { margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════════════ */
.ff-btn {
  display         : inline-flex;
  align-items     : center;
  gap             : 7px;
  padding         : 11px 24px;
  border-radius   : var(--ff-radius);
  font-size       : 14px;
  font-weight     : 600;
  font-family     : var(--ff-font);
  cursor          : pointer;
  border          : 1.5px solid transparent;
  text-decoration : none;
  transition      : background .14s, transform .1s, border-color .14s;
  white-space     : nowrap;
}
.ff-btn:active { transform: scale(.98); }
.ff-btn:disabled { opacity: .5; cursor: not-allowed; }
.ff-btn i { font-size: 16px; }

.ff-btn-primary   { background: var(--ff-green);  color: var(--ff-white); border-color: var(--ff-green); }
.ff-btn-primary:hover { background: var(--ff-green-dark); border-color: var(--ff-green-dark); }
.ff-btn-secondary { background: var(--ff-white);  color: var(--ff-text);  border-color: var(--ff-border); }
.ff-btn-secondary:hover { background: var(--ff-cream); }
.ff-btn-block     { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════════════════
   NOTICE PERIOD BANNER
══════════════════════════════════════════════════════════════════════════ */
.ff-notice-banner {
  display       : flex;
  align-items   : center;
  gap           : 12px;
  background    : var(--ff-cream);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius);
  padding       : 12px 16px;
  font-size     : 13px;
  margin-bottom : 16px;
  color         : var(--ff-text);
}
.ff-notice-banner i { font-size: 20px; color: var(--ff-green); flex-shrink: 0; }

/* ── Pricing quick pills ─────────────────────────────────────────────────── */
.ff-pricing-pills {
  display     : flex;
  gap         : 8px;
  flex-wrap   : wrap;
  margin-bottom: 14px;
}
.ff-pricing-pill {
  font-size     : 13px;
  padding       : 5px 14px;
  border-radius : 20px;
  background    : var(--ff-white);
  border        : 1.5px solid var(--ff-border);
  color         : var(--ff-text);
}
.ff-pricing-pill strong { color: var(--ff-green); }

/* ══════════════════════════════════════════════════════════════════════════
   CALENDAR
══════════════════════════════════════════════════════════════════════════ */
#ff-calendar {
  background    : var(--ff-white);
  border-radius : var(--ff-radius-lg);
  border        : 1px solid var(--ff-border);
  overflow      : hidden;
  margin-bottom : 20px;
  box-shadow    : var(--ff-shadow);
}
#ff-calendar.ff-loading { opacity: .6; pointer-events: none; }

.ff-cal-nav-row {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background      : var(--ff-green);
  padding         : 14px 20px;
}
.ff-cal-title {
  font-size   : 17px;
  font-weight : 700;
  color       : var(--ff-white);
}
.ff-cal-nav-btn {
  background    : transparent;
  border        : 1.5px solid rgba(255,255,255,.5);
  color         : var(--ff-white);
  width         : 34px;
  height        : 34px;
  border-radius : 50%;
  cursor        : pointer;
  display       : flex;
  align-items   : center;
  justify-content: center;
  font-size     : 16px;
  transition    : background .15s;
}
.ff-cal-nav-btn:hover { background: rgba(255,255,255,.2); }

.ff-cal-grid {
  display               : grid;
  grid-template-columns : repeat(7, 1fr);
  gap                   : 3px;
  padding               : 12px;
}
.ff-cal-dow {
  text-align    : center;
  font-size     : 11px;
  font-weight   : 700;
  color         : var(--ff-text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding       : 6px 0;
}
.ff-cal-we-label { color: var(--ff-border); }

.ff-cal-day {
  text-align    : center;
  padding       : 8px 2px 6px;
  border-radius : 7px;
  font-size     : 13px;
  font-weight   : 500;
  min-height    : 44px;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  justify-content: center;
  position      : relative;
  transition    : background .12s, color .12s;
  cursor        : default;
}
.ff-cal-empty    { visibility: hidden; }
.ff-cal-weekend  { color: var(--ff-border-light); }
.ff-cal-disabled { color: var(--ff-border); }
.ff-cal-closed   { background: #F3F4F6; color: #9CA3AF; font-size: 11px; }
.ff-cal-closed::after { content:'Closed'; font-size: 9px; display: block; }
.ff-cal-soon     { background: var(--ff-amber-light); color: var(--ff-amber); }
.ff-cal-full     { background: var(--ff-red-light); color: var(--ff-red); }

.ff-cal-day.available {
  background : var(--ff-green-light);
  color      : var(--ff-text);
  cursor     : pointer;
}
.ff-cal-day.available:hover {
  background : var(--ff-green);
  color      : var(--ff-white);
}
.ff-cal-day.ff-cal-selected {
  background : var(--ff-green) !important;
  color      : var(--ff-white) !important;
  font-weight: 700;
  box-shadow : 0 2px 8px rgba(58,125,68,.35);
}
.ff-cal-spots {
  font-size  : 9px;
  font-weight: 600;
  display    : block;
  color      : var(--ff-amber);
}
.ff-cal-spots-full { color: var(--ff-red); }
.ff-cal-day.ff-cal-selected .ff-cal-spots { color: rgba(255,255,255,.8); }

/* ── Calendar legend ─────────────────────────────────────────────────────── */
.ff-cal-legend {
  display     : flex;
  gap         : 16px;
  flex-wrap   : wrap;
  font-size   : 12px;
  color       : var(--ff-text-light);
  margin-bottom: 14px;
}
.ff-legend-swatch {
  width         : 12px;
  height        : 12px;
  border-radius : 3px;
  display       : inline-block;
  margin-right  : 4px;
  vertical-align: middle;
}

/* ── Price bar ───────────────────────────────────────────────────────────── */
#ff-price-bar {
  background    : var(--ff-cream);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius);
  padding       : 14px 16px;
  margin-bottom : 16px;
  min-height    : 54px;
}
.ff-price-hint { font-size: 14px; color: var(--ff-text-light); display: flex; align-items: center; gap: 8px; }
.ff-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.ff-chip {
  display       : inline-flex;
  align-items   : center;
  gap           : 6px;
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : 20px;
  padding       : 4px 10px;
  font-size     : 13px;
}
.ff-remove-date {
  background : none;
  border     : none;
  padding    : 0;
  cursor     : pointer;
  color      : var(--ff-text-light);
  font-size  : 14px;
  line-height: 1;
  display    : flex;
}
.ff-remove-date:hover { color: var(--ff-red); }

.ff-price-summary {
  display         : flex;
  align-items     : center;
  gap             : 12px;
  flex-wrap       : wrap;
  background      : var(--ff-white);
  border          : 1px solid var(--ff-border);
  border-radius   : var(--ff-radius-sm);
  padding         : 10px 14px;
}
.ff-price-tier   { font-weight: 700; font-size: 13px; color: var(--ff-green-dark); }
.ff-price-ppd    { font-size: 13px; color: var(--ff-text-light); }
.ff-price-total  { margin-left: auto; font-size: 22px; font-weight: 800; color: var(--ff-green); }

/* ── Waitlist button ─────────────────────────────────────────────────────── */
.ff-waitlist-btn {
  font-size     : 13px;
  padding       : 6px 14px;
  background    : var(--ff-amber-light);
  color         : var(--ff-amber);
  border        : 1px solid var(--ff-amber);
  border-radius : var(--ff-radius-sm);
  cursor        : pointer;
  display       : inline-flex;
  align-items   : center;
  gap           : 6px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ACCOUNT STEP (inline, on booking page)
══════════════════════════════════════════════════════════════════════════ */
#ff-step-account {
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius-lg);
  padding       : 28px;
  box-shadow    : var(--ff-shadow);
}
.ff-acct-tabs {
  display       : flex;
  border-bottom : 2px solid var(--ff-border);
  margin-bottom : 24px;
  gap           : 0;
}
.ff-acct-tab-btn {
  padding       : 10px 22px;
  background    : none;
  border        : none;
  border-bottom : 3px solid transparent;
  margin-bottom : -2px;
  font-size     : 15px;
  font-weight   : 600;
  font-family   : var(--ff-font);
  cursor        : pointer;
  color         : var(--ff-text-light);
  transition    : color .15s;
}
.ff-acct-tab-btn.active { color: var(--ff-green); border-bottom-color: var(--ff-green); }
.ff-acct-panel { display: none; }
.ff-acct-panel.active { display: block; }

/* ══════════════════════════════════════════════════════════════════════════
   FORM FIELDS (shared)
══════════════════════════════════════════════════════════════════════════ */
.ff-form-group   { margin-bottom: 16px; }
.ff-form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ff-label {
  display       : block;
  font-size     : 13px;
  font-weight   : 600;
  color         : var(--ff-text);
  margin-bottom : 5px;
}
.ff-req { color: var(--ff-red); margin-left: 2px; }
.ff-input {
  width         : 100%;
  padding       : 10px 13px;
  border        : 1.5px solid var(--ff-border);
  border-radius : var(--ff-radius-sm);
  font-size     : 14px;
  font-family   : var(--ff-font);
  color         : var(--ff-text);
  background    : var(--ff-white);
  transition    : border-color .15s, box-shadow .15s;
}
.ff-input:focus {
  outline      : none;
  border-color : var(--ff-green);
  box-shadow   : 0 0 0 3px rgba(58,125,68,.12);
}
.ff-input.ff-error { border-color: var(--ff-red); box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.ff-textarea { resize: vertical; min-height: 80px; }
.ff-form-note { font-size: 12px; color: var(--ff-text-light); margin-top: 4px; }
.ff-form-section-title {
  font-size     : 15px;
  font-weight   : 700;
  color         : var(--ff-brown);
  margin        : 20px 0 14px;
  padding-bottom: 8px;
  border-bottom : 2px solid var(--ff-brown-light);
  display       : flex;
  align-items   : center;
  gap           : 8px;
}
.ff-check-group {
  display       : flex;
  align-items   : flex-start;
  gap           : 10px;
  margin-bottom : 12px;
}
.ff-check-group input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--ff-green); }
.ff-check-group label { font-size: 13px; color: var(--ff-text); line-height: 1.5; }
.ff-check-group.ff-error label { color: var(--ff-red); }
.ff-link { color: var(--ff-green); text-decoration: underline; }
.ff-saved-notice {
  display       : flex;
  align-items   : center;
  gap           : 14px;
  background    : var(--ff-green-light);
  border        : 1px solid var(--ff-green-mid);
  border-radius : var(--ff-radius);
  padding       : 14px 16px;
  font-size     : 13px;
}
.ff-saved-notice i { font-size: 22px; color: var(--ff-green); flex-shrink: 0; }
.ff-saved-notice strong { display: block; font-size: 14px; margin-bottom: 2px; }
.ff-saved-notice p { margin: 0; color: var(--ff-text-light); font-size: 12px; }
.ff-saved-notice a { margin-left: auto; color: var(--ff-green); font-weight: 600; font-size: 13px; text-decoration: none; white-space: nowrap; }

/* ── Dog selector ────────────────────────────────────────────────────────── */
.ff-dog-check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.ff-dog-check-item {
  display       : flex;
  align-items   : center;
  gap           : 10px;
  padding       : 10px 14px;
  background    : var(--ff-cream);
  border-radius : var(--ff-radius-sm);
  cursor        : pointer;
  font-size     : 14px;
  font-weight   : 500;
}
.ff-dog-check-item input { accent-color: var(--ff-green); }
.ff-dog-chip-sub { font-size: 12px; font-weight: 400; color: var(--ff-text-light); margin-left: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   MODAL (5-tab intake form popup)
══════════════════════════════════════════════════════════════════════════ */
#ff-modal-overlay {
  display     : none;
  position    : fixed;
  inset       : 0;
  background  : rgba(0,0,0,.5);
  z-index     : 99998;
  backdrop-filter: blur(2px);
}
#ff-form-modal {
  display       : none;
  position      : fixed;
  top           : 50%;
  left          : 50%;
  transform     : translate(-50%, -50%);
  width         : min(860px, 96vw);
  max-height    : 90vh;
  overflow-y    : auto;
  background    : var(--ff-white);
  border-radius : var(--ff-radius-lg);
  box-shadow    : var(--ff-shadow-lg);
  z-index       : 99999;
}
.ff-modal-header {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  padding         : 18px 24px;
  border-bottom   : 1px solid var(--ff-border);
  position        : sticky;
  top             : 0;
  background      : var(--ff-white);
  z-index         : 10;
}
.ff-modal-header h2 { font-size: 17px; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; }
.ff-modal-close {
  background    : none;
  border        : none;
  font-size     : 20px;
  cursor        : pointer;
  color         : var(--ff-text-light);
  padding       : 4px;
  border-radius : 6px;
  display       : flex;
  transition    : background .15s;
}
.ff-modal-close:hover { background: var(--ff-cream); }

/* ── Form tabs ───────────────────────────────────────────────────────────── */
.ff-form-tabs {
  display         : flex;
  border-bottom   : 1px solid var(--ff-border);
  background      : var(--ff-cream);
  overflow-x      : auto;
  scrollbar-width : none;
}
.ff-form-tabs::-webkit-scrollbar { display: none; }
.ff-form-tab {
  display       : flex;
  align-items   : center;
  gap           : 7px;
  padding       : 12px 16px;
  font-size     : 13px;
  font-weight   : 600;
  font-family   : var(--ff-font);
  background    : none;
  border        : none;
  border-bottom : 3px solid transparent;
  cursor        : pointer;
  color         : var(--ff-text-light);
  white-space   : nowrap;
  transition    : color .15s;
}
.ff-form-tab.active { color: var(--ff-green); border-bottom-color: var(--ff-green); background: var(--ff-white); }
.ff-form-tab.completed { color: var(--ff-green); }
.ff-form-tab-num {
  width         : 20px;
  height        : 20px;
  border-radius : 50%;
  background    : var(--ff-border);
  color         : var(--ff-text-light);
  font-size     : 11px;
  display       : flex;
  align-items   : center;
  justify-content: center;
  flex-shrink   : 0;
}
.ff-form-tab.active .ff-form-tab-num { background: var(--ff-green); color: var(--ff-white); }
.ff-form-tab.completed .ff-form-tab-num { background: var(--ff-green-light); color: var(--ff-green); }

.ff-form-panels { padding: 24px; }
.ff-form-panel { display: none; }
.ff-form-panel.active { display: block; }

.ff-form-footer {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  padding         : 16px 24px;
  border-top      : 1px solid var(--ff-border);
  position        : sticky;
  bottom          : 0;
  background      : var(--ff-white);
}
.ff-form-footer-right { display: flex; align-items: center; gap: 12px; }
.ff-tab-counter { font-size: 13px; color: var(--ff-text-light); }

/* ── Agreement box ───────────────────────────────────────────────────────── */
.ff-agreement-box {
  background    : var(--ff-cream);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius);
  padding       : 16px 18px;
  font-size     : 13px;
  line-height   : 1.7;
  margin-bottom : 16px;
}
.ff-agreement-box ul { padding-left: 18px; margin: 8px 0 0; }
.ff-agreement-box li { margin-bottom: 6px; }
.ff-sig-input {
  font-style  : italic;
  font-size   : 16px;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════════════════════════════════
   REVIEW STEP
══════════════════════════════════════════════════════════════════════════ */
.ff-review-box {
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius-lg);
  padding       : 24px;
  box-shadow    : var(--ff-shadow);
  margin-bottom : 20px;
}
.ff-review-box h3 { font-size: 17px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--ff-green-dark); }
.ff-review-grid { margin-bottom: 16px; }
.ff-review-row {
  display       : flex;
  justify-content: space-between;
  align-items   : center;
  padding       : 9px 0;
  border-bottom : 1px solid var(--ff-border-light);
  font-size     : 14px;
}
.ff-review-row:last-child { border-bottom: none; }
.ff-review-label { color: var(--ff-text-light); display: flex; align-items: center; gap: 6px; }
.ff-review-value { font-weight: 600; }
.ff-review-total .ff-review-label { font-weight: 700; color: var(--ff-text); font-size: 15px; }
.ff-review-total .ff-review-value { font-size: 22px; font-weight: 800; color: var(--ff-green); }
.ff-review-dates {
  list-style  : none;
  padding     : 0;
  margin      : 12px 0;
  display     : flex;
  flex-direction: column;
  gap         : 6px;
}
.ff-review-dates li { font-size: 14px; display: flex; align-items: center; gap: 8px; color: var(--ff-text); }
.ff-review-dates li i { color: var(--ff-green); }
.ff-review-info {
  display         : flex;
  gap             : 16px;
  flex-wrap       : wrap;
  background      : var(--ff-green-light);
  border-radius   : var(--ff-radius-sm);
  padding         : 12px 14px;
  margin-top      : 12px;
}
.ff-review-info-item { font-size: 13px; display: flex; align-items: center; gap: 7px; }
.ff-review-info-item i { color: var(--ff-green); }
.ff-review-info-item strong { margin-right: 3px; }

/* ══════════════════════════════════════════════════════════════════════════
   PAYMENT STEP
══════════════════════════════════════════════════════════════════════════ */
.ff-payment-total-bar {
  background    : var(--ff-green-light);
  border        : 1px solid var(--ff-green-mid);
  border-radius : var(--ff-radius);
  padding       : 14px 18px;
  font-size     : 16px;
  margin-bottom : 20px;
  text-align    : center;
}
.ff-payment-total-bar strong { font-size: 20px; color: var(--ff-green); }
.ff-gateway-section {
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius-lg);
  padding       : 20px;
  margin-bottom : 16px;
}
.ff-gateway-label {
  font-size     : 14px;
  font-weight   : 700;
  color         : var(--ff-text);
  margin-bottom : 14px;
  display       : flex;
  align-items   : center;
  gap           : 8px;
}
#ff-stripe-element { margin-bottom: 14px; }
.ff-stripe-error { color: var(--ff-red); font-size: 13px; min-height: 18px; margin-bottom: 10px; }
.ff-payment-security {
  font-size     : 12px;
  color         : var(--ff-text-light);
  text-align    : center;
  margin-top    : 10px;
  display       : flex;
  align-items   : center;
  justify-content: center;
  gap           : 6px;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONFIRMATION STEP
══════════════════════════════════════════════════════════════════════════ */
.ff-confirm-box {
  text-align    : center;
  padding       : 48px 28px;
  background    : var(--ff-white);
  border-radius : var(--ff-radius-lg);
  border        : 1px solid var(--ff-border);
  box-shadow    : var(--ff-shadow);
}
.ff-confirm-icon-wrap { margin-bottom: 16px; }
.ff-confirm-icon { font-size: 64px; color: var(--ff-green); }
.ff-confirm-box h2 { font-size: 26px; color: var(--ff-green-dark); margin-bottom: 8px; }
.ff-confirm-box p  { font-size: 14px; color: var(--ff-text-light); margin-bottom: 8px; }
.ff-confirm-ref    { font-size: 15px !important; color: var(--ff-text) !important; }
.ff-confirm-paid   { color: var(--ff-green) !important; font-weight: 600 !important; }
.ff-confirm-times {
  display         : flex;
  justify-content : center;
  gap             : 24px;
  flex-wrap       : wrap;
  background      : var(--ff-green-light);
  border-radius   : var(--ff-radius);
  padding         : 14px 20px;
  margin          : 16px auto;
  max-width       : 400px;
}
.ff-confirm-time-item {
  display     : flex;
  align-items : center;
  gap         : 10px;
  font-size   : 14px;
}
.ff-confirm-time-item i { font-size: 22px; color: var(--ff-green); }
.ff-confirm-time-item strong { display: block; }
.ff-confirm-time-item span { font-size: 13px; color: var(--ff-text-light); }
.ff-confirm-note { font-size: 13px !important; margin: 16px 0 20px !important; }
.ff-confirm-box .ff-btn { margin: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   MEET & GREET WIDGET
══════════════════════════════════════════════════════════════════════════ */
.ff-meetgreet-hero {
  text-align    : center;
  padding       : 28px 0 20px;
  margin-bottom : 24px;
}
.ff-meetgreet-hero .ff-hero-icon { font-size: 52px; color: var(--ff-green); display: block; margin-bottom: 12px; }
.ff-meetgreet-hero h2 { font-size: 24px; margin-bottom: 6px; }
.ff-meetgreet-hero p  { font-size: 14px; color: var(--ff-text-light); }
.ff-meetgreet-perks {
  display               : grid;
  grid-template-columns : repeat(auto-fit, minmax(160px, 1fr));
  gap                   : 12px;
  margin-bottom         : 28px;
}
.ff-perk-card {
  background    : var(--ff-cream);
  border-radius : var(--ff-radius);
  padding       : 16px 14px;
  text-align    : center;
}
.ff-perk-card i    { font-size: 28px; color: var(--ff-green); display: block; margin-bottom: 8px; }
.ff-perk-card strong{ font-size: 13px; display: block; margin-bottom: 4px; }
.ff-perk-card p    { font-size: 12px; color: var(--ff-text-light); margin: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   ACCOUNT PAGE
══════════════════════════════════════════════════════════════════════════ */
.ff-account-header {
  display       : flex;
  align-items   : center;
  gap           : 16px;
  background    : var(--ff-green-light);
  border-radius : var(--ff-radius-lg);
  padding       : 20px 24px;
  margin-bottom : 24px;
}
.ff-account-header-icon { font-size: 40px; color: var(--ff-green); }
.ff-account-header h2 { font-size: 20px; margin-bottom: 4px; }
.ff-account-header p  { font-size: 13px; color: var(--ff-text-light); margin: 0; }

.ff-account-tabs {
  display     : flex;
  border-bottom: 2px solid var(--ff-border);
  margin-bottom: 24px;
  overflow-x  : auto;
  scrollbar-width: none;
}
.ff-account-tabs::-webkit-scrollbar { display: none; }

.ff-booking-card {
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius);
  padding       : 16px 18px;
  margin-bottom : 12px;
  display       : flex;
  justify-content: space-between;
  align-items   : flex-start;
  flex-wrap     : wrap;
  gap           : 12px;
}
.ff-booking-card-left h4 { font-size: 15px; margin-bottom: 4px; }
.ff-booking-card-left p  { font-size: 13px; color: var(--ff-text-light); margin: 0 0 6px; }
.ff-booking-card-right   { text-align: right; }
.ff-booking-card-price   { font-size: 20px; font-weight: 800; color: var(--ff-green); margin-bottom: 6px; }

.ff-dog-card {
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius);
  overflow      : hidden;
  margin-bottom : 12px;
}
.ff-dog-card-header {
  background  : var(--ff-cream);
  padding     : 12px 16px;
  display     : flex;
  align-items : center;
  gap         : 10px;
}
.ff-dog-card-header i    { font-size: 20px; color: var(--ff-green); }
.ff-dog-card-header strong{ font-size: 15px; }
.ff-dog-card-header span { font-size: 13px; color: var(--ff-text-light); margin-left: auto; }
.ff-dog-card-body { padding: 14px 16px; }
.ff-dog-detail    { font-size: 13px; margin-bottom: 6px; }
.ff-dog-detail strong { min-width: 120px; display: inline-block; color: var(--ff-text-light); }

.ff-detail-table { width: 100%; border-collapse: collapse; }
.ff-detail-table tr { border-bottom: 1px solid var(--ff-border-light); }
.ff-detail-table tr:last-child { border-bottom: none; }
.ff-detail-table td { padding: 10px 14px; font-size: 14px; }
.ff-detail-table td:first-child { font-weight: 600; color: var(--ff-text-light); width: 40%; }

/* ══════════════════════════════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════════════════════════════ */
.ff-badge {
  display       : inline-block;
  padding       : 3px 10px;
  border-radius : 20px;
  font-size     : 12px;
  font-weight   : 600;
  text-transform: capitalize;
}
.ff-badge-confirmed  { background: var(--ff-green-light); color: var(--ff-green-dark); }
.ff-badge-pending,
.ff-badge-pending_payment { background: var(--ff-amber-light); color: var(--ff-amber); }
.ff-badge-cancelled,
.ff-badge-payment_failed { background: var(--ff-red-light); color: var(--ff-red); }
.ff-badge-paid       { background: var(--ff-green-light); color: var(--ff-green-dark); }
.ff-badge-unpaid     { background: var(--ff-amber-light); color: var(--ff-amber); }
.ff-badge-full       { background: var(--ff-red-light); color: var(--ff-red); }
.ff-badge-approved   { background: var(--ff-green-light); color: var(--ff-green-dark); }

/* ══════════════════════════════════════════════════════════════════════════
   ADMIN STYLES
══════════════════════════════════════════════════════════════════════════ */
.ff-admin-wrap  { max-width: 1200px; font-family: var(--ff-font); }
.ff-admin-header {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  flex-wrap       : wrap;
  gap             : 12px;
  margin-bottom   : 20px;
  padding-bottom  : 14px;
  border-bottom   : 2px solid var(--ff-green-light);
}
.ff-admin-header h1 {
  font-size   : 22px;
  color       : var(--ff-green-dark);
  margin      : 0;
  display     : flex;
  align-items : center;
  gap         : 8px;
}
.ff-admin-header-actions { display: flex; gap: 8px; }

.ff-admin-notice {
  display       : flex;
  align-items   : center;
  gap           : 10px;
  padding       : 12px 16px;
  border-radius : var(--ff-radius);
  font-size     : 14px;
  margin-bottom : 16px;
}
.ff-admin-notice i { font-size: 18px; }
.ff-admin-notice-success { background: var(--ff-green-light); color: var(--ff-green-dark); border: 1px solid var(--ff-green-mid); }
.ff-admin-notice-warning { background: var(--ff-amber-light); color: var(--ff-amber); border: 1px solid #FCD34D; }

.ff-admin-note {
  font-size     : 13px;
  color         : var(--ff-text-light);
  margin-bottom : 16px;
  display       : flex;
  align-items   : center;
  gap           : 7px;
}

.ff-stat-grid {
  display               : grid;
  grid-template-columns : repeat(auto-fit, minmax(180px, 1fr));
  gap                   : 14px;
  margin-bottom         : 28px;
}
.ff-stat-card {
  background    : var(--ff-white);
  border        : 1px solid var(--ff-border);
  border-radius : var(--ff-radius-lg);
  padding       : 18px;
  box-shadow    : var(--ff-shadow);
  display       : flex;
  align-items   : center;
  gap           : 14px;
}
.ff-stat-card-alert { border-color: var(--ff-amber); }
.ff-stat-icon {
  width         : 44px;
  height        : 44px;
  border-radius : 10px;
  display       : flex;
  align-items   : center;
  justify-content: center;
  flex-shrink   : 0;
}
.ff-stat-icon i { font-size: 22px; }
.ff-stat-body   { flex: 1; }
.ff-stat-number { display: block; font-size: 28px; font-weight: 800; color: var(--ff-green); }
.ff-stat-label  { display: block; font-size: 12px; color: var(--ff-text-light); margin-top: 2px; }
.ff-stat-link   { display: block; font-size: 12px; font-weight: 600; color: var(--ff-amber); margin-top: 4px; text-decoration: none; }

.ff-admin-section { margin-bottom: 28px; }
.ff-admin-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ff-admin-section-header h2 { font-size: 16px; color: var(--ff-text); margin: 0; display: flex; align-items: center; gap: 8px; }
.ff-admin-link { font-size: 13px; color: var(--ff-green); text-decoration: none; display: flex; align-items: center; gap: 4px; }

.ff-admin-table { width: 100%; border-collapse: collapse; background: var(--ff-white); border: 1px solid var(--ff-border); border-radius: var(--ff-radius); overflow: hidden; }
.ff-admin-table th { background: var(--ff-green-light); color: var(--ff-green-dark); padding: 11px 14px; font-size: 12px; font-weight: 700; text-align: left; text-transform: uppercase; letter-spacing: .04em; }
.ff-admin-table td { padding: 10px 14px; font-size: 13px; border-bottom: 1px solid var(--ff-border-light); vertical-align: middle; }
.ff-admin-table tr:last-child td { border-bottom: none; }
.ff-admin-table tr:hover td { background: var(--ff-cream); }
.ff-admin-empty { text-align: center; color: var(--ff-text-light); display: flex; align-items: center; justify-content: center; gap: 8px; padding: 24px !important; }

.ff-admin-filters { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.ff-filter-btn { padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; background: var(--ff-cream); border: 1px solid var(--ff-border); color: var(--ff-text); text-decoration: none; }
.ff-filter-btn.active { background: var(--ff-green); border-color: var(--ff-green); color: var(--ff-white); }

.ff-admin-btn {
  display       : inline-flex;
  align-items   : center;
  gap           : 6px;
  padding       : 9px 16px;
  border-radius : var(--ff-radius-sm);
  font-size     : 13px;
  font-weight   : 600;
  cursor        : pointer;
  border        : 1.5px solid transparent;
  text-decoration: none;
  font-family   : var(--ff-font);
  transition    : background .14s;
}
.ff-admin-btn i { font-size: 15px; }
.ff-admin-btn-primary   { background: var(--ff-green);  color: var(--ff-white); border-color: var(--ff-green); }
.ff-admin-btn-primary:hover { background: var(--ff-green-dark); }
.ff-admin-btn-secondary { background: var(--ff-white);  color: var(--ff-text);  border-color: var(--ff-border); }
.ff-admin-btn-secondary:hover { background: var(--ff-cream); }
.ff-admin-btn-success   { background: var(--ff-green-light); color: var(--ff-green-dark); border-color: var(--ff-green-mid); }
.ff-admin-btn-warning   { background: var(--ff-amber-light); color: var(--ff-amber); border-color: var(--ff-amber); }
.ff-admin-btn-danger    { background: var(--ff-red-light);   color: var(--ff-red);   border-color: var(--ff-red); }
.ff-admin-btn-xs { padding: 5px 10px; font-size: 12px; }

.ff-action-cell { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.ff-dog-chip { display: inline-flex; align-items: center; gap: 5px; background: var(--ff-green-light); color: var(--ff-green-dark); border-radius: 14px; padding: 3px 9px; font-size: 12px; font-weight: 600; }

.ff-settings-section { background: var(--ff-white); border: 1px solid var(--ff-border); border-radius: var(--ff-radius-lg); padding: 20px 24px; margin-bottom: 20px; }
.ff-settings-section h3 { font-size: 15px; margin: 0 0 16px; color: var(--ff-green-dark); display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid var(--ff-border-light); }
.ff-settings-table td { padding: 10px 0; }
.ff-settings-table th { width: 220px; vertical-align: top; padding: 12px 0; }

.ff-admin-form-footer { padding: 16px 0; margin-top: 8px; }
.ff-admin-num-input  { width: 70px; padding: 6px 8px; border: 1.5px solid var(--ff-border); border-radius: var(--ff-radius-sm); font-size: 13px; }
.ff-admin-text-input { width: 180px; padding: 6px 8px; border: 1.5px solid var(--ff-border); border-radius: var(--ff-radius-sm); font-size: 13px; }
.ff-row-closed td { opacity: .6; }
.ff-row-full   td { background: #FFF9F0; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .ff-form-row          { grid-template-columns: 1fr; }
  .ff-cal-day           { font-size: 11px; min-height: 36px; padding: 5px 1px; }
  .ff-cal-dow           { font-size: 9px; }
  .ff-price-total       { font-size: 18px; }
  .ff-review-total .ff-review-value { font-size: 18px; }
  #ff-form-modal        { width: 100%; height: 100%; max-height: 100vh; top: 0; left: 0; transform: none; border-radius: 0; }
  .ff-confirm-times     { flex-direction: column; gap: 12px; }
  .ff-stat-grid         { grid-template-columns: 1fr 1fr; }
  .ff-settings-table th { width: auto; display: block; }
  .ff-admin-header      { flex-direction: column; align-items: flex-start; }
}
