.rs-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 99999;
  padding: 1rem;
  pointer-events: none;
}

.rs-cookie-banner:not(.hidden) {
  pointer-events: auto;
}

.rs-cookie-banner__inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(201, 146, 58, 0.35);
  background: rgba(18, 14, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  color: #f5efe6;
}

.rs-cookie-banner__title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.rs-cookie-banner__text {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.78);
}

.rs-cookie-banner__text a {
  color: #c9923a;
  text-decoration: underline;
}

.rs-cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 540px) {
  .rs-cookie-banner__actions {
    flex-direction: row;
  }
}

.rs-cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.rs-cookie-banner__btn--primary {
  background: #c9923a;
  color: #1a1208;
}

.rs-cookie-banner__btn--secondary {
  background: transparent;
  color: #f5efe6;
  border: 1px solid rgba(245, 239, 230, 0.22);
}

.rs-cookie-banner.hidden {
  display: none;
}
