/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"
Line 67:20 Unexpected "{"
Line 67:29 Expected ":"
Line 67:36 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collections-slider (INDEX:12) */
#shopify-section-{{ section.id }} {
  padding-top: 30px;
  padding-bottom: 70px;
  padding-left: 40px;
  background-color: #171717;
  color: #ffffff;
}

/* Optional wrapper */
.collection-block-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 40px;
}

.collection-block-title {
  margin-top: 0;
  margin-bottom: 30px;
  padding-top: 30px;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
}

/* Make product title smaller */
.card__heading {
  font-size: 18px !important;
  line-height: 1.3;
}

/* Products container - horizontal scroll */
.products-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.products-container::-webkit-scrollbar {
  display: none;
}

.products-container .grid__item {
  flex: 0 0 250px;  /* adjust width for desired product card size */
  min-width: 200px;
}

/* Mobile adjustments */
@media (max-width: 749px) {
  #shopify-section-{{ section.id }} {
    padding-left: 20px;
  }
  .collection-block-wrapper {
    padding-left: 20px;
  }
  .products-container .grid__item {
    flex: 0 0 200px; /* smaller cards on mobile */
  }
}
.grid__item {
  position: relative;
}
/* END_SECTION:collections-slider */