/* GDPR Cookie Consent Banner */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: slideUp 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

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

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

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.cookie-consent-text strong {
  color: white;
  font-size: 16px;
}

.cookie-consent-text a {
  color: #60a5fa;
  text-decoration: underline;
  margin-left: 8px;
}

.cookie-consent-text a:hover {
  color: #93c5fd;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #10b981;
  color: white;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-text {
    text-align: center;
  }

  .cookie-consent-text p {
    font-size: 13px;
  }

  .cookie-consent-actions {
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
  }
}
