/* Общие стили карточки */
.t-store__card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 0px 1px rgba(0,0,0,0.1);
}

.t-store__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Заголовок товара */
.t-store__card__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Цена */
.t-store__card__price-value {
  font-weight: bold;
  font-size: 16px;
  color: #2e2e2e;
}

/* Кнопки "в корзину", кроме "Заказать" и "Подробнее" */
.t-store__card__btn:not(.js-store-prod-btn):not(.js-store-prod-btn2) {
  display: inline-block;
  background-color: #8bd678;
  color: #2e2e2e;
  border-radius: 10px;
  padding: 6px 12px;
  font-family: 'FuturaPT', sans-serif;
  font-weight: 300;
  text-align: center;
  transition: background-color 0.3s ease;
}

.t-store__card__btn:not(.js-store-prod-btn):not(.js-store-prod-btn2):hover {
  background-color: #77c566;
}

/* Вес (варианты выбора) */
.t-product__option-item {
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 4px 8px;
  margin-right: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.t-product__option-item_active {
  background-color: #F2F2F2 !important;
  color: #333 !important; /* чтобы текст был хорошо читаем */
  border-color: #fff !important; /* если есть рамка, сделаем чуть светлее */
}

/* Кол-во товара */
.t-store__prod__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100px;
}

.t-store__prod__quantity input {
  text-align: center;
  width: 40px;
  border: none;
}

.t-store__prod__quantity__minus,
.t-store__prod__quantity__plus {
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
