/** Shopify CDN: Minification failed

Line 89:8 Expected identifier but found whitespace
Line 89:10 Unexpected "{"
Line 89:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-showcase (INDEX:12) */
/* ---------------- BASE ---------------- */
.custom-collection {
  padding: 40px 0;
}

.custom-collection.color-scheme {
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.custom-header h2 {
  font-size: 26px;
  font-weight: 600;
}

.custom-viewall {
  border: 1px solid currentColor;
  padding: 8px 16px;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

/* ---------------- GRID ---------------- */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ---------------- IMAGE RATIO ---------------- */
.custom-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.custom-card__image::before {
  content: '';
  display: block;
  padding-bottom: var(--aspect-ratio);
}

.custom-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- CONTENT ---------------- */
.custom-title {
  font-size: 14px;
  margin: 8px 0;
}

.custom-price {
  font-size: 14px;
}

.custom-price s {
  color: rgba(var(--color-foreground), 0.6);
  margin-right: 6px;
}

.custom-price .sale {
  color: {{ section.settings.sale_color }};
  font-weight: 600;
}

/* ---------------- HOVER EFFECTS ---------------- */
.hover-zoom img {
  transition: transform 0.4s ease;
}
.hover-zoom:hover img {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hover-fade img {
  transition: opacity 0.3s ease;
}
.hover-fade:hover img {
  opacity: 0.85;
}

/* ---------------- ANIMATIONS ---------------- */
.animate-fade-up {
  animation: fadeUp 0.6s ease both;
}
.animate-fade {
  animation: fadeIn 0.5s ease both;
}
.animate-scale {
  animation: scaleIn 0.5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .mobile-enabled.mobile-horizontal .custom-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mobile-enabled.mobile-horizontal .custom-grid::-webkit-scrollbar {
    display: none;
  }

  .mobile-enabled.mobile-horizontal .custom-card {
    min-width: 75%;
    scroll-snap-align: start;
  }

  .mobile-enabled.mobile-vertical .custom-grid {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:collection-showcase */