/* 1) Полностью скрыть цену во всех местах (витрина + попап) */
.t-store__card__price,
.t-store__prod-popup__price,
.t-store__prod-popup__price-wrapper,
.t-store__prod-popup__price-item {
  display: none !important;
}

/* 2) Контейнер с кнопками в попапе — аккуратная сетка */
.t-store__prod-popup__text {
  margin-top: 10px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 3) Базовый стиль для любых ссылок-кнопок в описании попапа */
.t-store__prod-popup__text a {
  padding: 12px 10px;
  border-radius: 6px;
  margin: 0; /* переносы и интервалы дает gap */
  transition: background-color .3s !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-weight: 500;
  line-height: 1;
  min-height: 42px;
}

/* Иконка справа */
.t-store__prod-popup__text a::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background-size: cover;
  margin-left: 8px;
}

/* 4) Wildberries */
.t-store__prod-popup__text a[href*="wildberries"] {
  color: #fff !important;
  background-color: #A73AFD;
}
.t-store__prod-popup__text a[href*="wildberries"]:hover {
  background-color: #8D16EB;
}
.t-store__prod-popup__text a[href*="wildberries"]::after {
  background-image: url(https://static.tildacdn.com/tild3932-3064-4164-b937-323536393030/png-klev-club-9fr7-p.png);
}

/* 5) Ozon */
.t-store__prod-popup__text a[href*="ozon"] {
  color: #fff !important;
  background-color: #005BFF;
}
.t-store__prod-popup__text a[href*="ozon"]:hover {
  background-color: #004EDB;
}
.t-store__prod-popup__text a[href*="ozon"]::after {
  background-image: url(https://static.tildacdn.com/tild3731-3039-4461-b862-616336653430/svg_1747305757259.svg);
}

/* 6) Универсальное сжатие пустых верхних блоков (связка с нашим JS) */
.t-universal-trimmed {
  height: 2px !important;
  min-height: 2px !important;
  padding-top: 0 !important;
}
@media (max-width: 640px) {
  .t-universal-trimmed {
    height: 1px !important;
    min-height: 1px !important;
  }
}

/* 7) (Опционально) такие же кнопки в карточках на витрине,
   если ссылки вставляешь в короткое описание карточки */
.t-store__card__descr a[href*="wildberries"],
.t-store__card__descr a[href*="ozon"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 6px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  text-decoration: none !important;
}
.t-store__card__descr a[href*="wildberries"] { color:#fff!important;background:#A73AFD; }
.t-store__card__descr a[href*="wildberries"]:hover { background:#8D16EB; }
.t-store__card__descr a[href*="wildberries"]::after {
  content:'';width:24px;height:24px;margin-left:8px;background-size:cover;
  background-image:url(https://static.tildacdn.com/tild3932-3064-4164-b937-323536393030/png-klev-club-9fr7-p.png);
}
.t-store__card__descr a[href*="ozon"] { color:#fff!important;background:#005BFF; }
.t-store__card__descr a[href*="ozon"]:hover { background:#004EDB; }
.t-store__card__descr a[href*="ozon"]::after {
  content:'';width:24px;height:24px;margin-left:8px;background-size:cover;
  background-image:url(https://static.tildacdn.com/tild3731-3039-4461-b862-616336653430/svg_1747305757259.svg);
}
