#consent-banner {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  background: rgba(36, 72, 45, 0.97);
  color: #f4efe6;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.28);
  font-size: 0.92rem;
  line-height: 1.5;
}
#consent-banner[hidden] { display: none !important; }
#consent-banner .consent-inner {
  max-width: 28rem;
  margin: 0 auto;
}
#consent-banner p { margin: 0 0 0.85rem; }
#consent-banner a { color: #f0c49a; }
#consent-banner .consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
#consent-banner button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
}
#consent-accept {
  background: #e86a1f;
  color: #fff;
}
#consent-reject {
  background: transparent;
  color: #f4efe6;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}
#consent-settings-link {
  position: fixed;
  z-index: 9999;
  left: 0.7rem;
  bottom: 5.7rem;
  background: var(--paper, #fff);
  color: var(--green, #2f5d3a);
  border: 1px solid var(--line, #e6e1d6);
  font: 650 0.75rem/1 system-ui, sans-serif;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  border-radius: 999px;
}
