.cookie-popup[hidden] { display: none; }
.cookie-popup {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  width: auto;
  max-width: 448px;
  max-height: calc(100dvh - 32px);
  margin: 0 auto;
  overflow-y: auto;
  padding: 22px;
  border: 1px solid #E3E7EE;
  border-radius: 16px;
  background: #fff;
  color: #1B2430;
  box-shadow: 0 8px 40px #0C2E2C33;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
.cookie-popup h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
.cookie-popup p {
  margin: 0;
  color: #5B6472;
  font-size: 13px;
  line-height: 1.65;
}
.cookie-popup a { color: #12403E; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-top: 18px; }
.cookie-actions button {
  flex: 1;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #12403E;
  border-radius: 10px;
  background: #fff;
  color: #12403E;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}
.cookie-actions button[data-cookie-choice="accepted"] { background: #12403E; color: #fff; }
.cookie-actions button:hover { filter: brightness(.94); }
.cookie-popup :focus-visible, .cookie-preferences:focus-visible {
  outline: 3px solid #C0692B;
  outline-offset: 3px;
}
.cookie-preferences {
  display: block;
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #12403E;
  font: inherit;
  font-size: 12px;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 359px) {
  .cookie-popup { right: 12px; left: 12px; padding: 18px; }
  .cookie-actions { flex-direction: column; }
}
