/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
Line 20:76 Expected ":"
Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 21:82 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

/* -------- CARD STYLING -------- */
.custom-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.25s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 380px; /* ✅ All cards same height */
}

.custom-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.custom-card-image {
  width: 100%;
  height: 250px; /* ✅ fixed image height */
  overflow: hidden;
}

.custom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportion */
  transition: transform 0.3s ease;
}

.custom-card:hover .custom-card-image img {
  transform: scale(1.08);
}

.custom-card-content {
  padding: 15px;
  flex-grow: 1;
}

.custom-card-title {
    font-size: 14px;
    color: #222;
    margin: 10px 0 6px;
    font-weight: 500;
    line-height: 1.3;
    min-height: 40px;
    text-decoration: none;
}

.custom-card-price {
    font-size: 15px;
    color: #771F61;
    font-weight: 600;
    margin-bottom: 10px;
}

.no-products {
  text-align: center;
  color: #888;
  font-size: 16px;
  margin-top: 20px;
}