/** Shopify CDN: Minification failed

Line 169:50 Expected ")" to go with "("

**/
/* Product Cards CSS - Override base styles */

/* Product Grid Styles to fix sizing issues */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 100%;
}

/* Always maintain grid columns even with few items */
.product-grid:after {
  content: '';
  display: block;
  grid-column: span 1;
}

/* Fix card sizing, override all default styles */
.product-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 340px !important;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card .card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.product-card-image-wrapper {
  height: 200px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  overflow: hidden;
  padding: 0 !important;
}

.product-card-image {
  max-width: 85%;
  max-height: 85%;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.product-card-info {
  padding: 15px !important;
  height: 120px !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card-title {
  font-size: 16px !important;
  font-weight: 500 !important;
  margin: 0 0 10px 0 !important;
  color: #333;
  line-height: 1.4;
}

.product-card-title a {
  text-decoration: none;
  color: inherit;
}

.product-card-price {
  margin-top: auto;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.product-card-price-sale {
  color: #e53935;
}

.product-card-price-compare {
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}

.product-card-vendor {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-card {
    height: 320px !important;
  }
  
  .product-card-image-wrapper {
    height: 180px !important;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  
  .product-card {
    height: 300px !important;
  }
  
  .product-card-image-wrapper {
    height: 160px !important;
  }
  
  .product-card-info {
    padding: 10px !important;
    height: 110px !important;
  }
  
  .product-card-title {
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }
}

/* Fix for when there's only one product or a filtered result */
.product-grid:has(> .product-card:only-child) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .product-grid:has(> .product-card:only-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr