/* Reova / ФЗ-152: баннер согласия на аналитику */
.cookieConsent {
  position: fixed;
  z-index: 1200;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: rgba(15, 17, 19, 0.96);
  color: #e8eef2;
  border-top: 1px solid rgba(185, 158, 91, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  line-height: 1.45;
}
.cookieConsent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
}
.cookieConsent__text {
  flex: 1 1 280px;
  margin: 0;
}
.cookieConsent__text a {
  color: #d4b87a;
  text-decoration: underline;
}
.cookieConsent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookieConsent__btn {
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  border: 1px solid rgba(185, 158, 91, 0.5);
  font-size: 14px;
}
.cookieConsent__btn--accept {
  background: #b99e5b;
  color: #0f1113;
  border-color: #b99e5b;
}
.cookieConsent__btn--reject {
  background: transparent;
  color: #e8eef2;
}

.footer__legalStrip {
  border-top: 1px solid rgba(185, 158, 91, 0.2);
  padding: 14px 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232, 238, 242, 0.85);
}
.footer__legalStrip-inner {
  display: grid;
  gap: 6px;
}
.footer__legalLine {
  margin: 0;
}
@media (max-width: 640px) {
  .cookieConsent__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookieConsent__actions {
    justify-content: stretch;
  }
  .cookieConsent__btn {
    flex: 1;
    text-align: center;
  }
}
