/* PH-BLURFILL — размытый фон из того же фото (letterbox fill).
   Паттерн: Apple Music / Telegram / iOS Photos.
   Откат: удалить <link> shop-ph-blurfill.css и <script> ph-blurfill.js
   из chunk style_scripts_head.v2 ИЛИ добавить class="no-ph-blurfill" на <html>. */

html:not(.no-ph-blurfill) body.v2 .pc .ph.is-letterbox{
  background:transparent;
}
html:not(.no-ph-blurfill) body.v2 .pc .ph.is-letterbox::before{
  content:"";
  position:absolute;
  inset:-8%;
  z-index:0;
  pointer-events:none;
  background-image:var(--ph-src);
  background-size:cover;
  background-position:center;
  filter:blur(18px) saturate(1.04);
  transform:scale(1.04);
}
html:not(.no-ph-blurfill) body.v2 .pc .ph.is-letterbox > img{
  position:relative;
  z-index:1;
}

@media (prefers-reduced-transparency: reduce){
  html:not(.no-ph-blurfill) body.v2 .pc .ph.is-letterbox::before{
    display:none;
  }
  html:not(.no-ph-blurfill) body.v2 .pc .ph.is-letterbox{
    background:var(--bg,#EFF1F3);
  }
}
