/* Карточка товара */
.uc-custom-product,
.uc-custom-product--clone {
  display: grid;
  grid-template-columns: 72px 1fr auto 24px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #fff8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

/* Картинка */
.uc-custom-product__img .tn-atom {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Название */
.uc-custom-product__name .tn-atom {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}

/* SKU / мелкая инфа */
.uc-custom-product__sku .tn-atom {
  margin-top: 4px;
  font-size: 12px;
  color: #9b8b7a;
}

/* Количество */
.uc-custom-product__quantity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #f2e3cf;
}

/* Плюс/минус */
.uc-custom-product__quantity .t-inputquantity__btn-minus,
.uc-custom-product__quantity .t-inputquantity__btn-plus {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  background: #ffe3b0;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.uc-custom-product__quantity .t-inputquantity__btn-minus:hover,
.uc-custom-product__quantity .t-inputquantity__btn-plus:hover {
  background: #ffcf7a;
}

/* Инпут количества */
.uc-custom-product__quantity input[name="quantity"] {
  width: 32px;
  border: none;
  outline: none;
  text-align: center;
  background: transparent;
  font-size: 14px;
}

/* Цена */
.uc-custom-product__amount .tn-atom {
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  text-align: right;
}

/* Удалить */
.uc-custom-product__remove .tn-atom {
  cursor: pointer;
  font-size: 18px;
  color: #b3a89b;
  transition: color .15s ease;
}

.uc-custom-product__remove .tn-atom:hover {
  color: #000;
}