
/* Стилизация всех ссылок внутри карточки товара */
.t-store__prod-info a,
.js-store-prod-text a,
.js-product-text a {
  display: inline-block;
  padding: 10px 15px;
  margin-right: 8px;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: 500;
  background-color: #3E4323;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.t-store__prod-info a:hover,
.js-store-prod-text a:hover,
.js-product-text a:hover {
  background-color: #53592E;
  color: #FFFFFF !important;
}

.t-store__prod-info a:last-of-type,
.js-store-prod-text a:last-of-type,
.js-product-text a:last-of-type {
  margin-right: 0;
}

