/* ================================================================
   Fingo UI Enhancements
   Dark mode, mobile nav, toasts, modals, skeletons, empty states,
   offline banner, pull-to-refresh, accessibility improvements.
   ================================================================ */

/* ---------------------------------------------------------------- */
/* 0. CSS Custom Properties — Dark Mode                             */
/* ---------------------------------------------------------------- */

:root {
  --fingo-toast-bg: #ffffff;
  --fingo-toast-border: rgba(60, 60, 67, 0.12);
  --fingo-toast-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
  --fingo-bottom-nav-bg: rgba(255, 255, 255, 0.88);
  --fingo-bottom-nav-border: rgba(60, 60, 67, 0.08);
  --fingo-offline-bg: #fff7ed;
  --fingo-offline-text: #9a3412;
  --fingo-offline-border: #fdba74;
  --fingo-skeleton-bg: rgba(60, 60, 67, 0.08);
  --fingo-skeleton-shine: rgba(255, 255, 255, 0.5);
  --fingo-empty-text: var(--fingo-text-muted);
  --fingo-fab-shadow: 0 12px 28px rgba(10, 132, 255, 0.35);
}

[data-theme="dark"] {
  --fingo-primary: #58a6ff;
  --fingo-primary-gradient: linear-gradient(180deg, #58a6ff 0%, #0A84FF 100%);
  --fingo-text: #f5f5f7;
  --fingo-text-muted: rgba(235, 235, 245, 0.6);
  --fingo-bg: #0a0a0f;
  --fingo-surface: rgba(28, 28, 30, 0.82);
  --fingo-border: rgba(235, 235, 245, 0.1);
  --fingo-glass: rgba(28, 28, 30, 0.66);
  --fingo-glass-border: rgba(235, 235, 245, 0.08);
  --fingo-toast-bg: rgba(28, 28, 30, 0.95);
  --fingo-toast-border: rgba(235, 235, 245, 0.1);
  --fingo-toast-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  --fingo-bottom-nav-bg: rgba(28, 28, 30, 0.92);
  --fingo-bottom-nav-border: rgba(235, 235, 245, 0.08);
  --fingo-offline-bg: #2a1810;
  --fingo-offline-text: #fdba74;
  --fingo-offline-border: #7c2d12;
  --fingo-skeleton-bg: rgba(235, 235, 245, 0.08);
  --fingo-skeleton-shine: rgba(255, 255, 255, 0.05);
  --fingo-empty-text: rgba(235, 235, 245, 0.5);
  --fingo-fab-shadow: 0 12px 28px rgba(10, 132, 255, 0.45);
}

[data-theme="dark"] .fingo-input {
  background: rgba(28, 28, 30, 0.6);
  border-color: rgba(235, 235, 245, 0.1);
  color: var(--fingo-text);
}

[data-theme="dark"] .fingo-input:focus {
  background: rgba(28, 28, 30, 0.8);
  border-color: var(--fingo-primary);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.2);
}

[data-theme="dark"] .fingo-card {
  background: var(--fingo-surface);
  border-color: var(--fingo-glass-border);
}

[data-theme="dark"] .fingo-sidebar {
  background: rgba(28, 28, 30, 0.72);
  border-color: var(--fingo-border);
}

[data-theme="dark"] .chat-messages {
  background: #111;
}

[data-theme="dark"] .staff .message-bubble {
  background: rgba(28, 28, 30, 0.8);
  border-color: var(--fingo-border);
}

[data-theme="dark"] .fingo-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .fingo-modal {
  background: var(--fingo-surface);
}

[data-theme="dark"] .summary-card {
  background: rgba(28, 28, 30, 0.5);
}

/* ---------------------------------------------------------------- */
/* 1. Sidebar Icons & Footer                                        */
/* ---------------------------------------------------------------- */

.sidebar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 2;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--fingo-border);
}

.dark-mode-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--fingo-text-muted);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fingo-text);
}

/* ---------------------------------------------------------------- */
/* 2. Toast Stack                                                   */
/* ---------------------------------------------------------------- */

.fingo-toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  pointer-events: none;
}

.fingo-toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--fingo-toast-bg);
  border: 1px solid var(--fingo-toast-border);
  box-shadow: var(--fingo-toast-shadow);
  backdrop-filter: blur(12px);
  pointer-events: auto;
  animation: slideInUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fingo-toast.success { border-left: 4px solid var(--fingo-success); }
.fingo-toast.error   { border-left: 4px solid var(--fingo-error); }
.fingo-toast.warning { border-left: 4px solid #f59e0b; }
.fingo-toast.info    { border-left: 4px solid var(--fingo-primary); }

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fingo-toast.success .toast-icon { color: var(--fingo-success); }
.fingo-toast.error   .toast-icon { color: var(--fingo-error); }
.fingo-toast.warning .toast-icon { color: #f59e0b; }
.fingo-toast.info    .toast-icon { color: var(--fingo-primary); }

.toast-message {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--fingo-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.toast-close:hover {
  color: var(--fingo-text);
  background: rgba(0,0,0,0.05);
}

.toast-close-icon { width: 14px; height: 14px; }

@keyframes slideOutRight {
  to { opacity: 0; transform: translateX(40px); }
}

/* ---------------------------------------------------------------- */
/* 3. Mobile Bottom Navigation                                      */
/* ---------------------------------------------------------------- */

.fingo-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--fingo-bottom-nav-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--fingo-bottom-nav-border);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
}

.fingo-bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border: none;
  background: none;
  color: var(--fingo-text-muted);
  font-size: 0.6875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  flex: 1;
}

.fingo-bottom-nav button svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.fingo-bottom-nav button.active,
.fingo-bottom-nav button:hover {
  color: var(--fingo-primary);
}

/* ---------------------------------------------------------------- */
/* 4. Offline Banner                                                */
/* ---------------------------------------------------------------- */

.fingo-offline-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--fingo-offline-bg);
  color: var(--fingo-offline-text);
  border-bottom: 1px solid var(--fingo-offline-border);
  font-size: 0.875rem;
  font-weight: 500;
}

.offline-icon { width: 18px; height: 18px; flex-shrink: 0; }

.offline-close {
  margin-left: auto;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.offline-close:hover { background: rgba(0,0,0,0.05); }

/* ---------------------------------------------------------------- */
/* 5. Pull-to-Refresh Indicator                                     */
/* ---------------------------------------------------------------- */

.fingo-pull-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--fingo-surface);
  border-bottom: 1px solid var(--fingo-border);
  backdrop-filter: blur(12px);
  font-size: 0.875rem;
  color: var(--fingo-text-muted);
}

.fingo-pull-spinner svg {
  width: 24px;
  height: 24px;
  color: var(--fingo-primary);
  transition: transform 0.1s linear;
}

/* ---------------------------------------------------------------- */
/* 6. Skeleton Loaders                                              */
/* ---------------------------------------------------------------- */

.fingo-skeleton {
  background: var(--fingo-skeleton-bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.fingo-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--fingo-skeleton-shine), transparent);
  animation: skeletonShine 1.5s infinite;
}

.fingo-skeleton-text {
  height: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 6px;
}

.fingo-skeleton-title {
  height: 1.5rem;
  width: 60%;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.fingo-skeleton-card {
  height: 160px;
  margin-bottom: 1.5rem;
  border-radius: 18px;
}

.fingo-skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes skeletonShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---------------------------------------------------------------- */
/* 7. Empty States                                                  */
/* ---------------------------------------------------------------- */

.fingo-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--fingo-empty-text);
}

.fingo-empty-state svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  opacity: 0.4;
  stroke-width: 1.5;
}

.fingo-empty-state h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--fingo-text);
}

.fingo-empty-state p {
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
  max-width: 300px;
}

/* ---------------------------------------------------------------- */
/* 8. Floating Action Button (FAB)                                */
/* ---------------------------------------------------------------- */

.fingo-fab {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fingo-primary-gradient);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--fingo-fab-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fingo-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 32px rgba(10, 132, 255, 0.4);
}

.fingo-fab:active {
  transform: translateY(0) scale(0.97);
}

.fingo-fab svg {
  width: 24px;
  height: 24px;
}

/* ---------------------------------------------------------------- */
/* 9. Modal Enhancements                                            */
/* ---------------------------------------------------------------- */

.fingo-modal-overlay {
  padding: 1rem;
}

.fingo-modal-overlay[x-cloak] {
  display: none !important;
}

/* ---------------------------------------------------------------- */
/* 10. Focus & Accessibility                                        */
/* ---------------------------------------------------------------- */

.fingo-button:focus-visible,
.fingo-input:focus-visible,
.menu-item:focus-visible,
.dark-mode-toggle:focus-visible,
.fingo-bottom-nav button:focus-visible,
.toast-close:focus-visible,
.close-btn:focus-visible {
  outline: 2px solid var(--fingo-primary);
  outline-offset: 2px;
}

.fingo-modal-overlay:focus-visible {
  outline: none;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--fingo-primary);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 5000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ---------------------------------------------------------------- */
/* 11. Responsive — Mobile-First Overrides                        */
/* ---------------------------------------------------------------- */

@media (max-width: 768px) {
  .fingo-sidebar {
    display: none !important;
  }

  .fingo-app-layout:has(.fingo-sidebar[style*="display: block"]) .fingo-main-content {
    margin-left: 0 !important;
  }

  .fingo-main-content {
    padding: 1rem;
    margin-left: 0 !important;
    padding-bottom: calc(1rem + 70px); /* space for bottom nav */
  }

  .fingo-bottom-nav {
    display: flex;
  }

  .fingo-fab {
    bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .fingo-toast-container {
    right: 1rem;
    left: 1rem;
    bottom: calc(5rem + env(safe-area-inset-bottom));
    max-width: none;
  }

  .fingo-title {
    font-size: 1.5rem;
  }

  .fingo-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .loan-cards-grid,
  .offer-cards-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .data-export-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .data-export-card .fingo-button {
    width: 100%;
  }

  .dashboard-content {
    padding-bottom: 1rem;
  }

  #dashboard-summary {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .chat-container {
    height: calc(100vh - 180px);
  }
}

@media (max-width: 480px) {
  .fingo-title {
    font-size: 1.25rem;
  }

  .fingo-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .fingo-button {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }

  .fingo-input {
    min-height: 48px;
    padding: 0.75rem 1rem;
  }

  #dashboard-summary {
    grid-template-columns: 1fr 1fr !important;
  }

  .spec-value {
    font-size: 1rem;
  }

  .amount-value {
    font-size: 1.5rem;
  }
}

/* ---------------------------------------------------------------- */
/* 13. Onboarding Enhancements                                      */
/* ---------------------------------------------------------------- */

/* Inline validation errors */
.fingo-inline-error {
  color: var(--fingo-error);
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.fingo-inline-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--fingo-error);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
}

.fingo-input-error {
  border-color: var(--fingo-error) !important;
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1) !important;
}

/* Document upload drop zones */
.fingo-drop-zone {
  border: 2px dashed var(--fingo-border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  position: relative;
}

.fingo-drop-zone:hover {
  border-color: var(--fingo-primary);
  background: rgba(10, 132, 255, 0.03);
}

.fingo-drop-zone.drag-over {
  border-color: var(--fingo-primary);
  background: rgba(10, 132, 255, 0.06);
}

.fingo-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.fingo-drop-zone .fingo-label {
  pointer-events: none;
  margin-bottom: 0.5rem;
}

.fingo-drop-hint {
  font-size: 0.875rem;
  color: var(--fingo-text-muted);
  pointer-events: none;
}

/* File preview */
.fingo-file-preview {
  margin-top: 0.75rem;
}

.fingo-preview-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--fingo-bg);
  border-radius: 12px;
}

.fingo-preview-box img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.fingo-preview-doc {
  font-size: 2rem;
  line-height: 1;
}

.fingo-preview-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.875rem;
}

.fingo-preview-meta strong {
  color: var(--fingo-text);
  font-weight: 600;
}

.fingo-preview-meta span {
  color: var(--fingo-text-muted);
  font-size: 0.75rem;
}

/* KYC Progress Percentage Bar */
.fingo-kyc-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--fingo-border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.fingo-kyc-progress-fill {
  height: 100%;
  background: var(--fingo-primary-gradient);
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fingo-kyc-progress-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fingo-primary);
  margin-bottom: 0.5rem;
}

/* BVN Searchable Bank Dropdown */
.fingo-bank-search {
  position: relative;
}

.fingo-bank-search .fingo-input {
  padding-right: 2.5rem;
}

.fingo-bank-search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fingo-text-muted);
  pointer-events: none;
}

.fingo-bank-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 240px;
  overflow-y: auto;
  background: var(--fingo-toast-bg);
  border: 1px solid var(--fingo-border);
  border-radius: 12px;
  box-shadow: var(--fingo-shadow);
  margin-top: 0.5rem;
}

.fingo-bank-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.9375rem;
}

.fingo-bank-option:hover,
.fingo-bank-option.active {
  background: rgba(10, 132, 255, 0.06);
}

.fingo-bank-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--fingo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fingo-primary);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------- */
/* 15. Toggle Switches                                              */
/* ---------------------------------------------------------------- */

.fingo-toggle {
  appearance: none;
  width: 44px;
  height: 26px;
  background: var(--fingo-border);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.fingo-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.fingo-toggle:checked {
  background: var(--fingo-primary);
}

.fingo-toggle:checked::after {
  transform: translateX(18px);
}

/* ---------------------------------------------------------------- */
/* 16. Quick Reply Chips                                            */
/* ---------------------------------------------------------------- */

.fingo-quick-replies {
  scrollbar-width: none;
}

.fingo-quick-replies::-webkit-scrollbar {
  display: none;
}

.fingo-chip {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--fg-border, rgba(60, 60, 67, 0.12));
  background: var(--fg-surface, #fff);
  color: var(--fg-text, #1c1c1e);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.fingo-chip:hover {
  background: rgba(10, 132, 255, 0.06);
  border-color: var(--fg-primary, #0A84FF);
}

/* ---------------------------------------------------------------- */
/* 17. Typing Indicator                                             */
/* ---------------------------------------------------------------- */

.fingo-typing-dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.fingo-typing-dots span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fingo-text-muted);
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.fingo-typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.fingo-typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ---------------------------------------------------------------- */
/* 18. Card Brand Logos                                             */
/* ---------------------------------------------------------------- */

.fingo-card-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 26px;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  flex-shrink: 0;
}

.fingo-card-brand.visa { background: #1a1f71; }
.fingo-card-brand.mastercard { background: #eb001b; }
.fingo-card-brand.verve { background: #ee3124; }
.fingo-card-brand.unknown { background: var(--fingo-text-muted); }

.fingo-card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--fingo-border);
  border-radius: 14px;
  background: var(--fingo-toast-bg);
}

.fingo-card-meta {
  flex: 1;
  min-width: 0;
}

.fingo-card-meta strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--fingo-text);
}

.fingo-card-meta span {
  font-size: 0.8125rem;
  color: var(--fingo-text-muted);
}

/* ---------------------------------------------------------------- */
/* 20. View Transitions & Micro-interactions                        */
/* ---------------------------------------------------------------- */

.fingo-container {
  animation: viewFadeIn 0.3s ease-out;
}

@keyframes viewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fingo-button,
.fingo-chip,
.menu-item {
  transition: transform 0.1s ease-out, box-shadow 0.15s ease-out;
}

.fingo-button:active,
.fingo-chip:active {
  transform: scale(0.97);
}

.fingo-card {
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.fingo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

[data-theme="dark"] .fingo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ---------------------------------------------------------------- */
/* 21. Reduced Motion                                               */
/* ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .fingo-toast,
  .fingo-skeleton::after,
  .fingo-pull-spinner,
  .view-transition,
  .fingo-typing-dots span,
  .fingo-container {
    animation: none !important;
    transition: none !important;
  }
}
