/* Reova / ФЗ-152: баннер согласия на аналитику */
html.cookie-consent-js-dismissed .cookieConsent {
  display: none !important;
}
.cookieConsent {
  position: fixed;
  /* Важно: выше .catalogNavLoading (z-index:2400) и прочих оверлеев, иначе на мобилке
     кнопка «Принять» не получает касание, пока активен оверлей/загрузчик. */
  z-index: 50000;
  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;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(212, 175, 91, 0.25);
}
.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;
  align-items: center;
}
.cookieConsent__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.cookieConsent__btn--dismiss {
  background: transparent;
  color: rgba(232, 238, 242, 0.72);
  border: 1px solid rgba(185, 158, 91, 0.28);
  font-weight: 600;
  font-size: 13px;
}
.cookieConsent__btn--dismiss:hover {
  color: #e8eef2;
  border-color: rgba(185, 158, 91, 0.45);
}
.cookieConsent__btn {
  cursor: pointer;
  touch-action: manipulation;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  border: 1px solid rgba(185, 158, 91, 0.5);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.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;
    width: 100%;
  }
  .cookieConsent__form {
    width: 100%;
    justify-content: stretch;
  }
  .cookieConsent__form .cookieConsent__btn--accept,
  .cookieConsent__form .cookieConsent__btn--reject {
    flex: 1;
    text-align: center;
  }
  .cookieConsent__actions .cookieConsent__btn--dismiss {
    width: 100%;
    text-align: center;
  }
}
