/* Çerez onay çubuğu */
.zara-cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #1a1f24;
  color: #f4f6f7;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-family: inherit;
}

.zara-cookie-consent.is-visible {
  display: block;
}

.zara-cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.zara-cookie-consent__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #e8ecef;
}

.zara-cookie-consent__text a {
  color: #7dce8f;
  text-decoration: underline;
}

.zara-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zara-cookie-consent__btn {
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.zara-cookie-consent__btn:hover {
  opacity: 0.92;
}

.zara-cookie-consent__btn--accept {
  background: #0a911f;
  color: #fff;
}

.zara-cookie-consent__btn--reject {
  background: transparent;
  color: #d7dde2;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

@media (max-width: 575px) {
  .zara-cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .zara-cookie-consent__actions {
    width: 100%;
  }

  .zara-cookie-consent__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
