.rsConsent {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 820px;
  margin-inline: auto;
  padding: 16px 20px;
  color: #292622;
  background: #fff;
  border: 1px solid #d8d0c1;
  border-radius: 12px;
  box-shadow: 0 16px 48px #14110e38;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.rsConsent[hidden] {
  display: none;
}

.rsConsent h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
}

.rsConsent p {
  max-width: 58ch;
  margin: 0;
  color: #625d55;
  font-size: 14px;
  line-height: 1.5;
}

.rsConsent a {
  color: #785717;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rsConsentActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rsConsent button {
  min-height: 44px;
  padding: 10px 15px;
  color: #292622;
  background: #fff;
  border: 1px solid #8d8478;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.rsConsent button:hover {
  filter: brightness(.94);
}

.rsConsent button:focus-visible {
  outline: 2px solid #a37120;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .rsConsent {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
  }

  .rsConsentActions button {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .rsConsent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
  }
}

.rsConsentPrivacy { white-space: nowrap; }
