/* products_mobile_override.css */
@media only screen and (max-width: 576px) {

  /* Принудительно фиксируем карточки товаров */
  .woocommerce ul.products {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .woocommerce ul.products li.product {
    flex: 0 0 auto !important;      /* отключаем гибкость */
    width: 95% !important;          /* ширина карточки 95% */
    max-width: 95% !important;
    height: auto !important;        /* высота по содержимому */
    margin: 0 0 1.5rem 0 !important; /* отступ снизу */
    box-sizing: border-box !important;
  }

  /* Изображение внутри карточки */
  .woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Название и цена */
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .price {
    font-size: 1.4rem !important;
    text-align: center !important;
    margin: 0.5rem 0 !important;
  }

  /* Кнопка */
  .woocommerce ul.products li.product .button {
    display: block !important;
    width: 80% !important;
    margin: 1rem auto 0 auto !important;
    text-align: center !important;
  }
}
