/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 11 2026 | 13:10:34 */
.estar-product-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.estar-product-grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0 !important;
  padding: 0 !important;
}

.estar-product-grid ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  list-style: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.estar-product-grid ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .estar-product-grid ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .estar-product-grid ul.products {
    grid-template-columns: 1fr;
  }
}

