/* Cookie consent (CMP) — Legea RM 195/2024 */
.sp-consent{
  position:fixed; left:0; right:0; bottom:0; z-index:99999;
  display:none; padding:16px;
  background:rgba(0,0,0,.35);
}
.sp-consent.is-open{ display:block; }
.sp-consent__box{
  max-width:920px; margin:0 auto;
  background:#fff; color:#1a1a1a; border-radius:10px;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
  padding:20px 22px;
  font-size:14px; line-height:1.5;
}
.sp-consent__title{ font-size:18px; font-weight:700; margin:0 0 8px; }
.sp-consent__text{ margin:0 0 10px; }
.sp-consent__links{ margin:0; }
.sp-consent__links a{ color:#1466b8; text-decoration:underline; }
.sp-consent__links span{ margin:0 6px; color:#999; }

.sp-consent__actions{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;
  justify-content:flex-end;
}
.sp-consent__btn{
  flex:1 1 auto; min-width:140px;
  padding:11px 18px; border-radius:8px; border:2px solid transparent;
  font-size:14px; font-weight:600; cursor:pointer; text-align:center;
  transition:background .15s, border-color .15s;
}
/* Reject и Accept — одинаковый размер/вес/уровень (требование закона) */
.sp-consent__btn--reject{ background:#eef1f4; color:#1a1a1a; border-color:#cfd6dd; }
.sp-consent__btn--reject:hover{ background:#e2e7ec; }
.sp-consent__btn--accept{ background:#1466b8; color:#fff; border-color:#1466b8; }
.sp-consent__btn--accept:hover{ background:#0f5aa0; }
.sp-consent__btn--ghost{ background:#fff; color:#1466b8; border-color:#1466b8; }
.sp-consent__btn--ghost:hover{ background:#f2f7fc; }

.sp-consent__settings .sp-consent__cat{
  display:block; border-top:1px solid #eceff2; padding:12px 0; margin:0;
}
.sp-consent__cat-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.sp-consent__cat-name{ font-weight:600; }
.sp-consent__cat-desc{ margin:6px 0 0; color:#5a6b7b; font-size:13px; }
.sp-consent__always{ color:#2e7d32; font-size:12px; font-weight:600; }
.sp-consent__cat input[type=checkbox]{ width:20px; height:20px; cursor:pointer; }
.sp-consent__settings{ max-height:70vh; overflow:auto; }

@media (max-width:575px){
  .sp-consent{ padding:0; }
  .sp-consent__box{ border-radius:12px 12px 0 0; padding:16px; }
  .sp-consent__btn{ flex:1 1 100%; }
}

/* Гейтинг «предпочтений»: скрываем wishlist/compare до согласия (класс sp-no-pref на <html>) */
.sp-no-pref .sp-card-product__icons_favorite,
.sp-no-pref .sp-card-product__icons_compare,
.sp-no-pref .js-pref-gated{ display:none !important; }

/* Контент страницы сравнения скрыт без согласия (виден только промпт сверху) */
.sp-no-pref .sp-compare-page{ display:none !important; }

/* Промпт на страницах wishlist/compare при отсутствии согласия «предпочтения» */
.sp-pref-gate{
  margin:24px 0; padding:24px; text-align:center;
  background:#f2f7fc; border:1px solid #cfe0f2; border-radius:10px;
}
.sp-pref-gate__text{ margin:0 0 14px; font-size:15px; color:#1a1a1a; }
