/** Shopify CDN: Minification failed

Line 96:2 Unexpected "{"
Line 96:3 Expected identifier but found "%"
Line 115:2 Unexpected "{"
Line 115:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.zhome-banner-heading-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.zhome-banner-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #000;
}

.zhome-banner-subheading {
  font-size: 16px;
  color: #666;
}

.zhome-banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
}

.zhome-banner {
  width: 100%;
}

.zhome-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Tablet */
@media(min-width: 768px) and (max-width: 959px) {
  .zhome-banner {
    width: calc(50% - 8px);
  }
}

/* Desktop */
@media(min-width: 960px) {
  .zhome-banner {
    width: calc(33.333% - 11px);
  }
}
.media-slider-section {
  max-width: 100%;
  margin: 40px auto; /* ✅ Added top and bottom spacing */
  padding: 30px 16px;
  text-align: center;
  background: #d3d3d3;
}
.media-slider-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}
.media-slider-wrapper {
  overflow: hidden;
}
.media-slider-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.media-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-slide img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

/* MOBILE SLIDER (only if enabled) */
@media (max-width: 768px) {
  {% if section.settings.enable_mobile_slider %}
  .media-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .media-slider-wrapper::-webkit-scrollbar {
    display: none;
  }
  .media-slider-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .media-slide {
    flex: 0 0 50%;
    max-width: 50%;
    scroll-snap-align: start;
  }
  {% endif %}
}