#cookie-consent {
  position: fixed;
  z-index: 10050;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(20, 22, 24, 0.97);
  color: #f5f5f5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  line-height: 1.5;
}
#cookie-consent[hidden] {
  display: none !important;
}
.cookie-consent__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.cookie-consent__text {
  flex: 1 1 280px;
  margin: 0;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-consent__actions button {
  border-radius: 4px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
}
#cc-accept {
  background: #fff;
  color: #111;
  border-color: #fff;
}
#cc-reject {
  background: transparent;
  color: #eee;
  border-color: rgba(255, 255, 255, 0.45);
}
#cc-settings {
  background: transparent;
  color: #9cf;
  border-color: rgba(153, 204, 255, 0.5);
}
#cookie-settings {
  position: fixed;
  z-index: 10060;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#cookie-settings[hidden] {
  display: none !important;
}
.cookie-settings__panel {
  background: #fff;
  color: #222;
  max-width: 420px;
  width: 100%;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.cookie-settings__panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.cookie-settings__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.cookie-settings__row label {
  cursor: pointer;
}
.cookie-settings__note {
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 1rem;
}
#cc-settings-close,
#cc-save {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
}
#cc-save {
  background: #111;
  color: #fff;
  border: 1px solid #111;
}
