/* список карточек магазина */
.shop-list {
  list-style: none;
  margin: 18px 0 0; 
  padding: 0;
  display: grid;
  gap: 18px; 
}

/* карточка товара */
.shop-card {
  display: grid;
  grid-template-columns: 96px 1fr; 
  gap: 16px; 
  align-items: center;
}

/* фото детали */
.shop-card img {
  width: 96px; 
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}

.shop-card > img:not([src]) {
  visibility: hidden;
}

/* заголовок товара */
.shop-card__title {
  font-weight: 600;
  margin: 0 0 4px;
  font-size: 18px; 
}

/* описание */
.shop-card__desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
}
