.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(240, 189, 80, .55);
  background: rgba(7, 32, 38, .97);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  color: #f8f4ea;
  font-family: Manrope, Arial, sans-serif;
}
.cookie-banner__copy { max-width: 650px; }
.cookie-banner__copy strong { display: block; margin-bottom: 4px; font-size: 16px; }
.cookie-banner__copy p { margin: 0; color: #c9d7d3; font-size: 13px; line-height: 1.55; }
.cookie-banner__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-choice {
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid #f0bd50;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.cookie-choice:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.cookie-choice--primary { background: #f0bd50; color: #09252b; }
.cookie-choice--secondary { background: transparent; color: #f8f4ea; }
@media (max-width: 720px) {
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 14px; padding: 16px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-choice { padding-inline: 10px; }
}
@media (max-width: 390px) {
  .cookie-banner__actions { grid-template-columns: 1fr; }
}
