.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 460px;
  width: 90%;
  padding: 20px 24px;
  z-index: 9999;
  font-family: "Inter", system-ui, sans-serif;
  color: #1a1a1a;
  display: none;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translate(-50%, 50px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.cookie-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #1B8E2D, #22A53C);
  color: white;
}

.cookie-btn.accept:hover {
  filter: brightness(1.1);
}

.cookie-btn.reject {
  background: #e9ecef;
  color: #333;
}

.cookie-btn.reject:hover {
  background: #dee2e6;
}

.cookie-btn.info {
  background: transparent;
  color: #1B8E2D;
  text-decoration: underline;
  font-size: 14px;
}
/* ===== DARK MODE — COOKIE BANNER ===== */
[data-theme="dark"] .cookie-banner {
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  color: #f0f0f0;
}

[data-theme="dark"] .cookie-content h3 {
  color: #ffffff;
}

[data-theme="dark"] .cookie-content p {
  color: #ccc;
}

[data-theme="dark"] .cookie-btn.accept {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
}

[data-theme="dark"] .cookie-btn.accept:hover {
  filter: brightness(1.2);
}

[data-theme="dark"] .cookie-btn.reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ddd;
}

[data-theme="dark"] .cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .cookie-btn.info {
  color: #56ccf2;
}

[data-theme="dark"] .cookie-btn.info:hover {
  text-decoration: underline;
  color: #6edaf9;
}
