.products-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

@media(max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🔹 Карточка товара */
.products-grid .product {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.products-grid .product:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 🔹 Название товара */
.products-grid .product .woocommerce-loop-product__title {
  text-align: center;
  font-size: 16px;
  margin: 10px 0;
}

/* 🔹 Единый стиль для кнопок (В корзину + Загрузить ещё) */
.products-grid .product .button,
#load-more-products {
  display: inline-block;
  margin: 10px auto 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff7f42, #ff6f2c);
  color: #fff !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* 🔹 Эффект при наведении */
.products-grid .product .button:hover,
#load-more-products:hover {
  background: linear-gradient(180deg, #ff6f2c, #e65a15);
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none;
}

/* 🔹 Эффект при нажатии */
.products-grid .product .button:active,
#load-more-products:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* 🔹 Контейнер кнопки "Загрузить ещё" */
.text-center {
  text-align: center;
  margin-top: 20px;
}


/* --- Убираем все возможные маркеры / точки (list-style, ::marker, ::before/::after) --- */


ul.products li.product::marker,
ul.products li::marker,
.products-grid li.product::marker {
  content: "" !important;
  display: none !important;
  font-size: 0 !important;
  color: transparent !important;
}

ul.products li.product::before,
ul.products li.product::after,
ul.products li::before,
ul.products li::after,
.products-grid li.product::before,
.products-grid li.product::after {
  content: none !important;
  display: none !important;
}