/* ===== Мобильная адаптация каталога Таллекс Какао ===== */

/* --- Фиксированная кнопка "Написать в Telegram" на мобильных --- */
.talleks-mobile-cta {
  display: none;
}

@media (max-width: 767px) {

  /* --- Показать фиксированную кнопку --- */
  .talleks-mobile-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0088cc;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 17px !important;
    font-weight: 600;
    height: 56px;
    min-height: 56px;
    padding: 0 24px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
    border-radius: 0;
    letter-spacing: 0.01em;
  }

  /* --- Отступ снизу чтобы контент не перекрывался кнопкой --- */
  .t-body {
    padding-bottom: 56px !important;
  }

  /* --- Карточки каталога T-Store: 1 колонка --- */
  .t-store__card,
  .t-store .t-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* --- Размер текста минимум 16px для каталога --- */
  .t-store .t-store__card-title {
    font-size: 16px !important;
  }
  .t-store .t-store__card-descr {
    font-size: 15px !important;
  }
  .t-store .t-store__card-price {
    font-size: 16px !important;
  }

  /* --- Кнопка в карточке: минимум 44px --- */
  .t-store .t-store__card-btn {
    min-height: 44px !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
  }

  /* --- Изображения в карточках --- */
  .t-store__card-img-wrapper {
    height: auto !important;
  }
  .t-store__card-img-wrapper img {
    object-fit: cover !important;
    width: 100% !important;
  }

  /* --- Попап карточки товара --- */
  .t-store__popup-btn {
    min-height: 52px !important;
    font-size: 17px !important;
    padding: 14px 20px !important;
  }

  /* --- Кастомные HTML-кнопки внутри попапа --- */
  .t-store .t-text a[href^="tel:"],
  .t-store .t-text a[href^="https://t.me"] {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    font-size: 15px !important;
  }
}