/* ========================================
   DSGVO COOKIE CONSENT BANNER
   ======================================== */

#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.5rem 2rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 10000;
  display: none;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#cookieConsent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--primary);
  font-weight: 700;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-text a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00B4D8 0%, #0096C7 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.cookie-btn-decline {
  background: rgba(65, 90, 119, 0.1);
  color: var(--secondary);
  border: 2px solid rgba(65, 90, 119, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(65, 90, 119, 0.15);
  border-color: rgba(65, 90, 119, 0.3);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  #cookieConsent {
    padding: 1.2rem 1.5rem;
  }
  
  .cookie-text {
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}
