/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 64:0 Unexpected "<"
Line 218:24 Unexpected "{"
Line 218:33 Expected ":"
Line 227:24 Unexpected "{"
Line 227:33 Expected ":"
Line 233:24 Unexpected "{"
Line 233:33 Expected ":"
Line 241:24 Unexpected "{"
Line 241:33 Expected ":"
... and 14 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
  .ultimate-feature-block {
    padding: 40px 20px;
  }
  .ultimate-feature-block__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: var(--text-alignment);
  }
  .ultimate-feature-block__image img {
    width: var(--image-width);
    height: var(--image-height);
    object-fit: cover;
    border-radius: var(--image-border-radius);
  }
  .ultimate-feature-block__heading {
    font-size: 2.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--heading-color);
  }
  .ultimate-feature-block__subheading {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--subheading-color);
  }
  .ultimate-feature-block__product-title {
    font-size: 1.6rem;
    margin-top: 10px;
    color: #000;
  }
  .ultimate-feature-block__product-price {
    font-size: 1.4rem;
    margin-top: 5px;
    color: #000;
  }
  .ultimate-feature-block__button {
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 6px;
    background: var(--button-bg-color);
    color: var(--button-text-color);
  }
</style>
.featured-offers-wrap {
  position: relative;
}
.featured-swiper-wrap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
.featured-swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  width: auto;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.featured-offer-card {
  width: 250px;
  min-height: 320px;
  padding: var(--card-padding, 1rem);
  border-radius: var(--card-radius, 1rem);
  background-color: var(--card-bg, #fff);
  background-image: var(--card-bg-image);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.featured-offer-image {
  margin: 0 auto 1rem;
  width: var(--img-size, 100px);
  height: var(--img-size, 100px);
  object-fit: contain;
  background: var(--img-bg, #f9f9f9);
  border-radius: var(--img-radius, 0%);
}
.featured-offer-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--title-color, #000);
}
.featured-offer-price {
  font-size: 0.95rem;
  color: var(--price-color, #333);
  margin-bottom: 0.5rem;
}
.featured-offer-button {
  padding: 0.5rem 1rem;
  background: var(--button-bg, #000);
  color: var(--button-color, #fff);
  border: none;
  border-radius: var(--button-radius, 0.5rem);
  cursor: pointer;
  font-size: 0.9rem;
}
.featured-js-wrap {
  padding: var(--section-padding, 40px) 16px;
  background-color: var(--section-bg, #f9f9f9);
  overflow-x: hidden;
}

.featured-js-header {
  text-align: center;
  font-size: var(--header-font-size, 22px);
  color: var(--header-font-color, #000);
  font-weight: var(--header-font-weight);
  margin-bottom: 20px;
}

.featured-js-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.featured-js-card {
  display: flex;
  flex-shrink: 0;
  width: 360px;
  min-height: 160px;
  background-color: var(--card-bg, #ffffff);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: center;
  border-radius: var(--card-radius, 12px);
  padding: var(--card-padding, 12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 16px;
}

.featured-js-card img {
  width: var(--img-size, 100px);
  height: var(--img-size, 100px);
  object-fit: contain;
  background-color: var(--img-bg, #f9f9f9);
  border-radius: var(--img-radius, 0%);
  flex-shrink: 0;
}

.featured-js-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.featured-js-card-content h3 {
  font-size: var(--title-font-size, 1rem);
  color: var(--title-color, #000);
  text-align: var(--title-align, left);
  margin: 0 0 4px 0;
  font-weight: bold;
  line-height: 1.2;
}

.featured-js-card-content .variant-title {
  font-size: var(--variant-font-size, 0.85rem);
  color: var(--variant-color, #666);
  text-align: var(--variant-align, left);
  margin-bottom: 4px;
}

.featured-js-card-content .price {
  font-size: var(--price-font-size, 0.95rem);
  color: var(--price-color, #222);
  text-align: var(--price-align, left);
  margin-bottom: 8px;
}

.featured-js-card-content .js-add-to-cart {
  background-color: var(--button-bg, #000);
  color: var(--button-color, #fff);
  border: none;
  padding: 8px 14px;
  border-radius: var(--button-radius, 6px);
  cursor: pointer;
  font-size: 0.85rem;
  width: fit-content;
}
#ipm-featured-products-{{ section.id }}.ipm-featured-products-section {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  padding: 40px 16px;
  background-color: #f9f9f9;
  overflow-x: hidden;
  width: 100%;
}

#ipm-featured-products-{{ section.id }} .ipm-inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

#ipm-featured-products-{{ section.id }} .ipm-header {
  text-align: center;
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

#ipm-featured-products-{{ section.id }} .ipm-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

#ipm-featured-products-{{ section.id }} .ipm-card {
  display: flex;
  flex-shrink: 0;
  width: 360px;
  min-height: 160px;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

#ipm-featured-products-{{ section.id }} .ipm-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: #f9f9f9;
  border-radius: 0;
  flex-shrink: 0;
}

#ipm-featured-products-{{ section.id }} .ipm-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

#ipm-featured-products-{{ section.id }} .ipm-title {
  font-size: 16px;
  color: #000;
  text-align: left;
  margin: 0 0 4px 0;
  font-weight: bold;
  line-height: 1.2;
}

#ipm-featured-products-{{ section.id }} .ipm-variant {
  font-size: 14px;
  color: #666;
  text-align: left;
  margin-bottom: 4px;
}

#ipm-featured-products-{{ section.id }} .ipm-price {
  font-size: 16px;
  color: #222;
  text-align: left;
  margin-bottom: 8px;
}

#ipm-featured-products-{{ section.id }} .ipm-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  width: fit-content;
}
.promo-grid-banner {
  padding: var(--section-padding, 40px) 16px;
  background-color: var(--section-bg, #ffffff);
}

.promo-grid-banner-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: var(--banner-radius, 0px);
}

.promo-grid-header {
  text-align: center;
  font-size: var(--header-font-size, 22px);
  font-weight: var(--header-font-weight, 700);
  color: var(--header-font-color, #000);
  margin-bottom: 20px;
}

.promo-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.promo-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--card-radius, 12px);
  background-color: var(--card-bg, #f9f9f9);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: center;
  padding: var(--card-padding, 16px);
  aspect-ratio: var(--card-ratio, 16 / 9);
  overflow: hidden;
  gap: 12px;
}

.promo-card-banner-wrapper {
  width: 100%;
  aspect-ratio: var(--banner-aspect, 5 / 1);
  overflow: hidden;
  border-radius: 6px;
}

.promo-card-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-card-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.promo-card img.product-image {
  width: var(--img-size, 100px);
  height: var(--img-size, 100px);
  object-fit: contain;
  background-color: var(--img-bg, #fff);
  border-radius: var(--img-radius, 0%);
  flex-shrink: 0;
}

.promo-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: var(--title-align, left);
  color: var(--title-color, #000);
}

.promo-card-content h3 {
  font-size: var(--title-font-size, 16px);
  color: var(--title-color, #000);
  margin: 0;
  font-weight: bold;
  text-align: var(--title-align, left);
}

.promo-card-content .variant-title {
  font-size: var(--variant-font-size, 14px);
  color: var(--variant-color, #666);
  text-align: var(--variant-align, left);
}

.promo-card-content .price {
  font-size: var(--price-font-size, 16px);
  color: var(--price-color, #222);
  text-align: var(--price-align, left);
}

.promo-card-content form button {
  background-color: var(--button-bg, #000);
  color: var(--button-color, #fff);
  border: none;
  padding: 8px 14px;
  border-radius: var(--button-radius, 6px);
  cursor: pointer;
  font-size: 0.85rem;
  width: fit-content;
}
  @media (max-width: 600px) {
  .promo-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-card {
    aspect-ratio: auto;
  }

  .promo-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-card img.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
  }

  .promo-card-content {
    text-align: left;
    align-items: flex-start;
  }
}