.fb-trigger {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #161b26;
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  font: 700 14px var(--font-heading, "Sora", sans-serif);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.fb-trigger:hover { border-color: #d4af37; transform: translateY(-2px); }
.fb-trigger.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.9); }
.fb-panel {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9001;
  width: 336px;
  max-width: calc(100vw - 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #161b26;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.4);
  transform-origin: bottom right;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.fb-panel.is-open { opacity: 1; pointer-events: auto; transform: scale(1); }
.fb-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 18px 4px; }
.fb-head h3 { margin: 0; font: 700 15px var(--font-heading, "Sora", sans-serif); }
.fb-close { display: flex; padding: 4px; border: 0; border-radius: 4px; background: transparent; color: #98a2b3; cursor: pointer; }
.fb-close:hover { background: rgba(255,255,255,.08); color: #fff; }
.fb-body { padding: 12px 18px 18px; }
.fb-sub { margin: 0 0 14px; color: #98a2b3; font-size: 12.5px; line-height: 1.5; }
.fb-cats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.fb-cat { padding: 7px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: #111620; color: #98a2b3; cursor: pointer; font: 500 12.5px var(--font-body, "Inter", sans-serif); }
.fb-cat.is-active { border-color: #d4af37; background: rgba(212,175,55,.14); color: #fff; }
.fb-stars { display: flex; gap: 5px; margin-bottom: 14px; }
.fb-star { padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.15); cursor: pointer; }
.fb-star.is-active { color: #f0b429; }
.fb-textarea { box-sizing: border-box; width: 100%; min-height: 76px; margin-bottom: 12px; padding: 11px 12px; resize: vertical; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: #111620; color: #fff; font: 13px var(--font-body, "Inter", sans-serif); }
.fb-textarea:focus { outline: none; border-color: #d4af37; }
.fb-upload { margin-bottom: 12px; }
.fb-upload-label { display: block; margin-bottom: 7px; color: #d7dee9; font-size: 12px; font-weight: 700; }
.fb-upload-label span { color: #98a2b3; font-weight: 500; }
.fb-upload input[type="file"] { width: 100%; color: #98a2b3; font-size: 11px; }
.fb-image-preview { display: grid; grid-template-columns: 56px 1fr; gap: 8px; align-items: center; margin-top: 9px; }
.fb-image-preview img { width: 56px; height: 44px; border-radius: 5px; border: 1px solid rgba(255,255,255,.14); object-fit: cover; }
.fb-image-remove { justify-self: start; padding: 5px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; background: transparent; color: #cbd5e1; cursor: pointer; font-size: 11px; }
.fb-image-remove:hover { border-color: #d4af37; color: #fff; }
.fb-submit { width: 100%; padding: 12px; border: 0; border-radius: 6px; background: #d4af37; color: #111620; cursor: pointer; font: 700 13.5px var(--font-heading, "Sora", sans-serif); }
.fb-submit:disabled { cursor: not-allowed; opacity: .5; }
.fb-error { min-height: 18px; margin: 8px 0 0; color: #fca5a5; font-size: 12px; }
.fb-success { display: none; padding: 34px 18px 30px; text-align: center; }
.fb-success.is-visible { display: block; }
.fb-success p { margin: 0 0 4px; font: 700 14px var(--font-heading, "Sora", sans-serif); }
.fb-success span { color: #98a2b3; font-size: 12.5px; }
@media (max-width: 640px) { .fb-trigger { right: 16px; bottom: 16px; } .fb-panel { right: 16px; bottom: 16px; } }
