/* BNPL-кнопки под «Купить» на карточке товара */

.se-product-bnpl-wrap {
  margin-top: 2.8rem;
  width: 100%;
}

.se-product-bnpl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.se-product-bnpl__notice {
  margin: 0.6rem 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  color: #8e8e93;
  text-align: center;
}

.se-product-bnpl a.se-product-bnpl__row {
  text-decoration: none;
  color: #111;
}

.se-product-bnpl a.se-product-bnpl__row:hover {
  text-decoration: none;
  color: #111;
}

.se-product-bnpl__row {
  display: grid;
  grid-template-columns: 10.8rem minmax(0, 1fr) 1.2rem;
  align-items: center;
  column-gap: 1rem;
  min-height: 5.6rem;
  padding: 1rem 1.4rem;
  border: 1px solid #e5e5ea;
  border-radius: 1.2rem;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.se-product-bnpl__row:hover {
  border-color: #d1d1d6;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.04);
}

.se-product-bnpl__row.is-loading,
.se-product-bnpl__credit.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.se-product-bnpl__logo-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 10.8rem;
  height: 3.2rem;
  flex-shrink: 0;
}

.se-product-bnpl__logo {
  display: block;
  width: 10.8rem;
  height: 3.2rem;
  object-fit: contain;
  object-position: left center;
}

.se-product-bnpl__pay {
  min-width: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #333;
  text-align: left;
}

.se-product-bnpl__chevron {
  justify-self: end;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid #8e8e93;
  border-bottom: 2px solid #8e8e93;
  transform: rotate(-45deg);
}

.se-product-bnpl__credit.ui-btn.ui-btn--primary {
  width: 100%;
  margin-top: 0;
  min-height: 4.8rem;
  font-weight: 700;
  color: #fff !important;
  text-transform: none;
}

.se-product-bnpl__credit.ui-btn.ui-btn--primary:hover,
.se-product-bnpl__credit.ui-btn.ui-btn--primary:focus {
  color: #fff !important;
}

/* Старый блок Tinkoff «В кредит» — заменён новым UI */
.sku:has(.se-product-bnpl) .sku__credit {
  display: none !important;
}

@media (max-width: 767px) {
  .se-product-bnpl__row {
    grid-template-columns: 9rem minmax(0, 1fr) 1rem;
    column-gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    min-height: 5.2rem;
  }

  .se-product-bnpl__logo-cell,
  .se-product-bnpl__logo {
    width: 9rem;
    height: 2.8rem;
  }

  .se-product-bnpl__pay {
    font-size: 1.2rem;
  }
}
