/* public/css/gn-donation.css */

:root {
  --gn-accent: #f97316;
  --gn-accent-dark: #ea580c;
  --gn-accent-light: rgba(249, 115, 22, 0.1);
  --gn-success: #10b981;
  --gn-closed: #4b5563; /* Slate grey subtil */
  --gn-bg: #fafafa;
  --gn-card-bg: #ffffff;
  --gn-text-main: #1f2937;
  --gn-text-muted: #4b5563;
  --gn-border: rgba(0, 0, 0, 0.05);
  --gn-radius-lg: 24px;
  --gn-radius-md: 16px;
  --gn-shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.03);
  --gn-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
}

html { scroll-behavior: smooth; }
body { background-color: var(--gn-bg) !important; }

.donation-page-wrapper {
  background: var(--gn-bg);
  min-height: 100vh;
  padding-bottom: 60px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gn-text-main);
}
.page-title-box, .breadcrumb-wrapper, .bg-warning { display: none !important; }

.gn-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 991px) {
  .gn-container { padding: 0 20px; }
}

/* SECTION TITLES */
.gn-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gn-text-main);
  margin: 48px 0 32px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gn-section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gn-accent);
  border-radius: 4px;
}

/* MEDIA SMART CONTAINER */
.gn-media-wrap {
  width: 100%;
  height: 260px; /* Plus grand pour plus d'impact */
  position: relative;
  overflow: hidden;
  background: #f8f9fa; /* Fond neutre très propre */
  border-bottom: 1px solid var(--gn-border);
}
@media (max-width: 1024px) { .gn-media-wrap { height: 240px; } }

/* Object-fit driven by JS classes */
.gn-media-smart {
  width: 100%;
  height: 100%;
  object-fit: cover !important; /* Force le recadrage */
  transition: transform 0.4s ease;
}
/* Subtil zoom au hover sur la carte */
.gn-campaign-card:hover .gn-media-smart {
  transform: scale(1.02);
}

/* HERO: COMPACT EDITION (Closed) */
.gn-hero-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--gn-card-bg);
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  box-shadow: var(--gn-shadow-soft);
  margin-top: 24px;
  padding: 40px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
.gn-hero-compact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}
.gn-hero-compact-right {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  width: 100%;
}
.gn-compact-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: #f3f4f6;
  color: var(--gn-text-muted);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.gn-compact-title {
  font-size: clamp(22px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.gn-compact-desc {
  font-size: 1.1rem;
  color: var(--gn-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
/* Miniature Card in compact hero */
.gn-mini-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  box-sizing: border-box;
}
.gn-mini-card .gn-media-wrap { height: 200px; border-bottom: none; }
.gn-mini-body { padding: 24px; border-top: 1px solid var(--gn-border); box-sizing: border-box; }
.gn-mini-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gn-mini-finances { font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; }

@media (max-width: 991px) {
  .gn-hero-compact { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .gn-hero-compact-right { justify-content: center; }
  .gn-mini-card { max-width: 100%; }
}
@media (max-width: 767px) {
  .gn-hero-compact { padding: 20px; gap: 24px; }
  .gn-mini-body { padding: 16px; }
  .gn-compact-desc { font-size: 1rem; margin-bottom: 24px; }
}

/* HERO FULL (Active) */
.gn-hero-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gn-card-bg);
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  box-shadow: var(--gn-shadow-soft);
  margin-top: 24px;
  overflow: hidden;
}
.gn-hero-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .gn-hero-featured { grid-template-columns: 1fr; }
  .gn-hero-content { padding: 32px; }
}

/* NAVIGATION */
.gn-nav-anchors {
  display: flex;
  gap: 12px;
  margin: 40px 0 24px 0;
  flex-wrap: wrap;
}
.gn-nav-anchor {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--gn-border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--gn-text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.gn-nav-anchor:hover, .gn-nav-anchor.is-active {
  background: var(--gn-text-main);
  color: #fff;
  border-color: var(--gn-text-main);
}
.gn-nav-anchor.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  background: transparent;
  box-shadow: none;
}
.gn-count {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  font-size: 0.85rem;
}
.gn-nav-anchor.is-active .gn-count { background: rgba(255,255,255,0.2); }

/* ABSENCE MESSAGE */
.gn-empty-state {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--gn-card-bg);
  border: 1px solid var(--gn-border);
  border-radius: var(--gn-radius-md);
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}
.gn-empty-icon {
  font-size: 1.75rem;
  color: var(--gn-text-muted);
  opacity: 0.4;
}
.gn-empty-content h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 6px 0; color: var(--gn-text-main); }
.gn-empty-content p { font-size: 1rem; color: var(--gn-text-muted); margin: 0; }

/* GRIDS */
.gn-campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gn-grid-history {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .gn-campaign-grid, .gn-grid-history { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .gn-campaign-grid, .gn-grid-history { grid-template-columns: 1fr; }
}

/* CARDS PREMIUM (Historique) */
.gn-campaign-card {
  background: #ffffff;
  border-radius: var(--gn-radius-lg);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--gn-shadow-soft);
  text-decoration: none !important;
  color: inherit !important;
  height: 100%;
}
.gn-campaign-card:hover, .gn-campaign-card:focus {
  transform: translateY(-6px);
  box-shadow: var(--gn-shadow-hover);
  outline: none;
}

.gn-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Badges plus discrets */
.gn-card-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gn-status-open { background: var(--gn-accent); color: #fff; }
.gn-status-closed { background: #ffffff; color: var(--gn-text-main); border: 1px solid rgba(0,0,0,0.1); }
.gn-status-funded { background: var(--gn-success); color: #fff; }

/* Éditorialité du texte */
.gn-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gn-text-main);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.gn-card-desc {
  font-size: 1.05rem;
  color: var(--gn-text-muted);
  line-height: 1.6;
  margin-bottom: 0; /* Géré par le flex/margin-top auto du footer */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer de la carte (Finances + Action) séparé visuellement */
.gn-card-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}

/* Bloc financier */
.gn-card-finances {
  margin-bottom: 24px;
}
.gn-finance-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gn-text-main);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.gn-finance-sub {
  font-size: 0.95rem;
  color: var(--gn-text-muted);
  margin-top: 4px;
  margin-bottom: 12px;
}
.gn-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gn-progress-bar {
  flex: 1;
  height: 4px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
}
.gn-progress-fill {
  height: 100%;
  background: var(--gn-accent);
}
.gn-card-finances.is-closed .gn-progress-fill { background: var(--gn-text-muted); }
.gn-progress-pct {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gn-text-muted);
  white-space: nowrap;
}

/* Boutons premium */
.gn-btn-card {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  outline: none;
}
.gn-btn-card.is-primary { background: var(--gn-accent); color: #fff; }
.gn-btn-card.is-primary:hover { background: var(--gn-accent-dark); }
.gn-btn-card.is-secondary {
  background: var(--gn-accent-light);
  color: var(--gn-accent-dark);
  border: 1px solid transparent;
}
.gn-btn-card.is-secondary:hover {
  background: rgba(249, 115, 22, 0.18);
  color: var(--gn-accent-dark);
}
.gn-btn-card:focus {
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.gn-btn-inline { padding: 0 24px; width: auto; }

/* TRUST SECTION COMPACT */
.gn-trust-compact {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 0;
  margin: 64px 0;
  border-top: 1px solid var(--gn-border);
}
.gn-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gn-trust-icon {
  font-size: 1.25rem;
  color: var(--gn-text-muted);
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gn-trust-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gn-text-main);
}

/* PAGINATION PRÉVISIONNELLE */
.gn-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.gn-pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--gn-card-bg);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  border: 1px solid var(--gn-border);
  overflow: hidden;
}
.gn-pagination .page-item {
  margin: 0;
}
.gn-pagination .page-item:not(:last-child) {
  border-right: 1px solid var(--gn-border);
}
.gn-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 44px;
  padding: 0 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gn-text-muted);
  text-decoration: none;
  background: transparent;
  transition: all 0.2s ease;
  border: none;
}
.gn-pagination .page-item:not(.disabled):not(.active) .page-link:hover {
  background: #f9fafb;
  color: var(--gn-text-main);
}
.gn-pagination .page-item.active .page-link {
  background: var(--gn-accent);
  color: #fff;
}
.gn-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}
.gn-pagination i { font-size: 0.8rem; }

/* =========================================================
   PAGE DÉTAIL DE CAMPAGNE (.donation-show-page)
   ========================================================= */
.donation-show-page {
  /* Override global padding/margin for container if needed, but gn-container handles it */
}

/* --- HERO --- */
.gn-show-hero {
  position: relative;
  background: var(--gn-card-bg);
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  box-shadow: var(--gn-shadow-soft);
  overflow: hidden;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.gn-show-hero-media {
  width: 100%;
  height: 420px; /* Hauteur maîtrisée */
  background: #f3f4f6;
  position: relative;
}
.gn-show-hero-media img {
  width: 100%;
  height: 100%;
  background: #fff;
}
/* Détection ratio via CSS ou Twig (classes) */
.gn-show-hero-media img.is-landscape { object-fit: cover; }
.gn-show-hero-media img.is-portrait { object-fit: contain; }
.gn-show-hero-media img.is-default { object-fit: contain; }

.gn-show-hero-content {
  padding: 32px 40px;
  position: relative;
  background: var(--gn-card-bg);
}
@media (max-width: 767px) {
  .gn-show-hero-media { height: 280px; }
  .gn-show-hero-content { padding: 24px; }
}

.gn-show-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.gn-show-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f3f4f6;
  color: var(--gn-text-muted);
  border: 1px solid rgba(0,0,0,0.05);
}
.gn-show-badge.is-open {
  background: var(--gn-accent);
  color: #fff;
  border-color: transparent;
}
.gn-show-badge.is-closed {
  background: #fff;
  color: var(--gn-text-main);
  border-color: rgba(0,0,0,0.15);
}

.gn-show-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--gn-text-main);
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.gn-show-org {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.02);
  border-radius: 999px;
}
.gn-show-org img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}
.gn-show-org span {
  font-size: 0.95rem;
  color: var(--gn-text-muted);
}
.gn-show-org strong {
  color: var(--gn-text-main);
}

/* --- ARCHITECTURE --- */
.gn-show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start; /* crucial for sticky */
}
@media (max-width: 991px) {
  .gn-show-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- COLONNE PRINCIPALE --- */
.gn-show-section {
  background: var(--gn-card-bg);
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: var(--gn-shadow-soft);
}
@media (max-width: 767px) {
  .gn-show-section { padding: 24px; }
}

.gn-show-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--gn-text-main);
}
.gn-show-about {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gn-text-muted);
}
.gn-show-about p { margin-bottom: 16px; }
.gn-show-about ul { padding-left: 20px; margin-bottom: 16px; }
.gn-show-about strong { color: var(--gn-text-main); }

/* --- FEED CONTRIBUTIONS --- */
.gn-feed {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gn-feed-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.gn-feed-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.gn-feed-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gn-accent-light);
  color: var(--gn-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.gn-feed-content {
  flex: 1;
  min-width: 0; /* evite overflow */
}
.gn-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.gn-feed-name {
  font-weight: 700;
  color: var(--gn-text-main);
  font-size: 1.05rem;
}
.gn-feed-amount {
  font-weight: 900;
  color: var(--gn-text-main);
}
.gn-feed-meta {
  font-size: 0.85rem;
  color: var(--gn-text-muted);
  margin-bottom: 8px;
}
.gn-feed-message {
  font-size: 0.95rem;
  color: var(--gn-text-muted);
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  display: inline-block;
  line-height: 1.5;
}

/* --- SIDEBAR --- */
.gn-show-sidebar {
  position: sticky;
  top: 100px; /* compatible header */
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gn-sidebar-panel {
  background: var(--gn-card-bg);
  border-radius: var(--gn-radius-lg);
  border: 1px solid var(--gn-border);
  box-shadow: var(--gn-shadow-hover);
  padding: 32px;
}
.gn-sidebar-panel.is-closed-panel {
  background: #f9fafb;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}
.gn-sidebar-stats {
  margin-bottom: 24px;
}
.gn-stat-main {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gn-text-main);
  line-height: 1;
  margin-bottom: 8px;
}
.gn-stat-sub {
  font-size: 1rem;
  color: var(--gn-text-muted);
  margin-bottom: 16px;
}
.gn-stat-progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.gn-stat-progress-fill {
  height: 100%;
  background: var(--gn-accent);
  border-radius: 999px;
}
.gn-stat-progress-fill.is-closed {
  background: var(--gn-text-muted);
}
.gn-stat-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gn-text-muted);
}

/* --- FORMULAIRE --- */
.gn-form-group {
  margin-bottom: 20px;
}
.gn-form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gn-text-main);
  margin-bottom: 8px;
}
.gn-form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #fff;
  box-sizing: border-box;
}
.gn-form-control:focus {
  border-color: var(--gn-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
textarea.gn-form-control {
  height: auto;
  padding: 12px 16px;
  resize: vertical;
}
.gn-quick-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.gn-quick-amount-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gn-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.gn-quick-amount-btn:hover {
  background: #e5e7eb;
  color: var(--gn-text-main);
}
.gn-form-check {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gn-form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gn-accent);
}
.gn-form-check label {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gn-text-main);
  cursor: pointer;
}
.gn-anon-hint {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 20px;
}
.gn-anon-hint i {
  color: var(--gn-accent);
  font-size: 1.2rem;
}
.gn-btn-submit {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: var(--gn-accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}
.gn-btn-submit:hover {
  background: var(--gn-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

/* --- MOBILE STICKY BUTTON --- */
.gn-mobile-sticky-btn {
  display: none;
}
@media (max-width: 991px) {
  .gn-mobile-sticky-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
  }
  .gn-mobile-sticky-btn .gn-btn-submit {
    margin: 0;
    height: 48px;
  }
  /* Espace pour le bouton en bas de page */
  .donation-show-page {
    padding-bottom: 100px;
  }
}
