/* ═══════════════════════════════════════════
   JETLIFY WIDGETS — Light Theme
═══════════════════════════════════════════ */

/* ── Shared FAB ── */
.jfl-fab {
  position: fixed;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  border: none;
  outline: none;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease;
}
.jfl-fab:hover { transform: scale(1.12); }

/* ── Calendar FAB (right) — Photo + Glow ── */
#jfl-cal-fab {
  right: 28px;
  background: transparent;
  border: none;
  overflow: visible;
  padding: 0;
  box-shadow: none;
}
/* Calendar FAB — medium glow + expanding ripple ring */
@keyframes jfl-cal-fab-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(2,112,222,0.50)) drop-shadow(0 3px 10px rgba(0,180,255,0.32)); }
  50%       { filter: drop-shadow(0 0 13px rgba(2,112,222,0.75)) drop-shadow(0 4px 18px rgba(0,180,255,0.50)); }
}
/* Expanding ripple ring that draws the eye */
@keyframes jfl-cal-ripple {
  0%   { transform: scale(1);   opacity: 0.75; }
  100% { transform: scale(1.9); opacity: 0; }
}
#jfl-cal-fab { animation: jfl-cal-fab-glow 3.2s ease-in-out infinite; }
#jfl-cal-fab::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(2,112,222,0.70);
  box-sizing: border-box;
  animation: jfl-cal-ripple 2.2s ease-out infinite;
  pointer-events: none;
}
#jfl-cal-fab:hover { animation: none; filter: drop-shadow(0 0 22px rgba(2,112,222,0.9)) drop-shadow(0 6px 24px rgba(0,180,255,0.8)); transform: scale(1.08); }

/* Photo / initials inside the calendar FAB */
.jfl-fab-photo-img {
  position: relative; z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  object-fit: cover; display: block; flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.jfl-fab-photo-fallback {
  position: relative; z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #0270de, #00b4ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0;
  border: 3px solid #fff;
}

/* Medium-vibrant revolving orbit glow for calendar popup */
@keyframes jfl-popup-orbit {
  0%   { box-shadow: 0 10px 40px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(2,112,222,0.45), -20px 0   38px rgba(2,112,222,0.35), 0 0 60px rgba(0,180,255,0.10); }
  25%  { box-shadow: 0 10px 40px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(0,180,255,0.50),   0 -20px  38px rgba(0,180,255,0.35), 0 0 60px rgba(2,112,222,0.12); }
  50%  { box-shadow: 0 10px 40px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(2,112,222,0.45),  20px 0   42px rgba(2,112,222,0.35), 0 0 60px rgba(0,180,255,0.10); }
  75%  { box-shadow: 0 10px 40px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(0,180,255,0.45),   0  20px  38px rgba(0,180,255,0.30), 0 0 60px rgba(2,112,222,0.10); }
  100% { box-shadow: 0 10px 40px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(2,112,222,0.45), -20px 0   38px rgba(2,112,222,0.35), 0 0 60px rgba(0,180,255,0.10); }
}

/* ── Calendar Popup ── */
#jfl-cal-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 360px;
  border-radius: 20px;
  z-index: 9001;
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.34,1.56,.64,1);
  background: #ffffff;
  border: 1.5px solid rgba(2,112,222,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
}
#jfl-cal-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  animation: jfl-popup-orbit 4s linear infinite;
}

/* Persona header */
.jfl-cal-persona {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid #f0f2f6;
  position: relative;
}
.jfl-cal-persona-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  flex-shrink: 0;
  display: block;
}
.jfl-cal-persona-initials {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #0270de, #00b4ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.jfl-cal-persona-wrap { position: relative; flex-shrink: 0; }
.jfl-cal-online-dot {
  position: absolute; bottom: 2px; right: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}
.jfl-cal-persona-info h4 { margin: 0; font-size: 14px; font-weight: 700; color: #111827; line-height: 1.2; }
.jfl-cal-persona-info p  { margin: 2px 0 0; font-size: 12px; color: #6b7280; }
.jfl-cal-close-btn {
  margin-left: auto; cursor: pointer;
  background: #f3f4f6; border: none;
  color: #9ca3af; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; transition: background 0.18s;
}
.jfl-cal-close-btn:hover { background: #e5e7eb; color: #374151; }

/* ── CTA hook strip (inside popup, above urgency bar) ── */
.jfl-cal-hook {
  margin: 10px 14px 0;
  padding: 9px 14px 9px 13px;
  background: linear-gradient(90deg, #eef5ff 0%, #e0f0ff 100%);
  border-left: 3px solid #0270de;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
}
.jfl-cal-hook-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #0270de;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* Urgency bar */
.jfl-urgency-bar {
  margin: 14px 16px 0;
  background: #f0f6ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  overflow: hidden;
}
.jfl-urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  position: relative;
  z-index: 1;
}
.jfl-urgency-bar::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 72%;
  background: linear-gradient(90deg, #dbeafe, #bfdbfe);
  border-radius: 12px 0 0 12px;
  z-index: 0;
}
.jfl-urgency-bar { position: relative; }
.jfl-urgency-text {
  font-size: 12.5px; font-weight: 600; color: #1d4ed8;
  display: flex; align-items: center; gap: 5px;
}
.jfl-urgency-text i { color: #f59e0b; font-size: 12px; }
.jfl-urgency-timer {
  font-size: 13px; font-weight: 800; color: #1d4ed8;
  font-variant-numeric: tabular-nums; letter-spacing: .03em;
  transition: color 0.4s ease;
}

/* Timer expired state — red flash */
@keyframes jfl-urgency-flash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.jfl-urgency-expired {
  background: #fff1f2;
  border-color: #fecdd3;
  animation: jfl-urgency-flash 0.9s ease-in-out infinite;
}
.jfl-urgency-expired .jfl-urgency-text { color: #dc2626; }
.jfl-urgency-expired .jfl-urgency-text i { color: #dc2626; }
.jfl-urgency-expired::before { background: linear-gradient(90deg, #fecdd3, #fca5a5); }
.jfl-urgency-expired .jfl-urgency-timer { color: #dc2626; font-size: 12px; letter-spacing: .02em; }

/* ── Calendly embed wrapper — crops the Calendly header out of view ── */
.jfl-cal-embed-wrap {
  /* Visible window: only the calendar grid shows, header is cropped */
  height: 480px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

.jfl-calendly-embed {
  /* Pull the embed UP by 380px to skip:
     Calendly logo + avatar + "30 Minute Meeting" + duration + conferencing lines */
  width: 100%;
  margin-top: -380px;
  height: 860px; /* 480 visible + 380 cropped top */
  overflow: hidden;
}

.jfl-calendly-embed .calendly-inline-widget {
  width: 100% !important;
  height: 860px !important;
  min-width: unset !important;
  border: none;
}

.jfl-cal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}
.jfl-cal-loading i { color: #0270de; font-size: 18px; }


/* ══════════════════════════════════════════
   LEAD MAGNET FAB (bottom-left) — Purple
══════════════════════════════════════════ */
#jfl-lm-fab {
  left: 28px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 0 0 0 rgba(124,58,237,0.6), 0 8px 28px rgba(124,58,237,0.45);
}
/* Gift FAB — jiggle + grow/shrink (attention-grabbing) */
@keyframes jfl-lm-breathe {
  0%   { transform: scale(1)    translateX(0);    box-shadow: 0 0 0 0    rgba(124,58,237,0.55), 0 8px 24px rgba(124,58,237,0.4); }
  8%   { transform: scale(1.04) translateX(-4px); box-shadow: 0 0 0 4px  rgba(124,58,237,0.3),  0 8px 26px rgba(168,85,247,0.45); }
  14%  { transform: scale(1.08) translateX(4px);  box-shadow: 0 0 0 6px  rgba(124,58,237,0.25), 0 9px 28px rgba(168,85,247,0.45); }
  20%  { transform: scale(1.11) translateX(-4px); box-shadow: 0 0 0 8px  rgba(124,58,237,0.2),  0 10px 28px rgba(168,85,247,0.48); }
  26%  { transform: scale(1.13) translateX(3px);  box-shadow: 0 0 0 10px rgba(124,58,237,0.18), 0 10px 30px rgba(168,85,247,0.5); }
  32%  { transform: scale(1.14) translateX(-2px); box-shadow: 0 0 0 11px rgba(124,58,237,0.16), 0 10px 30px rgba(168,85,247,0.5); }
  40%  { transform: scale(1.14) translateX(0);    box-shadow: 0 0 0 12px rgba(124,58,237,0.14), 0 10px 32px rgba(168,85,247,0.52); }
  70%  { transform: scale(0.96) translateX(0);    box-shadow: 0 0 0 0    rgba(124,58,237,0),    0 6px 20px rgba(124,58,237,0.3); }
  100% { transform: scale(1)    translateX(0);    box-shadow: 0 0 0 0    rgba(124,58,237,0.55), 0 8px 24px rgba(124,58,237,0.4); }
}
#jfl-lm-fab { animation: jfl-lm-breathe 1.8s ease-in-out infinite; }
#jfl-lm-fab:hover { animation: none; transform: scale(1.12); box-shadow: 0 0 0 14px rgba(124,58,237,0.12), 0 10px 36px rgba(124,58,237,0.55); }

/* ── Gift FAB notification badge ── */
.jfl-lm-notif {
  position: absolute;
  top: -6px; right: -6px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-size: 9px; font-weight: 900;
  min-width: 28px; height: 22px;
  border-radius: 11px;
  padding: 0 5px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(168,85,247,0.6);
  line-height: 1;
  letter-spacing: .01em;
  z-index: 10;
  animation: jfl-lm-badge-pop 1.1s ease-in-out infinite;
}
.jfl-lm-notif-label {
  display: block;
  font-size: 7px; font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  opacity: 0.9;
}
@keyframes jfl-lm-badge-pop {
  0%, 100% { transform: scale(1); }
  45%       { transform: scale(1.22); }
  65%       { transform: scale(0.92); }
  80%       { transform: scale(1.08); }
}

/* ── Lead Magnet Popup — Liquid Glass ── */
@keyframes jfl-lm-orbit {
  0%   { box-shadow: 0 8px 40px rgba(124,58,237,0.18), 0 0 0 1.5px rgba(168,85,247,0.35), -16px 0  28px rgba(124,58,237,0.20); }
  25%  { box-shadow: 0 8px 40px rgba(124,58,237,0.18), 0 0 0 1.5px rgba(236,72,153,0.35),   0 -16px 28px rgba(236,72,153,0.20); }
  50%  { box-shadow: 0 8px 40px rgba(124,58,237,0.18), 0 0 0 1.5px rgba(168,85,247,0.35),  16px 0  28px rgba(168,85,247,0.20); }
  75%  { box-shadow: 0 8px 40px rgba(124,58,237,0.18), 0 0 0 1.5px rgba(236,72,153,0.30),   0  16px 28px rgba(236,72,153,0.18); }
  100% { box-shadow: 0 8px 40px rgba(124,58,237,0.18), 0 0 0 1.5px rgba(168,85,247,0.35), -16px 0  28px rgba(124,58,237,0.20); }
}

/* Full-screen backdrop */
#jfl-lm-popup {
  position: fixed;
  inset: 0;
  background: rgba(10,5,25,0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; box-sizing: border-box;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
#jfl-lm-popup.open { opacity: 1; pointer-events: all; }

/* Centered card */
.jfl-lm-card {
  max-width: 420px; width: 100%;
  border-radius: 22px; overflow: hidden;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255,255,255,0.85);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
#jfl-lm-popup.open .jfl-lm-card {
  transform: translateY(0) scale(1);
  animation: jfl-lm-orbit 4s linear infinite;
}

/* Liquid glass header */
.jfl-lm-header {
  padding: 22px 20px 18px;
  background: linear-gradient(135deg,
    rgba(124,58,237,0.92) 0%,
    rgba(168,85,247,0.88) 50%,
    rgba(236,72,153,0.85) 100%);
  position: relative;
  text-align: center;
}
.jfl-lm-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px; padding: 4px 12px;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.jfl-lm-header h3 {
  margin: 0 0 6px; font-size: 18px; font-weight: 800;
  color: #fff; line-height: 1.25; letter-spacing: -.01em;
}
.jfl-lm-header p {
  margin: 0; font-size: 12.5px; color: rgba(255,255,255,0.82); line-height: 1.4;
}
.jfl-lm-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85); width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.jfl-lm-close:hover { background: rgba(255,255,255,0.28); color: #fff; }

/* Glass form body */
.jfl-lm-body { padding: 18px 18px 20px; }
.jfl-lm-field { margin-bottom: 11px; }
.jfl-lm-field label {
  display: block; font-size: 10.5px; font-weight: 700;
  color: #7c3aed; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 5px;
}
.jfl-lm-field input {
  width: 100%; box-sizing: border-box; padding: 10px 13px;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(124,58,237,0.2);
  border-radius: 11px; font-size: 13px; font-family: inherit;
  color: #1f2937; outline: none;
  transition: border-color 0.18s, background 0.18s;
  backdrop-filter: blur(8px);
}
.jfl-lm-field input::placeholder { color: #9ca3af; }
.jfl-lm-field input:focus {
  border-color: #a855f7;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}
.jfl-lm-field input.jfl-err { border-color: #ef4444; }
.jfl-lm-cta {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  border: none; color: #fff; border-radius: 13px;
  font-size: 14.5px; font-weight: 700; cursor: pointer;
  letter-spacing: .01em; margin-top: 4px;
  box-shadow: 0 6px 24px rgba(124,58,237,0.4);
  transition: all 0.2s;
}
.jfl-lm-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(124,58,237,0.55); }
.jfl-lm-note {
  text-align: center; font-size: 11px; color: #9ca3af; margin-top: 8px;
}

/* ── Playbook Full-Screen Overlay ── */
#jfl-playbook-ov {
  position: fixed; inset: 0;
  background: rgba(15,10,30,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px; box-sizing: border-box;
}
#jfl-playbook-ov.open { opacity: 1; pointer-events: all; }

#jfl-playbook-modal {
  position: relative;
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  border-radius: 24px; overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 0 1.5px rgba(168,85,247,0.3),
              0 30px 90px rgba(124,58,237,0.3),
              0 0 60px rgba(236,72,153,0.15);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  overflow-y: auto;
}
#jfl-playbook-ov.open #jfl-playbook-modal { transform: translateY(0) scale(1); }

.jfl-pb-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 5;
}
.jfl-pb-close:hover { background: rgba(255,255,255,0.3); }

.jfl-pb-header {
  padding: 32px 28px 28px; text-align: center;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
}
.jfl-pb-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px; padding: 5px 16px;
  font-size: 12px; font-weight: 700; color: #fff;
  letter-spacing: .05em; margin-bottom: 12px;
}
.jfl-pb-header h2 {
  margin: 0 0 8px; font-size: 24px; font-weight: 800;
  color: #fff; letter-spacing: -.02em; line-height: 1.2;
}
.jfl-pb-header p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.5; }

.jfl-pb-content { padding: 24px 28px 32px; }
.jfl-pb-section {
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}
.jfl-pb-section:last-of-type { border-bottom: none; }
.jfl-pb-section h4 {
  margin: 0 0 8px; font-size: 15px; font-weight: 700; color: #111827;
  display: flex; align-items: center; gap: 10px;
}
.jfl-pb-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff; font-size: 11px; font-weight: 800;
}
.jfl-pb-section p {
  margin: 0; font-size: 13px; color: #4b5563; line-height: 1.6;
}
.jfl-pb-cta-wrap {
  margin-top: 24px; text-align: center;
  padding: 24px; background: #faf5ff;
  border-radius: 16px; border: 1px solid rgba(168,85,247,0.15);
}
.jfl-pb-cta-note { margin: 0 0 14px; font-size: 13px; color: #6b7280; }
.jfl-pb-cta {
  display: inline-block; padding: 14px 32px;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  border: none; color: #fff; border-radius: 13px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(124,58,237,0.4);
  transition: all 0.2s;
}
.jfl-pb-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.55); }

/* ── Tablet (768–991px) ── */
@media (min-width: 768px) and (max-width: 991.98px) {
  #jfl-cal-popup { width: 340px; }
  .jfl-lm-card { max-width: 400px; }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767.98px) {
  #jfl-cal-popup { width: calc(100vw - 40px); right: 12px; }
  .jfl-lm-card { max-width: calc(100vw - 40px); border-radius: 18px; }
  .jfl-lm-header { padding: 18px 16px 14px; }
  .jfl-lm-header h3 { font-size: 17px; }
  .jfl-lm-header p { font-size: 12px; }
  .jfl-lm-body { padding: 14px 14px 16px; }
  .jfl-lm-field { margin-bottom: 9px; }
  #jfl-playbook-modal { border-radius: 18px; }
  .jfl-pb-content { padding: 16px 16px 22px; }
  .jfl-pb-header { padding: 22px 20px 16px; }
}

/* ── Small mobile (< 480px) ── */
@media (max-width: 480px) {
  #jfl-cal-popup { width: calc(100vw - 24px); right: 8px; }
  .jfl-lm-card { max-width: calc(100vw - 24px); border-radius: 16px; }
  .jfl-fab { width: 52px; height: 52px; bottom: 20px; }
  .jfl-fab-photo-img { width: 52px; height: 52px; }
  .jfl-fab-photo-fallback { width: 52px; height: 52px; }
  #jfl-cal-fab { right: 14px; }
  #jfl-lm-fab  { left: 14px; }
  .jfl-lm-notif { top: -5px; right: -5px; min-width: 24px; height: 19px; }
  #jfl-playbook-modal { border-radius: 16px; }
  .jfl-pb-content { padding: 14px 14px 20px; }
  .jfl-cal-popup { font-size: 13px; }
  .jfl-urgency-text { font-size: 11.5px; }
  .jfl-urgency-timer { font-size: 12px; }
}

/* ── Extra small (< 360px) ── */
@media (max-width: 359px) {
  .jfl-fab { width: 48px; height: 48px; bottom: 16px; }
  .jfl-fab-photo-img { width: 48px; height: 48px; }
  .jfl-fab-photo-fallback { width: 48px; height: 48px; }
  #jfl-cal-fab { right: 10px; }
  #jfl-lm-fab  { left: 10px; }
  #jfl-cal-popup { width: calc(100vw - 16px); right: 6px; }
  .jfl-lm-lm-popup { padding: 12px; }
}
