.glass {
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  /* стеклянная заливка + блик в одном градиенте */
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.18) 30%,
    rgba(255,255,255,0.08) 55%,
    rgba(255,255,255,0.18) 75%,
    rgba(255,255,255,0.35) 100%
  );

  /* стеклянная обводка */
  border: 1px solid rgba(255,255,255,0.55);
}

/* Скрываем плавающую иконку личного кабинета */
.tlk-userbar__user {
display: none !important;
}

/* Корзина ST100 справа (ПК) */
@media screen and (min-width: 992px) {


/* Overlay для затемнения */
.t706__cartwin_show + .custom-overlay {
display: block;
}


.custom-overlay {
display: none; /* по умолчанию скрыт */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1000; /* под корзиной */
}


/* Корзина */
.t706__cartwin {
position: fixed !important;
top: 0 !important;
bottom: 0 !important;
right: 0 !important;
left: auto !important;
width: 600px !important;
max-width: 100% !important;
z-index: 1001 !important; /* выше overlay */
overflow-y: auto !important;
background-color: #fff;
box-shadow: -4px 0 20px rgba(0,0,0,0.2);
}


.t706__cartwin-heading {
text-align: center !important;
padding: 20px !important;
font-size: 22px !important;
}


}