/* TE900 — центральная карточка больше, боковые меньше (DESKTOP) */
@media screen and (min-width: 980px) {

  /* чтобы увеличенная карточка не обрезалась */
  #rec1680287201 .t-slds__container {
    overflow: visible !important;
  }

  /* все карточки: уменьшаем внутреннюю обёртку */
  #rec1680287201 .t-slds__item > div {
    transform: scale(0.85);
    opacity: 0.6;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform-origin: center center;
    z-index: 1;
  }

  /* активная (центральная) карточка: делаем крупнее и ярче */
  #rec1680287201 .t-slds__item.t-slds__item_active > div {
    transform: scale(1.05);  /* можно 1.08, если хочешь больше акцента */
    opacity: 1;
    z-index: 3;
  }
}
/* Убираем разделители/линии в корзине Tilda (попап и встроенная) */
#allrecords .t706 hr,
#allrecords .t702 hr,
#allrecords .t754 hr,
#allrecords .t-store__cart hr {
  display: none !important;
  border: 0 !important;
}

/* Часто линия сделана через border-top */
#allrecords .t706__cartwin-products,
#allrecords .t706__cartwin-content,
#allrecords .t706__cartwin-top,
#allrecords .t702__cartwin-products,
#allrecords .t754__cartwin-products,
#allrecords .t-store__cart-items {
  border-top: none !important;
  border-bottom: none !important;
}

/* Часто линия сделана псевдоэлементом :before/:after */
#allrecords .t706__cartwin-products:before,
#allrecords .t706__cartwin-products:after,
#allrecords .t706__cartwin-content:before,
#allrecords .t706__cartwin-content:after,
#allrecords .t706__cartwin-top:before,
#allrecords .t706__cartwin-top:after,
#allrecords .t-store__cart-items:before,
#allrecords .t-store__cart-items:after {
  content: none !important;
  display: none !important;
  border: none !important;
}
