/* Çerez / KVKK onay — Sağ alt köşe, kompakt, cam efektli tasarım */
.numex-cookie-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  transform: none;
  z-index: 9998;
  max-width: 340px;
  width: auto;
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(230, 237, 243, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: numex-cookie-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes numex-cookie-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.numex-cookie-bar.numex-cookie-bar--dismissing {
  animation: numex-cookie-fade-out 0.3s ease forwards;
}

@keyframes numex-cookie-fade-out {
  to { opacity: 0; transform: translateY(10px); visibility: hidden; }
}

.numex-cookie-bar.hidden { display: none !important; }

.numex-cookie-bar a { color: #00c9a7; text-decoration: none; font-weight: 500; }
.numex-cookie-bar a:hover { text-decoration: underline; color: #00ffb3; }

.numex-cookie-bar .numex-cookie-btn {
  background: rgba(0,201,167, 0.15);
  color: #00c9a7;
  border: 1px solid rgba(0,201,167, 0.3);
  padding: 8px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.numex-cookie-bar .numex-cookie-btn:hover {
  background: rgba(0,201,167, 0.25);
  border-color: rgba(0,201,167, 0.5);
  transform: translateY(-1px);
}

/* Mobil için dikey yerleşim */
@media (max-width: 600px) {
  .numex-cookie-bar {
    flex-direction: column;
    padding: 16px;
    align-items: stretch;
    text-align: center;
    border-radius: 16px;
  }
}
