.footer-link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(237, 230, 216, 0.18);
  border-radius: 6px;
  background: #161915;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  color: #f4f1ea;
}

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

.cookie-copy {
  max-width: 680px;
}

.cookie-title {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
}

.cookie-text {
  margin: 0;
  color: rgba(244, 241, 234, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-text a {
  color: #e1c27a;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(244, 241, 234, 0.28);
  border-radius: 4px;
  background: transparent;
  color: #f4f1ea;
  font: 700 12px/1 "Manrope", sans-serif;
  letter-spacing: 0;
  cursor: pointer;
}

.cookie-button-primary {
  border-color: #d8b566;
  background: #d8b566;
  color: #151711;
}

.cookie-button:focus-visible,
.footer-link-button:focus-visible {
  outline: 2px solid #e1c27a;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    padding: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .cookie-button {
    width: 100%;
    min-height: 48px;
  }
}
