.rv-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(189, 136, 66, 0.28);
  border-radius: 18px;
  background: rgba(23, 21, 19, 0.96);
  color: #f7f1e7;
  box-shadow: 0 28px 90px -48px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rv-consent.is-visible {
  display: block;
}

.rv-consent__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.rv-consent__title {
  margin: 0 0 5px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.rv-consent__text {
  margin: 0;
  color: #d4cabd;
  font-size: 14px;
  line-height: 1.55;
}

.rv-consent__text a {
  color: #ddb269;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rv-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rv-consent__btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.rv-consent__btn--accept {
  border-color: transparent;
  background: #ddb269;
  color: #17120d;
}

.rv-consent__btn--decline {
  background: rgba(255, 255, 255, 0.04);
  color: #f7f1e7;
}

.rv-consent-reset {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(189, 136, 66, 0.45);
  border-radius: 9px;
  background: rgba(189, 136, 66, 0.12);
  color: #ddb269;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 760px) {
  .rv-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .rv-consent__inner {
    grid-template-columns: 1fr;
  }

  .rv-consent__actions {
    justify-content: stretch;
  }

  .rv-consent__btn {
    flex: 1 1 150px;
  }
}
