/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 16px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-banner.hidden {
  display: none;
}

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.cookie-text strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
}

.cookie-link {
  color: #0891b2;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-link:hover {
  color: #0e7490;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-btn-accept {
  background: #0891b2;
  color: white;
}

.cookie-btn-accept:hover {
  background: #0e7490;
}

.cookie-btn-settings {
  background: #f3f4f6;
  color: #374151;
}

.cookie-btn-settings:hover {
  background: #e5e7eb;
}

@media (max-width: 640px) {
  .cookie-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
}
