.card {
    width: 325px;
    min-height: 350px;
    box-shadow: 1px 2px 4px rgb(22, 103, 255);;
    display: flex;
    /* flex-direction: column; Размещаем элементы в колонку */
    border-radius: 4px;
    transition: 0.2s;
    position: relative;
    margin: 10px;
    margin-bottom: 20px;
    background-color: #111111;
  }
  
  /* При наведении на карточку - меняем цвет тени */
  .card:hover {
    box-shadow: 4px 8px 16px rgb(22, 103, 255);;
  }
  
  .card__top {
    flex: 0 0 220px; /* Задаем высоту 220px, запрещаем расширение и сужение по высоте */
    position: relative;
    overflow: hidden; /* Скрываем, что выходит за пределы */
  }
  
  /* Контейнер для картинки */
  .card__image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .card__image > img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Встраиваем картинку в контейнер card__image */
    transition: 0.2s;
  }
  
  /* При наведении - увеличиваем картинку */
  .card__image:hover > img {
    transform: scale(1.1);
  }
  
  /* Размещаем скидку на товар относительно изображения */
  .card__label {
    padding: 4px 8px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgb(22, 103, 255);
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
  }
  
  .card__bottom {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto; /* Занимаем всю оставшуюся высоту карточки */
    padding: 10px;
  }
  
  .card__prices {
    display: flex;
    margin-bottom: 10px;
    flex: 0 0 50%; /* Размещаем цены равномерно в две колонки */
  }
  
  .card__price::after {
    content: "₽";
    margin-left: 4px;
    position: relative;
  }
  
  .card__price--discount {
    font-weight: 700;
    font-size: 19px;
    color: rgb(22, 103, 255);
    display: flex;
    flex-wrap: wrap-reverse;
  }
  
  .card__price--discount::before {
    content: none;
    font-weight: 400;
    font-size: 13px;
    color: #bfbfbf;
  }
  
  .card__price--common {
    font-weight: 400;
    font-size: 17px;
    color: #606060;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
  }
  
  .card__price--common::before {
    content: "Обычная";
    font-weight: 400;
    font-size: 13px;
    color: #bfbfbf;
  }
  
  .card__title {
    display: block;
    margin-bottom: 5px;
    font-weight: 200;
    font-size: 17px;
    /* line-height: 150%; */
    color: #f7f7f7;
  }
  
  .card__title:hover {
    color: rgb(22, 103, 255);
  }
  
  .card__add {
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 17px;
    color: rgb(22, 103, 255);
    padding: 10px;
    text-align: center;
    border: 1px solid rgb(22, 103, 255);
    border-radius: 4px;
    cursor: pointer; /* Меняем курсор при наведении */
    /* transition: 0.2s; */
    margin-top: auto; /* Прижимаем кнопку к низу карточки */
    transition: 0.2s;
  }
  
  .card__add:hover {
    /* border: 1px solid #ff6633; */
    transition: 0.2s;
    font-size: 18px;

    background-color:rgb(22, 103, 255);
    color: #fff;
  }



.cardSortir {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}


