/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 135:0 Unexpected "<"
Line 135:8 Expected "}" to go with "{"

**/
/* ===== PRODUCT GRID SHARED (Collection + Search) ===== */

<style>
.collection-wrapper {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 641px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr); /* Tablet: 3 columns */
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
  }
}

.product-card {
  border: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  background: #e5d3b3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
  
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 6px;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card a {
  text-decoration: none; /* Remove underline from all links */
  color: inherit;
}

.product-title {
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.product-link:hover .product-title {
  text-decoration: underline; /* Only title gets underlined on hover */
}

  
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  font-size: 14px;
}

.product-card__meta .price {
  font-weight: bold;
  color: #222;
}

.product-card__meta .reviews {
  color: #ffb700;
  font-size: 13px;
}


  .jdgm-widget.jdgm-preview-badge {
  display: block !important;
}

  .jdgm-preview-badge {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 14px !important;
  color: #ffb700 !important;
  overflow: visible !important;
  white-space: nowrap;
}

.jdgm-prev-badge {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

  
.product-card h3 {
  font-size: 16px;
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.2em;
}


  .card__media {
  aspect-ratio: 1 / 1; /* or 4/5 or whatever suits your layout */
}


</style>