#kx-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  background: #0b0b0d;
  color: #f4f2ee;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

#kx-consent .kx-c-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#kx-consent p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #cfccd6;
}

#kx-consent a {
  color: #ff7a1a;
  text-decoration: underline;
}

#kx-consent .kx-c-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#kx-consent button {
  cursor: pointer;
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #f4f2ee;
}

#kx-consent button:focus-visible {
  outline: 2px solid #ff8a00;
  outline-offset: 3px;
}

#kx-consent #kx-accept {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #0b0b0d;
}

@media (max-width: 600px) {
  #kx-consent .kx-c-in {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  #kx-consent p {
    font-size: 11.5px;
    line-height: 1.4;
  }

  #kx-consent .kx-c-btns {
    gap: 7px;
    justify-content: flex-end;
  }

  #kx-consent button {
    padding: 8px 13px;
    font-size: 12px;
  }
}
