.custom-woo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.custom-woo-product-item {
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.custom-woo-product-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.custom-woo-product-item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.custom-woo-product-item .product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}
.custom-woo-product-item .product-price {
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.custom-woo-product-item .product-category {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}
.custom-woo-product-item .add-to-cart {
  margin-top: 10px;
}
@media(max-width: 1024px){
  .custom-woo-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px){
  .custom-woo-products-grid { grid-template-columns: repeat(2, 1fr); }
}
