
.wpshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wpshop-card {
  font-family: "Montserrat", Sans-serif;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 16px;
  text-align: center;
}
.wpshop-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}
.wpshop-card h3 {
  font-family: "Montserrat", Sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 10px;
}
.wpshop-price {
  font-weight: 700;
  margin-top: 8px;
}
.wpshop-mini-gallery {
  margin-top: 8px;
}
.wpshop-add-to-cart {
  font-family: "Montserrat", Sans-serif;
  font-weight: 700;
  background: #fff;
  color: #000;
  border: 1px solid #FFD700;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wpshop-add-to-cart:hover {
  background: #FFD700;
  color: #fff;
}



/* --- WP WhatsApp Shop v1.4.5 : Responsive product grid --- */
.wpshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .wpshop-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .wpshop-card { padding: 12px; }
  .wpshop-thumb img { height: auto; max-height: 320px; object-fit: cover; }
}
/* --- end responsive snippet --- */
