/* ============================================
   CSS VARIABLES & THEMES
   ============================================ */

:root {
  /* Standard (Konsum) - Blau */
  --theme-primary: #3b82f6;
  --theme-primary-dark: #2563eb;
  --theme-accent: #60a5fa;
  
  /* Neutrale Farben */
  --neutral-bg: #ffffff;
  --neutral-border: #e5e7eb;
  --neutral-text: #374151;
  --neutral-hover: #f3f4f6;
  
  /* Basis Farben */
  --bg-color: #ffffff;
  --bg-secondary: #f8f9fa;
  --card-bg: #ffffff;
  --text-main: #1a1a2e;
  --text-black: #000000;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  
  /* Label Colors */
  --label-text: #333333;
  --label-eco: #c8e6c9;
  --label-eu-hosted: #bbdefb;
  --label-open-source: #e0e0e0;
  --label-eu: #ffe0b2;
  --label-efta: #e1bee7;
  --label-co-op: #ffcdd2;
}

/* THEME: Engagieren (Orange) */
body.engage-theme {
  --theme-primary: #f97316 !important; /* Orange */
  --theme-primary-dark: #ea580c !important;
  --theme-accent: #fb923c !important;
}

/* THEME: Unterstützen (Grün) */
body.support-theme {
  --theme-primary: #10b981 !important; /* Grün */
  --theme-primary-dark: #059669 !important;
  --theme-accent: #34d399 !important;
}

/* ============================================
   RESET & BASE
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  transition: background-color 0.3s ease;
}

/* ============================================
   HEADER
   ============================================ */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
  z-index: 1000;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
}

.nav-buttons { display: flex; gap: 1rem; }

.nav-btn {
  background: transparent;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-btn:hover {
  background: var(--bg-secondary);
  border-color: var(--theme-primary);
  color: var(--theme-primary);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.home-hero {
  text-align: center;
  padding: 8rem 1rem 4rem;
  background: #5c94fc;
  color: white;
}

.home-hero h1 { font-size: 3.5rem; letter-spacing: -0.05em; margin-bottom: 0.5rem; }
.home-hero .slogan { font-size: 1.25rem; opacity: 0.9; font-weight: 300; }

.page-hero {
  text-align: left;
  padding: 6rem 2rem 3rem;
  background: var(--bg-color);
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 { 
  font-size: 2.5rem; 
  letter-spacing: -0.03em; 
  margin-bottom: 0.5rem; 
  color: var(--text-black); 
  font-weight: 700; 
}

/* ============================================
   INFO TILES
   ============================================ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.tile {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.tile h3 { color: var(--text-black); margin-bottom: 0.5rem; font-size: 1.1rem; font-weight: 700; }
.tile p { font-size: 0.95rem; color: var(--text-muted); }

/* ============================================
   START BUTTON (Index-Seite)
   ============================================ */

.cta-container { text-align: center; margin: 3rem 0; }

.btn-primary {
  /* Neuer Stil: Weißer Hintergrund, Blauer Rand */
  background-color: white !important;
  color: var(--theme-primary) !important; /* Textfarbe ist die Theme-Farbe (Blau) */
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--theme-primary) !important; /* Rand ist die Theme-Farbe */
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Hover-Effekt: Füllung wird blau, Text wird weiß */
.btn-primary:hover { 
  background-color: var(--theme-primary) !important; /* Hintergrund wird farbig */
  color: white !important; /* Text wird weiß */
  border-color: var(--theme-primary) !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ============================================
   ÜBERSICHT & KACHELN
   ============================================ */

.overview-container, .category-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Bereichstitel mit LINIE (Farbe passt sich an) */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-black);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--theme-primary); /* Nutzt Theme-Farbe */
  padding-bottom: 0.5rem;
}

.category-grid, .subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Kacheln: Gleicher grauer Rand, keine dicke Linie oben */
.category-card, .subcategory-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color); /* Immer grau */
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.2s;
}

/* Hover-Effekte für Kacheln (Farbe ändert sich) */
.category-card:hover, .subcategory-item:hover {
  border-color: var(--theme-primary); /* Wird farbig beim Hover */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cat-title, .sub-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-black);
  margin: 0;
}

.cat-count, .sub-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.no-companies {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   BUTTONS (ANZEIGEN, LINK, READ MORE)
   ============================================ */

.btn-show, .btn-link, .read-more {
  background: transparent;
  color: var(--theme-primary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--theme-primary);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin-top: auto;
}

.btn-show:hover, .btn-link:hover, .read-more:hover {
  background-color: var(--theme-primary);
  color: white !important;
  border-color: var(--theme-primary);
}

/* ============================================
   FIRMEN-LISTE
   ============================================ */

.company-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.company-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}

.company-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-black);
  margin: 0;
  flex-grow: 1;
}

.btn-link {
  background: white;
  color: var(--theme-primary);
  padding: 0.4rem 1rem;
  border: 1px solid var(--theme-primary);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-link:hover {
  background: var(--theme-primary);
  color: white !important;
}

.company-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   FLAGGEN
   ============================================ */

.company-country img, .detail-country img {
  width: 1.2em;
  height: 1.2em;
  object-fit: contain;
  vertical-align: middle;
}

.company-country img[src*="ch.png"], .detail-country img[src*="ch.png"] {
  width: 1em;
  height: 1em;
}

.company-country span, .detail-country span {
  font-size: 1em;
}

/* ============================================
   LABELS
   ============================================ */

.category-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.category-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--label-text);
}

.tag-eco { background-color: var(--label-eco); }
.tag-eu-hosted { background-color: var(--label-eu-hosted); }
.tag-open-source { background-color: var(--label-open-source); }
.tag-eu { background-color: var(--label-eu); }
.tag-efta { background-color: var(--label-efta); }
.tag-co-op { background-color: var(--label-co-op); }
.tag-non-profit { background-color: transparent; border: 1px solid var(--border-color); }
.tag-fairtrade { background-color: transparent; border: 1px solid var(--border-color); }

.company-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.read-more {
  color: var(--theme-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
}

.read-more:hover {
  text-decoration: underline;
  color: var(--theme-primary-dark);
}

/* ============================================
   DETAILSEITE
   ============================================ */

.detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.detail-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 0.5rem;
  text-align: left;
}

.detail-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: left;
}

.detail-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
  text-align: left;
}

/* VISIT WEBSITE BUTTON - Neuer Stil: Farbiger Rand, Weißer Hintergrund */
.detail-link-btn {
  display: inline-block;
  background-color: white !important; /* Immer weißer Hintergrund */
  color: var(--theme-primary) !important; /* Textfarbe ist die Theme-Farbe */
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--theme-primary) !important; /* Rand ist die Theme-Farbe */
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Hover-Effekt: Füllung wird farbig, Text wird weiß */
.detail-link-btn:hover {
  background-color: var(--theme-primary) !important; /* Hintergrund wird farbig */
  color: white !important; /* Text wird weiß */
  border-color: var(--theme-primary) !important; /* Rand bleibt gleich (oder wird dunkler, wenn gewünscht) */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* ============================================
   FOOTER & NEUTRAL (SANFTES GRAU)
   ============================================ */

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  background: var(--bg-secondary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--neutral-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: black;
}

.suggest-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* SANFTER Button (Weißer Hintergrund, Schwarzer Rand) */
.btn-suggest {
  display: inline-block;
  background-color: white !important;
  color: black !important;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 2px solid black !important; /* Schwarzer Rand */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

.btn-suggest:hover {
  background-color: black !important;
  color: white !important;
  border-color: black !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
}

hr {
  border: 0;
  height: 1px;
  background: var(--border-color);
  margin: 3rem 0;
}

/* ============================================
   SAVE BUTTON IN DETAILANSICHT
   ============================================ */

.detail-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-save-detail {
  background: white;
  color: var(--theme-primary);
  padding: 1rem 2rem;
  border: 2px solid var(--theme-primary);
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-save-detail:hover {
  background: var(--theme-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-save-detail.saved {
  background: var(--theme-primary);
  color: white;
  border-color: var(--theme-primary);
}

/* Responsive: Buttons untereinander auf Mobile */
@media (max-width: 768px) {
  .detail-actions {
    flex-direction: column;
  }
  
  .btn-save-detail, .detail-link-btn {
    width: 100%;
  }
}
/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .nav-header { padding: 0 1rem; }
  .home-hero h1 { font-size: 2.5rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 5rem 1rem 2rem; }
  .info-grid { grid-template-columns: 1fr; padding: 0 1rem; }
  .overview-container, .category-container { padding: 0 1rem; }
  .section-title { font-size: 1.6rem; margin-top: 2rem; }
  .category-grid, .subcategory-grid { grid-template-columns: 1fr; }
  .company-list { grid-template-columns: 1fr; padding: 0 1rem; }
  .company-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-links { flex-direction: column; gap: 0.8rem; align-items: center; }
  .suggest-footer { margin-top: 1rem; }
  .btn-suggest { width: 100%; max-width: 300px; }
}

/* ============================================
   FARBTRENNUNG IN DER ÜBERSICHT (FIX)
   ============================================ */

/* 1. Bereichstitel (H2) färben */
.section-title.theme-blue { border-bottom-color: #3b82f6; }
.section-title.theme-orange { border-bottom-color: #f97316; }
.section-title.theme-green { border-bottom-color: #10b981; }

/* 2. Kacheln (Cards) färben - Hover-Effekte */

/* BLAU (Konsum) */
.category-card.theme-blue .btn-show {
  color: #3b82f6;
  border-color: #3b82f6;
}
.category-card.theme-blue .btn-show:hover {
  background-color: #3b82f6;
  color: white;
}
.category-card.theme-blue:hover {
  border-color: #3b82f6;
}

/* ORANGE (Engagieren) */
.category-card.theme-orange .btn-show {
  color: #f97316;
  border-color: #f97316;
}
.category-card.theme-orange .btn-show:hover {
  background-color: #f97316;
  color: white;
}
.category-card.theme-orange:hover {
  border-color: #f97316;
}

/* GRÜN (Unterstützen) */
.category-card.theme-green .btn-show {
  color: #10b981;
  border-color: #10b981;
}
.category-card.theme-green .btn-show:hover {
  background-color: #10b981;
  color: white;
}
.category-card.theme-green:hover {
  border-color: #10b981;
}

/* 3. Sanfter "Marke fehlt" Button (Weiß/Schwarz) */
.btn-suggest {
  display: inline-block;
  background-color: white !important;
  color: black !important;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 2px solid black !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

.btn-suggest:hover {
  background-color: black !important;
  color: white !important;
  border-color: black !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
}

/* ============================================
   SAVE BUTTONS
   ============================================ */

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-save {
  background: white;
  color: var(--theme-primary);
  padding: 0.4rem 1rem;
  border: 1px solid var(--theme-primary);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-save:hover {
  background: var(--theme-primary);
  color: white;
}

.btn-save.saved {
  background: var(--theme-primary);
  color: white;
  border-color: var(--theme-primary);
}

/* ============================================
   MAIN LAYOUT MIT SIDEBAR (Grid-System)
   ============================================ */

/* Der Wrapper teilt die Seite in zwei Spalten */
.main-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px; /* 1fr = verbleibender Platz, 300px = Sidebar */
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Linker Bereich: Der Inhalt */
.main-content {
  width: 100%;
  min-width: 0; /* Verhindert Überlauf-Probleme */
}

/* Rechter Bereich: Die Sidebar */
.saved-sidebar {
  position: sticky;
  top: 90px; /* Abstand zum Header (70px Header + 20px Abstand) */
  height: calc(100vh - 110px);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  flex-shrink: 0; /* Verhindert, dass die Sidebar zusammengedrückt wird */
}

/* Styles für die Sidebar-Inhalte */
.saved-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--theme-primary);
  white-space: nowrap;
}

.saved-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.saved-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: var(--bg-secondary);
  border-radius: 6px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.saved-item:hover {
  background: var(--border-color);
  border-color: var(--theme-primary);
}

.saved-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saved-item-name:hover {
  color: var(--theme-primary);
}

.saved-item-remove {
  background: transparent;
  color: #ef4444;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.2rem;
  transition: all 0.2s;
  line-height: 1;
}

.saved-item-remove:hover {
  transform: scale(1.2);
  color: #dc2626;
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE (Mobile)
   ============================================ */

@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr; /* Sidebar rutscht unter den Inhalt */
    padding: 0 1rem;
  }
  
  .saved-sidebar {
    position: static;
    height: auto;
    top: 0;
    border-radius: 12px;
    margin-top: 2rem;
    width: 100%;
  }
}


/* ============================================
   NOTIFICATION
   ============================================ */

.notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--theme-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.notification.error {
  background: #ef4444;
}

/* ============================================
   RESPONSIVE - Sidebar ausblenden auf Mobile
   ============================================ */

@media (max-width: 1024px) {
  .saved-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}

@media (max-width: 768px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-save {
    width: 100%;
  }
}

/* ============================================
   REMOVE BUTTON (Kompakt für saved.html)
   ============================================ */

.btn-remove {
  background: white;
  color: #ef4444;
  padding: 0.3rem 0.6rem;
  border: 1px solid #ef4444;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-remove:hover {
  background: #ef4444;
  color: white;
}

/* ============================================
   KACHELN AUF SAVED.HTML - Besseres Layout
   ============================================ */

#saved-container .company-card {
  min-height: auto;
}

#saved-container .company-header {
  flex-wrap: wrap;
  gap: 0.5rem;
}

#saved-container .header-actions {
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
  justify-content: flex-end;
}

#saved-container .btn-link {
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE - Buttons untereinander auf Mobile
   ============================================ */

@media (max-width: 768px) {
  #saved-container .header-actions {
    flex-direction: row;
    width: 100%;
  }
  
  #saved-container .btn-link,
  #saved-container .btn-remove {
    flex: 1;
    text-align: center;
  }
}
/* ============================================
   NOTIFICATION
   ============================================ */

.notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--theme-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.notification.error {
  background: #ef4444;
}