.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  padding: 22px;
  background: rgba(15, 37, 44, 0.98);
  color: #F7F5F2;
  border-top: 3px solid #A67C52;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.24);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(280px, 1fr);
  gap: 18px 28px;
  align-items: start;
}

.cookie-banner__content {
  min-width: 0;
}

.cookie-banner__eyebrow {
  margin: 0 0 4px;
  color: #F0C28E;
  font: 700 12px/1.2 Montserrat, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cookie-banner__title {
  margin: 0 0 8px;
  color: #FFFFFF;
  font: 700 20px/1.25 Montserrat, sans-serif;
}

.cookie-banner__text {
  max-width: 760px;
  margin: 0;
  color: #F7F5F2;
  font: 400 14px/1.6 'Noto Sans', sans-serif;
}

.cookie-banner__text a {
  color: #F0C28E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__choices {
  display: grid;
  gap: 8px;
  margin: 0;
}

.cookie-choice {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid rgba(247, 245, 242, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #F7F5F2;
  cursor: pointer;
}

.cookie-choice--required {
  cursor: default;
}

.cookie-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #A67C52;
}

.cookie-choice strong {
  display: block;
  margin-bottom: 2px;
  color: #FFFFFF;
  font: 700 14px/1.25 Montserrat, sans-serif;
}

.cookie-choice small {
  display: block;
  color: rgba(247, 245, 242, 0.82);
  font: 400 12px/1.45 'Noto Sans', sans-serif;
}

.cookie-banner__buttons {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner__btn {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: 700 14px/1 Montserrat, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.cookie-banner__btn--accept {
  background: #A67C52;
  color: #FFFFFF;
}

.cookie-banner__btn--settings {
  background: #F7F5F2;
  color: #152F38;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: #F7F5F2;
  border-color: rgba(247, 245, 242, 0.72);
}

.cookie-banner__btn:hover {
  opacity: 0.88;
}

.cookie-settings-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__buttons {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}
