/* 2026 */

.article-label::before {
  content: "Артикул: ";
}

.gr-compare-plus::after {
  content: " Сравнить";
  cursor: pointer;
}

.options-btn span::before {
  content: attr(data-text);
}

.buy-one-click::before {
  content: "Купить в 1 клик";
  display: inline-block; /* или block, в зависимости от вёрстки */
}

.quick-label::before {
  content: "Быстрый просмотр";
}

.cart-label::before {
  content: "В корзину";
}

.amount-title::before {
  content: "Количество:";
}

.gal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.item {
  text-align: center;
}

.item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #eee;
  display: block;
}

.item .desc {
  font-size: 0.8rem;
  color: #444;
}

/* на широких экранах — больше колонок */
@media (min-width: 600px) {
  .gal {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gal {
    grid-template-columns: repeat(4, 1fr);
  }
}