/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-top: 3px solid #3b82f6;
}

#cookie-banner.cookie-banner-visible {
  transform: translateY(0);
}

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

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-text strong {
  color: #1f2937;
  font-size: 1.1rem;
}

.cookie-link {
  color: #3b82f6;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.cookie-link:hover {
  color: #2563eb;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: white;
}

.cookie-btn-accept:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.cookie-btn-decline {
  background: #e5e7eb;
  color: #374151;
}

.cookie-btn-decline:hover {
  background: #d1d5db;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #cookie-banner {
    padding: 1rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text {
    min-width: 100%;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    padding: 0.875rem 1rem;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  #cookie-banner {
    background: #1f2937;
    border-top-color: #3b82f6;
  }

  .cookie-banner-text p {
    color: #d1d5db;
  }

  .cookie-banner-text strong {
    color: #f9fafb;
  }

  .cookie-btn-decline {
    background: #374151;
    color: #d1d5db;
  }

  .cookie-btn-decline:hover {
    background: #4b5563;
  }
}
