/* Fundraisers Luxury Styling - Match Projects Page EXACTLY */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Luxury Color Palette - Fundraisers Specific */
  --fundraisers-luxury-primary: #1e1b4b;
  --fundraisers-luxury-secondary: #8b5cf6;
  --fundraisers-luxury-accent: #06b6d4;
  --fundraisers-luxury-gold: #f59e0b;
  --fundraisers-luxury-success: #10b981;
  --fundraisers-luxury-warning: #f59e0b;
  --fundraisers-luxury-danger: #ef4444;
  --fundraisers-pure-white: #ffffff;

  /* Sophisticated Grays */
  --fundraisers-gray-platinum: #f8fafc;
  --fundraisers-gray-silver: #f1f5f9;
  --fundraisers-gray-cloud: #e2e8f0;
  --fundraisers-gray-steel: #cbd5e1;
  --fundraisers-gray-slate: #94a3b8;
  --fundraisers-gray-charcoal: #64748b;
  --fundraisers-gray-gunmetal: #475569;
  --fundraisers-gray-onyx: #334155;
  --fundraisers-gray-obsidian: #1e293b;
  --fundraisers-gray-void: #0f172a;

  /* Luxury Gradients */
  --fundraisers-gradient-luxury: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --fundraisers-gradient-royal: linear-gradient(135deg, #1e1b4b 0%, #3730a3 50%, #8b5cf6 100%);

  /* Professional Shadows */
  --fundraisers-shadow-whisper: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --fundraisers-shadow-elegant: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --fundraisers-shadow-luxurious: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --fundraisers-shadow-majestic: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --fundraisers-shadow-divine: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Typography */
  --fundraisers-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fundraisers-font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --fundraisers-space-xs: 0.25rem;
  --fundraisers-space-sm: 0.5rem;
  --fundraisers-space-md: 1rem;
  --fundraisers-space-lg: 1.5rem;
  --fundraisers-space-xl: 2rem;
  --fundraisers-space-2xl: 3rem;
  --fundraisers-space-3xl: 4rem;

  /* Border Radius */
  --fundraisers-radius-elegant: 12px;
  --fundraisers-radius-luxurious: 16px;
  --fundraisers-radius-divine: 24px;

  /* Transitions */
  --fundraisers-transition-swift: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --fundraisers-transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --fundraisers-transition-graceful: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fundraisers-font-sans);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 75%, #f8fafc 100%);
  color: var(--fundraisers-gray-onyx);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* Animations */
@keyframes fundraisers-float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px) rotate(10deg); 
    opacity: 1;
  }
}

@keyframes fundraisers-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
  50% { 
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  }
}

@keyframes fundraisers-bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

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

/* Container */
.fundraisers-luxury-container {
  min-height: 100vh;
}

/* HERO SECTION - EXACT MATCH TO PROJECTS */
.fundraisers-hero-section {
  background: var(--fundraisers-gradient-royal);
  color: white;
  padding: var(--fundraisers-space-3xl) 0 var(--fundraisers-space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--fundraisers-space-lg);
  border-radius: var(--fundraisers-radius-divine);
  box-shadow: var(--fundraisers-shadow-divine);
}

.fundraisers-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(59, 130, 246, 0.05) 25%,
    rgba(16, 185, 129, 0.05) 50%,
    rgba(245, 158, 11, 0.05) 75%,
    rgba(239, 68, 68, 0.1) 100%
  );
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  opacity: 1;
  z-index: 1;
}

.fundraisers-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--fundraisers-space-lg);
}

.fundraisers-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--fundraisers-space-sm);
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--fundraisers-space-sm) var(--fundraisers-space-lg);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--fundraisers-space-lg);
  border: 1px solid rgba(139, 92, 246, 0.3);
  animation: fundraisers-glow 3s ease-in-out infinite;
}

.fundraisers-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--fundraisers-space-lg);
  letter-spacing: -0.02em;
}

.fundraisers-hero-title span {
  background: var(--fundraisers-gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.fundraisers-hero-subtitle {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto var(--fundraisers-space-2xl);
  opacity: 0.9;
  line-height: 1.6;
}

.fundraisers-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity var(--fundraisers-transition-smooth);
  cursor: pointer;
}

.fundraisers-hero-scroll:hover {
  opacity: 1;
}

.fundraisers-hero-scroll svg {
  margin-top: var(--fundraisers-space-sm);
  animation: fundraisers-bounceDown 2s infinite;
}

/* Main Section */
.fundraisers-main-section {
  margin: 0 auto;
  padding: 0 var(--fundraisers-space-xl);
}

/* Layout */
.fundraisers-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--fundraisers-space-2xl);
  align-items: start;
}

/* Sidebar */
.fundraisers-filters-sidebar {
  position: sticky;
  top: var(--fundraisers-space-xl);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--fundraisers-radius-divine);
  box-shadow: var(--fundraisers-shadow-luxurious);
  overflow: hidden;
  transition: var(--fundraisers-transition-smooth);
}

.fundraisers-filters-sidebar:hover {
  transform: translateY(-4px);
  box-shadow: var(--fundraisers-shadow-majestic);
  border-color: rgba(139, 92, 246, 0.2);
}

.fundraisers-filters-header {
  display: flex;
  align-items: center;
  gap: var(--fundraisers-space-md);
  padding: var(--fundraisers-space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--fundraisers-gradient-royal);
  color: white;
  position: relative;
  overflow: hidden;
}

.fundraisers-filters-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.fundraisers-header-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--fundraisers-radius-elegant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fundraisers-header-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.fundraisers-header-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 var(--fundraisers-space-xs) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fundraisers-header-content p {
  opacity: 0.9;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.fundraisers-header-action {
  display: flex;
  align-items: center;
  gap: var(--fundraisers-space-sm);
  position: relative;
  z-index: 1;
}

.fundraisers-icon-btn-luxury {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: white;
  cursor: pointer;
  transition: var(--fundraisers-transition-smooth);
  font-size: 0.875rem;
}

.fundraisers-icon-btn-luxury:hover {
  background: var(--fundraisers-luxury-danger);
  transform: scale(1.1);
}

.fundraisers-filters-body {
  padding: var(--fundraisers-space-xl);
}

/* Form Fields */
.fundraisers-form-field-luxury {
  position: relative;
  margin-bottom: var(--fundraisers-space-lg);
}

.fundraisers-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--fundraisers-space-sm);
}

.fundraisers-field-label {
  display: flex;
  align-items: center;
  gap: var(--fundraisers-space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fundraisers-gray-obsidian);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fundraisers-field-label i {
  color: var(--fundraisers-luxury-secondary);
  font-size: 0.875rem;
}

.fundraisers-clear-field-btn {
  width: 20px;
  height: 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fundraisers-luxury-danger);
  cursor: pointer;
  transition: var(--fundraisers-transition-smooth);
  font-size: 0.75rem;
}

.fundraisers-clear-field-btn:hover {
  background: var(--fundraisers-luxury-danger);
  color: white;
  transform: scale(1.1);
}

.fundraisers-input-wrapper {
  position: relative;
}

.fundraisers-input-luxury {
  width: 100%;
  padding: var(--fundraisers-space-md) var(--fundraisers-space-lg) var(--fundraisers-space-md) 2.75rem;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--fundraisers-radius-luxurious);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  color: var(--fundraisers-gray-obsidian);
  font-family: inherit;
  transition: var(--fundraisers-transition-smooth);
  font-weight: 500;
}

.fundraisers-input-luxury:focus {
  outline: none;
  border-color: var(--fundraisers-luxury-secondary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.fundraisers-input-icon {
  position: absolute;
  left: var(--fundraisers-space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--fundraisers-luxury-secondary);
  pointer-events: none;
  font-size: 0.875rem;
}

.fundraisers-select-wrapper {
  position: relative;
}

.fundraisers-select-luxury {
  width: 100%;
  padding: var(--fundraisers-space-md) 2.5rem var(--fundraisers-space-md) var(--fundraisers-space-md);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--fundraisers-radius-luxurious);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  color: var(--fundraisers-gray-obsidian);
  cursor: pointer;
  appearance: none;
  transition: var(--fundraisers-transition-smooth);
  font-weight: 500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b5cf6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--fundraisers-space-md) center;
  background-size: 16px;
}

.fundraisers-select-luxury:focus {
  outline: none;
  border-color: var(--fundraisers-luxury-secondary);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

/* Apply Section */
.fundraisers-apply-section {
  display: flex;
  flex-direction: column;
  gap: var(--fundraisers-space-md);
}

.fundraisers-clear-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fundraisers-space-sm);
  background: rgba(239, 68, 68, 0.1);
  color: var(--fundraisers-luxury-danger);
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--fundraisers-radius-luxurious);
  padding: var(--fundraisers-space-sm) var(--fundraisers-space-lg);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--fundraisers-transition-smooth);
  font-family: inherit;
  text-align: center;
}

.fundraisers-clear-all-btn:hover {
  background: var(--fundraisers-luxury-danger);
  color: white;
  transform: translateY(-2px);
}

/* Luxury Buttons */
.fundraisers-luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fundraisers-space-sm);
  padding: var(--fundraisers-space-md) var(--fundraisers-space-xl);
  border: none;
  border-radius: var(--fundraisers-radius-luxurious);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--fundraisers-transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-family: inherit;
  min-width: auto;
  white-space: nowrap;
}

.fundraisers-luxury-btn.primary {
  background: linear-gradient(135deg, var(--fundraisers-luxury-secondary), var(--fundraisers-luxury-primary));
  color: white;
  box-shadow: var(--fundraisers-shadow-luxurious);
}

.fundraisers-luxury-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--fundraisers-shadow-majestic);
  background: linear-gradient(135deg, var(--fundraisers-luxury-primary), #6366f1);
}

.fundraisers-luxury-btn.secondary {
  background: rgba(139, 92, 246, 0.1);
  color: var(--fundraisers-luxury-secondary);
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.fundraisers-luxury-btn.secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.fundraisers-btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.fundraisers-luxury-btn:hover .fundraisers-btn-shimmer {
  left: 100%;
}

/* Fundraisers Grid */
.fundraisers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: var(--fundraisers-space-xl);
  transition: var(--fundraisers-transition-smooth);
}

.fundraisers-grid.featured {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  margin-bottom: var(--fundraisers-space-3xl);
}

/* Empty State */
.fundraisers-empty-state-luxury {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--fundraisers-space-2xl);
  grid-column: 1 / -1;
}

.fundraisers-empty-state-luxury.large {
  padding: var(--fundraisers-space-2xl) var(--fundraisers-space-xl);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--fundraisers-radius-divine);
  box-shadow: var(--fundraisers-shadow-luxurious);
}

.fundraisers-empty-illustration {
  position: relative;
  margin-bottom: var(--fundraisers-space-lg);
}

.fundraisers-empty-illustration i {
  font-size: 4rem;
  color: var(--fundraisers-luxury-secondary);
  opacity: 0.4;
}

.fundraisers-empty-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: fundraisers-glow 3s ease-in-out infinite alternate;
}

.fundraisers-empty-state-luxury h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fundraisers-gray-obsidian);
  margin: 0 0 var(--fundraisers-space-sm) 0;
}

.fundraisers-empty-state-luxury p {
  font-size: 1rem;
  color: var(--fundraisers-gray-charcoal);
  margin: 0 0 var(--fundraisers-space-2xl) 0;
  max-width: 500px;
  line-height: 1.6;
}

.fundraisers-empty-actions {
  display: flex;
  gap: var(--fundraisers-space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* Pagination */
.fundraisers-pagination-wrapper {
  margin-top: var(--fundraisers-space-2xl);
  display: flex;
  justify-content: center;
}

.fundraisers-pagination-nav {
  display: flex;
  align-items: center;
  gap: var(--fundraisers-space-sm);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  padding: var(--fundraisers-space-md);
  border-radius: var(--fundraisers-radius-luxurious);
  box-shadow: var(--fundraisers-shadow-luxurious);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.fundraisers-pagination-pages {
  display: flex;
  gap: var(--fundraisers-space-sm);
}

.fundraisers-pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fundraisers-radius-elegant);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fundraisers-gray-charcoal);
  text-decoration: none;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: var(--fundraisers-transition-smooth);
}

.fundraisers-pagination-btn:hover {
  background: rgba(139, 92, 246, 0.2);
  color: var(--fundraisers-luxury-secondary);
  transform: translateY(-2px);
}

.fundraisers-pagination-btn.current {
  background: var(--fundraisers-luxury-secondary);
  color: white;
  box-shadow: var(--fundraisers-shadow-elegant);
}

/* CTA Section - EXACTLY LIKE PROJECTS PAGE */
.fundraisers-impact-cta {
  position: relative;
  background: var(--fundraisers-gradient-royal);
  padding: var(--fundraisers-space-3xl) 0;
  overflow: hidden;
  color: white;
  text-align: center;
}

.fundraisers-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.fundraisers-cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(59, 130, 246, 0.05) 25%,
    rgba(16, 185, 129, 0.05) 50%,
    rgba(245, 158, 11, 0.05) 75%,
    rgba(239, 68, 68, 0.1) 100%
  );
}

.fundraisers-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fundraisers-floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: fundraisers-float 6s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
}

.fundraisers-floating-element.element-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.fundraisers-floating-element.element-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

.fundraisers-cta-content-centered {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 0 var(--fundraisers-space-lg);
  max-width: 800px;
}

.fundraisers-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--fundraisers-space-sm);
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--fundraisers-space-sm) var(--fundraisers-space-lg);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--fundraisers-space-2xl);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.fundraisers-cta-badge i {
  color: var(--fundraisers-luxury-gold);
}

.fundraisers-cta-title {
  font-family: var(--fundraisers-font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 var(--fundraisers-space-lg) 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fundraisers-gradient-text {
  background: var(--fundraisers-gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fundraisers-cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--fundraisers-space-2xl);
  line-height: 1.6;
}

.fundraisers-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--fundraisers-space-md);
  margin-bottom: var(--fundraisers-space-2xl);
  flex-wrap: wrap;
}

.fundraisers-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fundraisers-space-sm);
  padding: var(--fundraisers-space-md) var(--fundraisers-space-xl);
  border: none;
  border-radius: var(--fundraisers-radius-luxurious);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--fundraisers-transition-smooth);
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}

.fundraisers-cta-btn.primary {
  background: var(--fundraisers-gradient-luxury);
  color: white;
  box-shadow: var(--fundraisers-shadow-luxurious);
}

.fundraisers-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--fundraisers-shadow-majestic);
}

.fundraisers-cta-btn.secondary {
  background: rgba(139, 92, 246, 0.1);
  color: var(--fundraisers-luxury-secondary);
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.fundraisers-cta-btn.secondary:hover {
  background: rgba(139, 92, 246, 0.15);
  transform: translateY(-2px);
}

.fundraisers-trust-indicators-horizontal {
  display: flex;
  justify-content: center;
  gap: var(--fundraisers-space-2xl);
  flex-wrap: wrap;
}

.fundraisers-trust-indicator {
  display: flex;
  align-items: center;
  gap: var(--fundraisers-space-sm);
  font-size: 0.875rem;
  opacity: 0.8;
}

.fundraisers-trust-indicator i {
  color: var(--fundraisers-luxury-gold);
}

/* Toast Notifications */
.fundraisers-toast-container-luxury {
  position: fixed;
  top: 70px;
  right: var(--fundraisers-space-lg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: var(--fundraisers-space-sm);
  max-width: 400px;
}

.fundraisers-toast-luxury {
  display: flex;
  align-items: center;
  gap: var(--fundraisers-space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--fundraisers-radius-luxurious);
  box-shadow: var(--fundraisers-shadow-majestic);
  padding: var(--fundraisers-space-md) var(--fundraisers-space-lg);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid;
}

.fundraisers-toast-luxury.show {
  transform: translateX(0);
}

.fundraisers-toast-luxury.fundraisers-toast-success {
  border-left-color: var(--fundraisers-luxury-success);
}

.fundraisers-toast-luxury.fundraisers-toast-success i {
  color: var(--fundraisers-luxury-success);
}

.fundraisers-toast-luxury.fundraisers-toast-error {
  border-left-color: var(--fundraisers-luxury-danger);
}

.fundraisers-toast-luxury.fundraisers-toast-error i {
  color: var(--fundraisers-luxury-danger);
}

.fundraisers-toast-luxury.fundraisers-toast-info {
  border-left-color: var(--fundraisers-luxury-secondary);
}

.fundraisers-toast-luxury.fundraisers-toast-info i {
  color: var(--fundraisers-luxury-secondary);
}

.fundraisers-toast-content {
  flex: 1;
  font-size: 0.875rem;
  color: var(--fundraisers-gray-obsidian);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .fundraisers-layout {
    grid-template-columns: 320px 1fr;
    gap: var(--fundraisers-space-xl);
  }
}

@media (max-width: 1200px) {
  .fundraisers-layout {
    grid-template-columns: 300px 1fr;
  }
  
  .fundraisers-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

@media (max-width: 992px) {
  .fundraisers-layout {
    grid-template-columns: 1fr;
    gap: var(--fundraisers-space-xl);
  }
  
  .fundraisers-filters-sidebar {
    position: static;
    order: 1;
  }
  
  .fundraisers-main {
    order: 2;
  }
  
  .fundraisers-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .fundraisers-luxury-container {
    padding: var(--fundraisers-space-md) 0;
  }
  
  .fundraisers-main-section {
    padding: 0 var(--fundraisers-space-md);
  }
  
  .fundraisers-hero-section {
    padding: var(--fundraisers-space-xl) var(--fundraisers-space-md);
    margin: 0 var(--fundraisers-space-md) var(--fundraisers-space-lg);
  }
  
  .fundraisers-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }
  
  .fundraisers-hero-subtitle {
    font-size: 1rem;
  }
  
  .fundraisers-filters-body {
    padding: var(--fundraisers-space-lg);
  }
  
  .fundraisers-grid {
    grid-template-columns: 1fr;
  }
  
  .fundraisers-trust-indicators-horizontal {
    flex-direction: column;
    gap: var(--fundraisers-space-md);
    align-items: center;
  }
  
  .fundraisers-trust-indicator {
    font-size: 0.8rem;
  }
  
  .fundraisers-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .fundraisers-cta-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .fundraisers-floating-element {
    font-size: 1.5rem;
  }
  
  .fundraisers-luxury-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .fundraisers-toast-container-luxury {
    left: var(--fundraisers-space-md);
    right: var(--fundraisers-space-md);
    max-width: none;
  }
}

@media (max-width: 576px) {
  .fundraisers-hero-title {
    font-size: 1.75rem;
  }
  
  .fundraisers-hero-subtitle {
    font-size: 0.875rem;
  }
  
  .fundraisers-filters-body {
    padding: var(--fundraisers-space-lg);
  }
  
  .fundraisers-empty-state-luxury.large {
    padding: var(--fundraisers-space-xl) var(--fundraisers-space-md);
  }
  
  .fundraisers-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--fundraisers-gradient-luxury);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fundraisers-gradient-royal);
}

/* Selection styling */
::selection {
  background: rgba(139, 92, 246, 0.2);
  color: var(--fundraisers-luxury-primary);
}

/* Focus outline for accessibility */
*:focus {
  outline: 2px solid var(--fundraisers-luxury-secondary);
  outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}