.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 3000;
  padding: 1rem;
  background: rgba(15, 61, 46, .28);
  backdrop-filter: blur(8px);
}
.cookie-banner[hidden] { display: none; }
.cookie-panel {
  display: flex;
  width: min(1100px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: var(--sm-green-900);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  color: var(--sm-white);
}
.cookie-panel p { max-width: 720px; margin: .35rem 0 0; color: #e2ebe6; }
.cookie-panel a { color: #efd69c; }
.cookie-title { display: block; color: var(--sm-white); font-size: 1.1rem; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: .65rem; }
.cookie-panel .button--secondary { border-color: #dce8e1; background: transparent; color: var(--sm-white); }
.cookie-manage {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 2900;
  padding: .55rem .8rem;
  border: 1px solid var(--sm-border);
  border-radius: 8px;
  background: var(--sm-white);
  box-shadow: var(--shadow-small);
  color: var(--sm-green-900);
  font-size: .82rem;
  font-weight: 700;
}
@media (max-width: 720px) {
  .cookie-panel { align-items: stretch; flex-direction: column; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .button { width: 100%; }
}
