/** Shopify CDN: Minification failed

Line 59:2 Expected "}" to go with "{"

**/
/* KOSHBERRY Enhanced Product Card Styles - Horizon Theme */

product-card {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  position: relative;
  z-index: 2;
}

product-card .product-card__content {
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-background);
}

product-card .card-gallery {
  overflow: hidden;
  background: #FFF5F0;
}

product-card .card-gallery img {
  transition: transform 0.4s ease !important;
}

product-card:hover .card-gallery img {
  transform: scale(1.05) !important;
}

product-card .price-item--sale {
  color: #FF6B6B !important;
  font-weight: 700 !important;
}

product-card .compare-at-price {
  opacity: 0.5 !important;
  font-size: 12px !important;
}

product-card .product-badges__badge {
  border-radius: 20px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 749px) {
  product-card:hover {
    transform: none;
    box-shadow: none;
  