/* Стили для кнопки "Добавить в корзину" */
#rec1044100751 a.t786__btn {
  width: 290px !important;      /* Новая ширина 290px */
  height: 35px !important;
  background-color: #E3C98C !important;  /* Золотой цвет */
  color: #ffffff !important;    /* Чёрный текст */
  margin-top: 15px !important;
  border-radius: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: bold !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;      /* Убираем границу если была */
}

/* Убираем вложенную таблицу */
#rec1044100751 a.t786__btn table {
  display: none !important;
}

/* Добавляем текст кнопки */
#rec1044100751 a.t786__btn::after {
  content: "Добавить в корзину";
}

/* Стиль при наведении */
#rec1044100751 a.t786__btn:hover {
  background-color: #d4b974 !important;
  transform: translateY(-1px) !important;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  #rec1044100751 a.t786__btn {
    width: 100% !important;
    max-width: 290px !important;  /* Сохраняем пропорции */
    height: 45px !important;
    margin: 15px auto 0 !important;
  }
