/* Cookie banner — no external dependencies */
.cookie-banner {
  position: fixed;
  z-index: 10050;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 1.25rem;
  background: #0d1f26;
  color: #f7fafb;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
}
.cookie-banner__text a {
  color: #abe2f4;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner__actions button {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: inherit;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}
.cookie-banner__actions button:hover {
  background: rgba(255, 255, 255, 0.08);
}
.cookie-banner__actions .cookie-btn--primary {
  background: #abe2f4;
  color: #0d1f26;
  border-color: #abe2f4;
}
.cookie-banner__actions .cookie-btn--primary:hover {
  filter: brightness(0.95);
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal.is-open {
  display: flex;
}
.cookie-modal__box {
  background: #f7fafb;
  color: #00161f;
  max-width: 480px;
  width: 100%;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  max-height: 90vh;
  overflow: auto;
}
.cookie-modal__box h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}
.cookie-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e8eb;
}
.cookie-modal__row label {
  font-weight: 600;
}
.cookie-modal__footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-modal__footer button {
  padding: 0.45rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #0d1f26;
  background: #0d1f26;
  color: #fff;
}
.cookie-modal__footer .cookie-save {
  background: #abe2f4;
  border-color: #abe2f4;
  color: #0d1f26;
}
