/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 118:0 Unexpected "<"
Line 166:0 Unexpected "<"
Line 259:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.featured-products-custom {
  padding: 60px 0;
  background-color: #fff;
}

/* ✅ Container with left & right padding */
.featured-products__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; /* <-- add space from left & right */
}

.featured-products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-products__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.featured-products__view-all {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}

/* ✅ Flexible responsive grid */
.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 24px;
}

.featured-products__item {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-products__item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.featured-products__image-wrapper {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.featured-products__image {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.featured-products__image:hover {
  transform: scale(1.05);
}

.featured-products__info {
  margin-top: 10px;
  padding: 10px 0 20px;
}

.featured-products__product-title {
  font-size: 14px;
  color: #333;
  margin: 6px 0;
  text-decoration: none;
}

.featured-products__price {
  font-size: 14px;
  font-weight: 600;
}

/* ✅ Responsive padding & grid tweaks */
@media (max-width: 1200px) {
  .featured-products__container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .featured-products__container {
    padding: 0 18px;
  }
  .featured-products__title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .featured-products__container {
    padding: 0 12px;
  }
}
</style>
.features-info {
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #0b0b3b;
}

.feature-text {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.feature-button {
  color: #ff4d6d;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}

.feature-button:hover {
  text-decoration: underline;
}
<style>
.slideshow-custom {
  position: relative;
  overflow: hidden;
}
.slideshow-custom__track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.slideshow-custom__slide {
  min-width: 100%;
  position: relative;
}
.slideshow-custom__image {
  width: 100%;
  height: auto; /* ✅ Now adapts to image height */
  display: block;
}

/* Content overlay (optional) */
.slideshow-custom__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  border-radius: 8px;
  text-align: center;
}
.slideshow-custom__heading {
  font-size: 32px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.slideshow-custom__text {
  font-size: 16px;
  margin: 0 0 12px;
}
.slideshow-custom__button {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* Arrows */
.slideshow-custom__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}
.slideshow-custom__arrow--prev { left: 12px; }
.slideshow-custom__arrow--next { right: 12px; }

/* Dots */
.slideshow-custom__dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
}
.slideshow-custom__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}
.slideshow-custom__dot.active { background: white; }
.slideshow-custom__dot.large { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .slideshow-custom__heading { font-size: 22px; }
}
</style>