.fs-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 14px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.fs-consent__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.fs-consent__text {
  font-size: 14px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.78);
}

.fs-consent__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.fs-consent__btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: #ffffff;
  color: rgba(0, 0, 0, 0.88);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  font-weight: 500;
}

/* Равнозначность кнопок по best practices 2025 (152-ФЗ, GDPR) */
.fs-consent__btn--accept {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.fs-consent__btn--reject {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.9);
}

.fs-consent__btn--reject:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 680px) {
  .fs-consent__inner {
    grid-template-columns: 1fr;
  }
  .fs-consent__actions {
    justify-content: flex-start;
  }
}

