.catalog-title{
    margin: 10px 0 40px 0;
    text-align: center;
}
/* Card Grid */
.cards {
    display: grid;
    /* Автоматически заполняем на всю ширину grid-контейнера */
    grid-template-columns: repeat(auto-fill, 265px);
    width: 100%;
    justify-content: center;
    justify-items: center; /* Размещаем карточку по центру */
    column-gap: 30px; /* Отступ между колонками */
    row-gap: 40px; /* Отступ между рядами */
    margin: 40px auto 80px;
}
/* Card */
.card {
    width: 265px;
    min-height: 260px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0.3, 0.3);
    display: flex;
    flex-direction: column; /* Размещаем элементы в колонку */
    border-radius: 20px;
    transition: 0.2s;
    position: relative;
  }
  /* При наведении на карточку - меняем цвет тени */
  .card:hover {
    box-shadow: 4px 8px 16px rgba(130, 113, 145, 0.3);
  }
  .card-top {
    flex: 0 0 200px; /* Задаем высоту 220px, запрещаем расширение и сужение по высоте */
    position: relative;
    overflow: hidden; /* Скрываем, что выходит за пределы */
    border-radius: 20px;
  }
  /* Контейнер для картинки */
  .card-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .card-image > img {
    width: 100%;
    height: 100%;
    /* object-fit: contain;   Встраиваем картинку в контейнер card__image */
    transition: 0.8s;
  }
  /* При наведении - увеличиваем картинку */
  .card-image:hover > img {
    transform: scale(1.1);
  }
  .card-bottom {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto; /* Занимаем всю оставшуюся высоту карточки */
    padding: 10px;
  }
  .card-title {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    line-height: 120%;
    color: #000;
    height: 90px;
  }
  .card-title:hover {
    color: #00a1e6;
  }
  .card-button {
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: #FFF;
    padding: 10px;
    text-align: center;
    border: 1px solid #00a1e6;
    background-color: #0085bc;
    border-radius: 20px;
    cursor: pointer; /* Меняем курсор при наведении */
    transition: 0.2s;
    margin-top: auto;  /* Прижимаем кнопку к низу карточки */
    transition: background-color 0.2s ease-in, top;
  }
  .card-button:hover {
    border: 1px solid #0085bc;
    background-color: #FFF;
    color: #0085bc;
  }
  .gall-card-title {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    line-height: 120%;
    color: #000;
    height: 50px;
  }
  .table-pic{
    width: 250px;
  }
  .table-pic img{
    width: 100%;
  }
  .table-title{
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
  }
  .table-price{
    font-size: 16px;
  }