/* ================================
   COOKIE CONSENT BANNER STYLES
   ================================ */

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9fafb; /* açık arka plan */
  color: #374151;       /* koyu gri yazı */
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
  display: none; /* JS ile gösterilecek */
  z-index: 9999;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* İçerik düzeni */
#cookie-consent .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* Metin alanı */
#cookie-consent p {
  margin: 0;
  flex: 1;
}

#cookie-consent a {
  color: #2563eb;
  text-decoration: underline;
}

#cookie-consent a:hover {
  text-decoration: none;
}

/* Buton grubu */
#cookie-consent .buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Butonlar */
#cookie-consent button {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease-in-out, transform 0.1s ease-in-out;
}

#cookie-consent button:active {
  transform: scale(0.97);
}

/* Kabul Et butonu */
#cookie-consent .btn-accept {
  background: #2563eb; /* Mavi – site rengine göre değiştirilebilir */
  color: #fff;
}
#cookie-consent .btn-accept:hover {
  background: #1e40af;
}

/* Reddet butonu */
#cookie-consent .btn-decline {
  background: #e5e7eb; /* Gri */
  color: #374151;
}
#cookie-consent .btn-decline:hover {
  background: #d1d5db;
}

/* ================================
   MOBİL UYUMLULUK
   ================================ */

/* Tablet ve küçük ekranlar */
@media (max-width: 768px) {
  #cookie-consent {
    padding: 14px 16px;
    font-size: 13px;
  }

  #cookie-consent .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #cookie-consent p {
    width: 100%;
  }

  #cookie-consent .buttons {
    width: 100%;
    justify-content: flex-end;
  }

  #cookie-consent button {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Küçük mobil cihazlar (ör. 480px altı) */
@media (max-width: 480px) {
  #cookie-consent {
    font-size: 12.5px;
    padding: 12px 14px;
  }

  #cookie-consent .cookie-content {
    gap: 10px;
  }

  #cookie-consent .buttons {
    flex-direction: column; /* Butonlar alt alta */
    width: 100%;
    gap: 8px;
  }

  #cookie-consent button {
    width: 100%;
  }
}

/* ================================
   GEÇİŞ ANİMASYONU
   ================================ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}
