.puniking-products-grid {
  --puniking-product-columns: 4;
  display: grid;
  grid-template-columns: repeat(var(--puniking-product-columns), minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.puniking-product-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.puniking-product-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

.puniking-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.puniking-product-card:hover .puniking-product-image img {
  transform: scale(1.04);
}

.puniking-product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px 14px;
}

.puniking-product-title {
  color: #222;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.puniking-product-title:hover {
  color: #f59a57;
}

.puniking-product-cats {
  min-height: 20px;
  color: #8a8f98;
  font-size: 14px;
  line-height: 1.35;
}

.puniking-product-price {
  color: #d99252;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.puniking-product-select,
.puniking-product-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.puniking-product-select {
  background: #f59a57;
}

.puniking-product-select:hover {
  background: #e68744;
  color: #fff;
}

.puniking-product-whatsapp {
  background: #24cf63;
}

.puniking-product-whatsapp::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("../images/whatsapp-icon-uploaded.png") center / contain no-repeat;
}

.puniking-product-whatsapp:hover {
  background: #16b653;
  color: #fff;
}

.puniking-product-desc {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #5d6470;
  font-size: 14px;
  line-height: 1.45;
}

.puniking-products-empty {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
}

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

@media (max-width: 640px) {
  .puniking-products-grid {
    grid-template-columns: 1fr;
  }
}
