.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FCEEF2;
  color: #000;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  display: none;
}

.cookie-content {
  max-width: 1300px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 800px;
}

.cookie-content a {
  color: #ed1d24; /* otomotiv kırmızısı */
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-buttons button {
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}

#accept-all {
  background: #ed1d24;
  color: #fff;
}

#accept-all:hover {
  opacity: 0.9;
}

#reject-all {
  background: #333;
  color: #fff;
}

#reject-all:hover {
  background: #444;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
