
/* Product Grid Wrapper */
.masterz-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: start;
  padding: 20px;
}

/* Product Card */
.masterz-product-item {
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 15px;
  transition: all 0.3s ease;
}

.masterz-product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.masterz-product-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
}

/* Product Title */
.masterz-product-item h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 5px;
  color: #191c1e;
  text-transform: capitalize;
}

/* Product Price */
.masterz-product-item .price {
  font-size: 16px;
  color: #c79d46;
  font-weight: 500;
}
