#cookie-consent {
  position: fixed;
  z-index: 10050;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(20, 18, 22, 0.96);
  color: #f4f1f5;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
  display: none;
}
#cookie-consent.is-visible {
  display: block;
}
#cookie-consent .cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
#cookie-consent p {
  margin: 0;
  flex: 1 1 280px;
}
#cookie-consent a {
  color: #e8c4ff;
  text-decoration: underline;
}
#cookie-consent .cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#cookie-consent button {
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 600;
}
#cookie-consent .cookie-consent__accept {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}
#cookie-consent .cookie-consent__reject {
  background: transparent;
  color: #f4f1f5;
  border-color: rgba(255, 255, 255, 0.45);
}
#cookie-consent .cookie-consent__settings {
  background: #2d2a32;
  color: #f4f1f5;
  border-color: #44414a;
}
#cookie-consent__panel {
  display: none;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#cookie-consent__panel.is-open {
  display: block;
}
#cookie-consent__panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0;
  cursor: pointer;
}
