/* ============================================================
   Fortyleeni — dark editorial theme ("bordeaux & steel")
   Inspired by design.png: near-black base, plum/berry + dusty
   steel-blue accents, Fraunces display + Manrope body.
   Plain CSS, no Tailwind: lives in priv/static/assets, served
   as-is; default.css (CoreComponents/daisyUI) loads first, so
   rules here win the cascade.
   ============================================================ */

:root {
  --fl-bg: #0a0709;
  --fl-bg-2: #140e12;
  --fl-card: #120c10;
  --fl-card-2: #1c131a;
  --fl-ink: #efe8ec;
  --fl-ink-soft: #c9bcc4;
  --fl-muted: #96878f;
  --fl-plum: #612940;
  --fl-drapery: #331526;
  --fl-floral: #805663;
  --fl-ice: #88cbe8;
  --fl-ice-2: #b3dff4;
  --fl-rose: #d48a96;
  --fl-gold: #d9a860;
  --fl-green: #7fae8f;
  --fl-line: rgba(136, 203, 232, 0.16);
  --fl-radius: 26px;
  --fl-radius-sm: 16px;
  --fl-shadow: 0 24px 52px -22px rgba(0, 0, 0, 0.7);
  --fl-glow: 0 10px 30px -12px rgba(136, 203, 232, 0.35);
  --fl-font: "Manrope", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, sans-serif;
  --fl-font-display: "Antic Didone", Georgia, "Times New Roman", serif;
  --fl-font-didone: "Antic Didone", "Didot", "Bodoni MT", serif;
  --fl-font-script: "Ballet", cursive, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--fl-font);
  color: var(--fl-ink);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 520px at 88% -12%, rgba(98, 45, 75, 0.5), transparent 60%),
    radial-gradient(820px 540px at -12% 28%, rgba(55, 72, 83, 0.45), transparent 55%),
    radial-gradient(760px 520px at 55% 112%, rgba(80, 33, 55, 0.38), transparent 62%),
    var(--fl-bg);
  background-attachment: fixed;
}

/* ---------- aurora decoration layer (fixed, behind content) ---------- */

.fl-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.fl-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: fl-drift 22s ease-in-out infinite alternate;
}

.fl-aurora--plum {
  width: 46vw;
  height: 46vw;
  left: -12vw;
  top: -14vw;
  background: radial-gradient(circle at 35% 35%, rgba(98, 45, 75, 0.85), transparent 68%);
}

.fl-aurora--steel {
  width: 40vw;
  height: 40vw;
  right: -10vw;
  top: 22vh;
  background: radial-gradient(circle at 60% 40%, rgba(87, 117, 138, 0.6), transparent 68%);
  animation-delay: -8s;
  animation-duration: 26s;
}

.fl-aurora--berry {
  width: 44vw;
  height: 44vw;
  left: 18vw;
  bottom: -18vw;
  background: radial-gradient(circle at 50% 50%, rgba(80, 33, 55, 0.8), transparent 70%);
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes fl-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(4vw, -3vh) scale(1.12);
  }
}

/* ---------- plant silhouettes (fixed, behind content) ---------- */

.fl-plant {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.fl-plant--tr {
  background-image: url("/images/plants/plant8-c2b5f949aca9b0b81bcc149e37c7ecf8.svg?vsn=d");
  width: 46vmin;
  height: 88vmin;
  right: -6vmin;
  top: -6vmin;
  opacity: 0.28;
  transform: scale(-1, -1);
}

.fl-plant--bl {
  background-image: url("/images/plants/plant5-8451f35809460a18751a129af36f2096.svg?vsn=d");
  width: 52vmin;
  height: 88vmin;
  left: -8vmin;
  bottom: -4vmin;
  opacity: 0.34;
}

.fl-main,
.fl-print {
  position: relative;
  z-index: 1;
}

/* ---------- header / language toggle ---------- */

.fl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(13, 12, 15, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fl-line);
}

.fl-brand {
  font-family: var(--fl-font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
  color: var(--fl-ink);
  text-decoration: none;
}

.fl-brand-40 {
  color: var(--fl-ice);
  margin-left: 3px;
  font-style: italic;
}

.fl-lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--fl-line);
}

.fl-lang-btn {
  border: 0;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--fl-muted);
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.fl-lang-btn--on {
  background: var(--fl-ice);
  color: #101418;
  box-shadow: 0 4px 12px -4px rgba(108, 150, 177, 0.5);
}

/* ---------- page shell ---------- */

.fl-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 18px 96px;
}

.fl-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fl-demo-badge {
  align-self: center;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fl-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fl-line);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- hero with gentle breathing ---------- */

.fl-hero {
  text-align: center;
  padding: 26px 10px 10px;
  animation: fl-breathe 6.5s ease-in-out infinite;
}

.fl-hero--compact {
  padding: 6px 10px 0;
}

.fl-hero-title {
  margin: 0 0 8px;
  font-family: var(--fl-font-display);
  font-weight: 600;
  font-size: 2.9rem;
  line-height: 1.06;
  letter-spacing: 0.01em;
  background: linear-gradient(
    115deg,
    var(--fl-ice-2),
    var(--fl-ice) 45%,
    var(--fl-rose)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- fête / monogram / numeral / fleur-de-lis decorations ---------- */

.fl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fl-fete {
  margin: 0;
  font-family: var(--fl-font-script);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--fl-ice);
  letter-spacing: 0.02em;
}

.fl-monogram {
  margin: 0 0 4px;
  font-family: var(--fl-font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fl-ice);
}

.fl-numeral-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 5rem;
}

.fl-numeral {
  font-family: var(--fl-font-didone);
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.9;
  color: var(--fl-plum);
}

.fl-numeral-wrap .fl-fete {
  position: absolute;
  top: auto;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 3.8rem;
  text-shadow: 0 0 20px rgba(10, 7, 9, 0.85);
  pointer-events: none;
}

.fl-hero-villa {
  margin: 0 0 4px;
  font-family: var(--fl-font-display);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fl-ice);
}

.fl-hero-date {
  margin: 0 0 8px;
  font-family: var(--fl-font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fl-ice);
}

.fl-fleur-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 10px;
  color: var(--fl-plum);
}

.fl-fleur-divider::before,
.fl-fleur-divider::after {
  content: "";
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, transparent, var(--fl-plum));
}

.fl-fleur-divider::after {
  background: linear-gradient(90deg, var(--fl-plum), transparent);
}

.fl-fleur {
  color: inherit;
  animation: fl-bloom 7s ease-in-out infinite;
}

@keyframes fl-bloom {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.06);
  }
}

.fl-hero-sub {
  margin: 0;
  color: var(--fl-ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

@keyframes fl-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.012);
    opacity: 0.97;
  }
}

/* ---------- cards & fade-up ---------- */

.fl-card {
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius);
  padding: 22px;
  box-shadow: var(--fl-shadow);
  animation: fl-fade-up 0.5s ease both;
}

.fl-card:nth-of-type(2) {
  animation-delay: 0.06s;
}

.fl-card:nth-of-type(3) {
  animation-delay: 0.12s;
}

@keyframes fl-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fl-section-title {
  margin: 0 0 6px;
  font-family: var(--fl-font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0;
}

/* The "when" line — deliberately prominent, right above the day chips. */
.fl-range {
  margin: 2px 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fl-ice-2);
  letter-spacing: 0.01em;
}

.fl-caption {
  margin: 0 0 14px;
  color: var(--fl-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fl-muted-note {
  margin: 4px 0 0;
  color: var(--fl-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---------- reply choice ---------- */

.fl-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 560px) {
  .fl-choice {
    grid-template-columns: 1fr;
  }
}

.fl-choice-card {
  text-align: left;
  border: 1px solid var(--fl-line);
  cursor: pointer;
  border-radius: var(--fl-radius);
  padding: 22px;
  background: var(--fl-card);
  box-shadow: var(--fl-shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fl-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 150, 177, 0.5);
}

.fl-choice-card h3 {
  margin: 0 0 4px;
  font-family: var(--fl-font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--fl-ink);
}

.fl-choice-card p {
  margin: 0;
  color: var(--fl-ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.fl-choice-card--coming {
  background: linear-gradient(150deg, var(--fl-card-2), var(--fl-card));
}

.fl-choice-card--decline {
  background: linear-gradient(150deg, var(--fl-drapery), var(--fl-card));
}

/* ---------- day chips ---------- */

.fl-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.fl-day {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--fl-card-2);
  border: 1.5px solid rgba(98, 45, 75, 0.55);
  cursor: pointer;
  user-select: none;
  transition: all 0.18s ease;
}

.fl-day:hover {
  border-color: var(--fl-ice);
}

.fl-day input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fl-day-top {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.fl-day-wd {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fl-muted);
}

.fl-day-num {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fl-ink);
}

.fl-day--on {
  background: linear-gradient(130deg, var(--fl-ice), var(--fl-ice-2));
  border-color: transparent;
  box-shadow: var(--fl-glow);
}

.fl-day--on .fl-day-wd,
.fl-day--on .fl-day-num {
  color: #101418;
}

.fl-day--key {
  border-color: var(--fl-ice);
}

.fl-day-star {
  font-size: 0.52rem;
  line-height: 1;
  color: var(--fl-gold);
}

.fl-day--on .fl-day-star {
  color: #101418;
}

/* Smaller day circles, used in the admin day editor. */
.fl-days--sm {
  gap: 6px;
}

.fl-day--sm {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.fl-day--sm .fl-day-wd {
  font-size: 0.58rem;
}

.fl-day--sm .fl-day-num {
  font-size: 0.95rem;
}

.fl-edit-form {
  width: 100%;
  margin-top: 6px;
}

.fl-count {
  margin: 12px 2px 0;
  color: var(--fl-muted);
  font-size: 0.85rem;
}

.fl-price-note {
  margin: 2px 0 12px;
  color: var(--fl-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.fl-total {
  margin: 8px 2px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fl-ice-2);
}

/* ---------- nudge & error ---------- */

.fl-nudge {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--fl-radius-sm);
  background: rgba(217, 168, 96, 0.1);
  border: 1px solid rgba(217, 168, 96, 0.35);
  color: var(--fl-gold);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: fl-fade-up 0.3s ease both;
}

.fl-nudge p {
  margin: 0;
}

.fl-nudge p + p {
  margin-top: 4px;
}

.fl-error {
  margin: 12px 2px 0;
  color: var(--fl-rose);
  font-size: 0.88rem;
  font-weight: 600;
}

.fl-notice {
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: var(--fl-radius-sm);
  background: rgba(127, 174, 143, 0.1);
  border: 1px solid rgba(127, 174, 143, 0.35);
  color: var(--fl-green);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: fl-fade-up 0.3s ease both;
}

/* ---------- form ---------- */

.fl-form-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

/* Retheme the daisyUI classes used by the <.input> component */
.fl-body .fieldset {
  margin-bottom: 6px;
}

.fl-body .label {
  color: var(--fl-ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.fl-body .input,
.fl-body .textarea,
.fl-body .select {
  border-radius: var(--fl-radius-sm);
  border: 1.5px solid var(--fl-line);
  background: var(--fl-bg-2);
  color: var(--fl-ink);
  font-size: 0.95rem;
  padding: 11px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fl-body .input::placeholder,
.fl-body .textarea::placeholder {
  color: var(--fl-muted);
}

.fl-body .input:focus,
.fl-body .textarea:focus,
.fl-body .select:focus {
  outline: none;
  border-color: var(--fl-ice);
  box-shadow: 0 0 0 4px rgba(108, 150, 177, 0.18);
}

.fl-body .input-error,
.fl-body .textarea-error {
  border-color: var(--fl-rose);
}

.fl-body .text-error {
  color: var(--fl-rose);
  font-size: 0.86rem;
}

.fl-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* ---------- buttons ---------- */

.fl-btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #101418;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(
    130deg,
    var(--fl-ice-2),
    var(--fl-ice) 45%,
    var(--fl-ice-2)
  );
  box-shadow: 0 14px 26px -12px rgba(108, 150, 177, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fl-btn:hover {
  transform: translateY(-2px);
}

.fl-btn--ghost {
  background: var(--fl-bg-2);
  color: var(--fl-ink-soft);
  border: 1.5px solid var(--fl-line);
  box-shadow: none;
  font-size: 0.85rem;
  padding: 10px 16px;
}

.fl-btn--ghost:hover {
  border-color: var(--fl-ice);
  color: var(--fl-ink);
}

.fl-btn-link {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--fl-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px;
}

.fl-btn-link:hover {
  color: var(--fl-ice-2);
}

/* ---------- thanks screens ---------- */

.fl-thanks {
  text-align: center;
  padding: 42px 22px;
}

.fl-thanks h1 {
  margin: 0 0 8px;
  font-family: var(--fl-font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.fl-thanks p {
  margin: 0 0 4px;
  color: var(--fl-ink-soft);
}

.fl-thanks-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--fl-ice), var(--fl-plum));
  color: var(--fl-ink);
  font-size: 2rem;
  box-shadow: var(--fl-shadow);
  animation: fl-pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}

@keyframes fl-pop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- admin ---------- */

.fl-admin .fl-card {
  margin-top: 0;
}

.fl-queue {
  display: flex;
  flex-direction: column;
}

.fl-pending {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid var(--fl-line);
}

.fl-pending:last-child {
  border-bottom: 0;
}

.fl-pending-days {
  margin-top: 3px;
  color: var(--fl-ink-soft);
  font-size: 0.85rem;
}

.fl-pending-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fl-email {
  color: var(--fl-ice-2);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 8px;
}

.fl-email:hover {
  text-decoration: underline;
}

.fl-print-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--fl-line);
  background: var(--fl-bg-2);
  color: var(--fl-ice-2);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.fl-print-link:hover {
  transform: translateY(-1px);
}

/* ---------- print page ---------- */

.fl-print {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  color: var(--fl-ink);
}

.fl-print h1 {
  margin: 0 0 2px;
  font-family: var(--fl-font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.fl-print-range {
  margin: 0 0 18px;
  color: var(--fl-ice-2);
  font-weight: 700;
}

.fl-print-h2 {
  margin: 26px 0 8px;
  font-size: 1.05rem;
}

.fl-print-list {
  margin: 0;
  padding-left: 18px;
  color: var(--fl-ink-soft);
}

.fl-print-toolbar {
  text-align: right;
  margin-bottom: 16px;
}

.fl-matrix--print {
  min-width: 0;
}

@media print {
  body {
    background: #fff;
  }

  .fl-header,
  .fl-print-toolbar,
  .no-print,
  .fl-aurora {
    display: none !important;
  }

  .fl-print {
    max-width: none;
    padding: 0;
  }

  .fl-matrix {
    border: 1px solid #999;
  }

  /* force the dark matrix light for print */
  .fl-matrix,
  .fl-matrix th,
  .fl-matrix td,
  .fl-matrix thead th,
  .fl-matrix .fl-count-row td {
    background: #fff !important;
    color: #222 !important;
    border-color: #ddd !important;
  }

  .fl-th--key,
  .fl-matrix .fl-count-row th {
    background: #f3e8ed !important;
    color: #612940 !important;
  }

  .fl-cell--on {
    color: #333 !important;
  }

  .fl-cell--pending {
    color: #a67c2e !important;
  }
}

/* ---------- matrix ---------- */

.fl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--fl-radius-sm);
  border: 1px solid var(--fl-line);
}

.fl-matrix {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 540px;
  font-size: 0.86rem;
  background: var(--fl-bg-2);
}

.fl-matrix th,
.fl-matrix td {
  padding: 7px 2px;
  text-align: center;
  border-left: 1px solid var(--fl-line);
  border-bottom: 1px solid var(--fl-line);
}

.fl-matrix thead th {
  background: var(--fl-card-2);
  color: var(--fl-ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.fl-matrix thead th small {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--fl-muted);
  margin-top: 2px;
}

.fl-th--key {
  background: rgba(98, 45, 75, 0.4);
  color: var(--fl-ice-2);
}

.fl-name {
  text-align: left;
  min-width: 76px;
  font-weight: 600;
  cursor: pointer;
  vertical-align: top;
}

.fl-name-line {
  display: block;
}

.fl-name .fl-pill {
  display: inline-block;
  margin: 4px 0 0;
}

.fl-name-comment {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  color: var(--fl-muted);
  font-size: 0.76rem;
  line-height: 1.4;
  max-width: 220px;
}

.fl-cell {
  color: transparent;
}

.fl-cell--on {
  color: var(--fl-ice-2);
  font-weight: 700;
}

.fl-cell--pending {
  color: var(--fl-gold);
}

.fl-count-row th {
  border-top: 2px solid rgba(98, 45, 75, 0.6);
}

.fl-count-row td {
  background: rgba(80, 33, 55, 0.22);
  font-weight: 700;
  color: var(--fl-ink);
}

.fl-cell--full {
  color: var(--fl-rose);
}

.fl-pill {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(98, 45, 75, 0.45);
  color: var(--fl-ice-2);
  margin-left: 8px;
  vertical-align: middle;
}

.fl-pill--pending {
  background: rgba(217, 168, 96, 0.15);
  color: var(--fl-gold);
}

/* ---------- flash / toast retheme (daisyUI) ---------- */

.fl-body .toast {
  gap: 0.5rem;
}

.fl-body .alert {
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-sm);
  color: var(--fl-ink);
  background: var(--fl-card-2);
  box-shadow: var(--fl-shadow);
}

.fl-body .alert-info {
  border-color: rgba(108, 150, 177, 0.4);
}

.fl-body .alert-error {
  border-color: rgba(212, 138, 150, 0.45);
  color: var(--fl-rose);
}

/* ---------- admin editing ---------- */

.fl-edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.fl-cell--actions {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  white-space: nowrap;
}

.fl-icon-btn {
  border: none;
  background: none;
  color: var(--fl-ink-soft);
  cursor: pointer;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.fl-icon-btn:hover {
  color: var(--fl-ice-2);
  background: rgba(108, 150, 177, 0.14);
}

.fl-icon-btn--danger:hover {
  color: var(--fl-rose);
}

/* ---------- scrollbar (dark) ---------- */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--fl-card-2);
  border-radius: 999px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .fl-hero,
  .fl-card,
  .fl-thanks-mark,
  .fl-nudge,
  .fl-aurora-blob,
  .fl-fleur {
    animation: none !important;
    transition: none !important;
  }
}
