.consent-panel {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(920px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 24px;
  color: #f5f6f2;
  background: #103d32;
  border: 1px solid rgba(207, 244, 122, .45);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(5, 23, 19, .28);
  font: inherit;
}
.consent-copy { max-width: 640px; }
.consent-kicker {
  margin: 0 0 8px;
  color: #cff47a;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.consent-panel h2 {
  margin: 0 0 8px;
  color: inherit;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.15;
}
.consent-panel p:last-child {
  margin: 0;
  color: #e0e8e2;
  font-size: .95rem;
  line-height: 1.55;
}
.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  gap: 10px;
}
.consent-actions button,
.consent-settings {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid #cff47a;
  border-radius: 999px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
.consent-actions button {
  color: #103d32;
  background: #cff47a;
}
.consent-actions button:first-child {
  color: #f5f6f2;
  background: transparent;
}
.consent-actions button:hover { transform: translateY(-1px); }
.consent-actions button:focus-visible,
.consent-settings:focus-visible {
  outline: 3px solid #cff47a;
  outline-offset: 3px;
}
.consent-settings {
  display: block;
  width: fit-content;
  min-height: 44px;
  margin: 18px 0 0;
  padding-inline: 16px;
  color: inherit;
  background: transparent;
  border-color: currentColor;
  font-size: .85rem;
}
@media (max-width: 700px) {
  .consent-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .consent-actions { width: 100%; }
}
@media (max-width: 390px) {
  .consent-actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .consent-actions button { transform: none !important; }
}
