/* --- СКРУГЛЯЕМ ВСЁ --- */
.ProductList-module__wrapper .Product-module__wrapper,
[class*="ProductList"] [class*="Product-module__wrapper"],
.shop-card,
button, .button, input[type="submit"],
.ShopFilters-module__button, .filters button, .tabs button,
[class*="discount"], .Product-module__discount {
  border-radius: 12px !important;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s, border-radius 0.22s;
}

/* --- ПОДСВЕТКА КАРТОЧКИ ТОВАРА ПРИ НАВЕДЕНИИ (КРАСНАЯ) --- */
.Product-module__wrapper:hover,
[class*="Product-module__wrapper"]:hover,
.shop-card:hover,
.ProductList-module__wrapper .Product-module__wrapper:hover {
  box-shadow: 0 3px 16px 0 rgba(105, 105, 105) !important;
  background: #26282c !important;
  transform: translateY(-3px) scale(1.022) !important;
  z-index: 10 !important;
  transition: background 0.16s, box-shadow 0.18s, transform 0.16s !important;
  cursor: pointer !important;
}

/* --- Категории (скругляем кнопки категорий) --- */
.ShopFilters-module__button,
.filters button,
.tabs button {
  border-radius: 10px !important;
}

/* --- Акции/Скидки (скидочные бейджи) --- */
.Product-module__discount,
[class*="discount"] {
  border-radius: 8px !important;
}

/* --- Плавность для всего --- */
* {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-radius 0.22s, transform 0.16s;
}