/* 🛒 Стильная иконка корзины в изумрудном стиле */
.t-store__carticon {
  background-color: #008b6f !important;
  border-radius: 50%;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,139,111,0.25);
  transition: all 0.3s ease;
}

/* Hover — лёгкое свечение и увеличение */
.t-store__carticon:hover {
  background-color: #00a985 !important;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,139,111,0.35);
}

/* SVG-иконка корзины */
.t-store__carticon svg {
  stroke: #ffffff !important;
  width: 22px;
  height: 22px;
  transition: stroke 0.3s ease;
}

/* Hover — немного светлее */
.t-store__carticon:hover svg {
  stroke: #eafff8 !important;
}

/* Количество товаров */
.t-store__cartwin-prodamount {
  background-color: #00a985 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50%;
  padding: 2px 6px !important;
  font-size: 12px !important;
  box-shadow: 0 0 5px rgba(0,139,111,0.4);
  top: -5px !important;
  right: -5px !important;
}






/* 🌿 Каталог товаров в изумрудном стиле */
.t-store {
  background-color: #eff3f2 !important; /* Цвет заднего фона блока
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Карточки товаров */
.t-store__card {
  background-color: #fafdfc !important;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
  transition: all 0.3s ease;
  border: none !important; /* ❌ убираем обводку сбоку */
}

.t-store__card:hover {
  box-shadow: 0 6px 20x rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Названия и цены */
.t-store__card__title {
  color: #003d2f !important;
  font-weight: 600 !important;
  text-align: center;
}

.t-store__card__price {
  color: #007f66 !important;
  font-weight: 700;
  font-size: 18px !important;
  text-align: center;
  margin-bottom: 10px !important; /* 🌸 добавлен лёгкий отступ после цены */
}

/* Кнопки "Купить" */
.t-store__card__btn,
.t-store__addbtn {
  background-color: #008b6f !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px !important;
  transition: all 0.3s ease;
  border: 2px solid #008b6f !important;
}

.t-store__card__btn:hover,
.t-store__addbtn:hover {
  background-color: #00a985 !important;
  border-color: #00a985 !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,139,111,0.3);
}

/* Фильтры */
.t-store__filter__wrapper {
  background-color: #f5fcfa !important;
  border-radius: 10px;
  border: 1px solid #d9f1ea;
  padding: 12px 18px !important;
  margin-bottom: 30px !important;
}

.t-store__filter__item {
  color: #006852 !important;
  border-radius: 4px;
  transition: 0.3s;
  padding: 5px 12px;
}

.t-store__filter__item:hover {
  background-color: #d6f3ea !important;
}

.t-store__filter__item.t-active {
  background-color: #008b6f !important;
  color: #fff !important;
}

/* Корзина и количество */
.t-store__carticon {
  background-color: #008b6f !important;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,139,111,0.3);
}

.t-store__cartwin-prodamount {
  background: #00a985 !important;
}

/* Мобильная адаптация */
@media (max-width: 960px) {
  .t-store__card {
    border-radius: 8px;
    padding: 10px !important;
  }

  .t-store__card__title {
    font-size: 15px !important;
  }

  .t-store__card__price {
    font-size: 16px !important;
  }

  .t-store__card__btn {
    width: 100%;
    padding: 10px !important;
    font-size: 14px !important;
  }
}
