
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border: none;
  box-shadow: 0 4px 5px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card h4 {
  font-size: 16px;
  text-align:left;
  margin-top:8px;
  line-height:1.5;
}

.product-card p {
  color: orange;
  font-weight: bold;
  font-size:16px;
  text-align:left;
  margin-bottom:8px;
}

.card-tp{
  padding:16px;
}

/* responsive rules */
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }
  .product-card h4 {
    font-size: 13px;
    margin-bottom:8px;
  }
  .product-card p {
    font-size:14px;
  }
  .card-tp{
    padding:8px 10px 8px 10px !important;
  }
}