/** Shopify CDN: Minification failed

Line 203:0 All "@import" rules must come first
Line 405:0 All "@import" rules must come first
Line 780:17 Expected identifier but found whitespace
Line 780:19 Unexpected "{"
Line 780:28 Expected ":"
Line 782:15 Expected identifier but found whitespace
Line 782:17 Unexpected "{"
Line 782:26 Expected ":"
Line 783:23 Expected identifier but found whitespace
Line 783:25 Unexpected "{"
... and 1 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cw-faq-section (INDEX:14) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;600&display=swap');

  .faq-section {
    background-color: var(--faq-bg, #ddeef4);
    padding: 80px 20px;
    font-family: 'Libre Franklin', sans-serif;
  }

  .faq-section__container {
    max-width: 820px;
    margin: 0 auto;
  }

  /* Header */
  .faq-section__header {
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-section__title {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0px;
    color: var(--faq-text, #1a2e35);
    margin: 0 0 16px;
  }

  .faq-section__title-accent {
    color: var(--faq-accent, #2e7d9a);
  }

  .faq-section__subtitle {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--faq-text, #1a2e35);
    opacity: 0.75;
    margin: 0;
  }

  /* FAQ List */
  .faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* FAQ Item */
  .faq-section__item {
    background-color: #DEEEF3;
    border: 1.5px solid #2222224D;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .faq-section__item--open,
  .faq-section__item[data-open],
  .faq-section__item:focus-within {
    background-color: #ffffff;
  }
  .faq-section__item--open .faq-section__question-text,
.faq-section__item[data-open] .faq-section__question-text {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0;
}

  /* Question Button */
  .faq-section__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0px;
    color: var(--faq-text, #1a2e35);
    -webkit-font-smoothing: antialiased;
  }

  .faq-section__question:focus-visible {
    outline-offset: -2px;
    border-radius: 10px;
  }

  .faq-section__question-text {
    flex: 1;
  }

  /* Icon */
  .faq-section__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--faq-accent, #2e7d9a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-accent, #2e7d9a);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .faq-section__icon-minus {
    display: none;
  }

  .faq-section__item--open .faq-section__icon,
  .faq-section__item[data-open] .faq-section__icon {
    background-color: var(--faq-accent, #2e7d9a);
    color: #ffffff;
  }

  .faq-section__item--open .faq-section__icon-plus,
  .faq-section__item[data-open] .faq-section__icon-plus {
    display: none;
  }

  .faq-section__item--open .faq-section__icon-minus,
  .faq-section__item[data-open] .faq-section__icon-minus {
    display: block;
  }

  /* Answer */
  .faq-section__answer {
    overflow: hidden;
  }

  .faq-section__answer[hidden] {
    display: none;
  }

  .faq-section__answer-inner {
    padding: 0 24px 20px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: var(--faq-text, #1a2e35);
    opacity: 0.8;
  }

  .faq-section__answer-inner p {
    margin: 0;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .faq-section {
      padding: 60px 16px;
    }

    .faq-section__title {
      font-size: 28px;
    }

    .faq-section__question {
      font-size: 17px;
      padding: 18px 18px;
    }

    .faq-section__answer-inner {
      padding: 0 18px 18px;
    }
  }
/* END_SECTION:cw-faq-section */

/* START_SECTION:cw-product-feature (INDEX:19) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;600;700&display=swap');

  .cs-banner {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Libre Franklin', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .cs-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  /* Desktop: mostra desktop, esconde mobile */
  .cs-banner__bg--mobile {
    display: none;
  }

  .cs-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
  }

  .cs-banner__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
  }

  .cs-banner__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 45%;
    max-width: 520px;
  }

  .cs-banner__heading {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.3px;
    color: var(--cs-text, #1a2e35);
    margin: 0;
  }

  .cs-banner__subheading {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    color: var(--cs-text, #1a2e35);
    margin: 0;
  }

  .cs-banner__body {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--cs-text, #1a2e35);
    margin: 0;
  }

  .cs-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 17px 40px;
    background-color: #218DB0 !important;
    color: var(--cs-btn-text, #ffffff);
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 60px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    align-self: flex-start;
    min-width: 260px;
    text-align: center;
  }

  .cs-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(33, 141, 176, 0.38);
  }

  .cs-banner__cta:active {
    transform: translateY(0);
  }

  .cs-banner__cta--disabled {
    pointer-events: none;
    opacity: 0.6;
  }

  .cs-banner__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .cs-banner__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--cs-star-color, #f5a623);
  }

  .cs-banner__rating-text {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--cs-text, #1a2e35);
  }

  .cs-banner__rating-text strong {
    font-weight: 700;
  }

  /* ─── MOBILE ─────────────────────────────────────────── */
  @media (max-width: 768px) {

    .cs-banner {
      flex-direction: column;
      align-items: stretch;
      min-height: auto;
      overflow: hidden;
    }
    .cs-banner__rating-text{
      font-size: 12px;

    }

    /* Esconde desktop, mostra mobile */
    .cs-banner__bg--desktop {
      display: none;
    }

    .cs-banner__bg--mobile {
      display: block;
      position: relative;
      inset: auto;
      width: 100%;
      height: 480px;
      flex-shrink: 0;
      z-index: 0;
    }

    .cs-banner__bg--mobile .cs-banner__bg-img {
      object-fit: cover;
      object-position: center top;
    }

    .cs-banner__container {
      position: relative;
      z-index: 1;
      justify-content: flex-start;
      padding: 28px 20px 36px;
      background-color: var(--cs-mobile-bg, #B9DCE4);
    }

    .cs-banner__content {
      width: 100%;
      max-width: 100%;
      gap: 12px;
    }

    .cs-banner__heading {
      font-size: 26px;
    }

    .cs-banner__cta {
      align-self: stretch;
      min-width: 0;
      width: 100%;
    }
  }
/* END_SECTION:cw-product-feature */

/* START_SECTION:cw-protect (INDEX:21) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;600;700&display=swap');
@media (min-width: 769px) {
  .cs-banner {
    min-height: 704px;
    height: 704px;
    align-items: stretch;
  }

  .cs-banner__bg-img {
    width: 100%;
    height: 704px;
    object-fit: cover;
    object-position: center center;
  }

  .cs-banner__container {
    max-width: 1500px;
    height: 704px;
    padding: 0;
    position: relative;
    display: block;
  }

  .cs-banner__content {
    position: absolute;
    left: 699px;
    top: 216px;
    width: 673px;
    max-width: 673px;
    gap: 25px;
  }

  .cs-banner__heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 0;
    max-width: 673px;
  }

  .cs-banner__subheading {
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
  }

  .cs-banner__body {
    width: 673px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
  }

  .cs-banner__cta {
    width: 400px;
    height: 60px;
    padding: 0 20px;
    margin-top: 0;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    align-self: flex-start;
  }

  .cs-banner__rating {
    width: 400px;
    gap: 10px;
  }

  .cs-banner__rating-text {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: 0.7px;
  }
}
  /* ─── Base ─────────────────────────────────────────────────── */
  .hero-banner {
    position: relative;
    width: 100%;
    min-height: 780px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Libre Franklin', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── Background ────────────────────────────────────────────── */
  .hero-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-banner__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    display: block;
  }

  .hero-banner__bg-img--mobile {
    display: none;
  }

  .hero-banner__bg-overlay {
    position: absolute;
    inset: 0;
    
  }

  /* ─── Container ─────────────────────────────────────────────── */
  .hero-banner__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px 500px;
    width: 100%;
    box-sizing: border-box;
  }

  /* ─── Content block ─────────────────────────────────────────── */
  .hero-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    color: var(--hero-text, #ffffff);
  }

  /* ─── Heading ───────────────────────────────────────────────── */
  .hero-banner__heading {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--hero-text, #ffffff);
    margin: 0;
    max-width: 720px;
    margin-top: 50px;
  }

  /* ─── Subheading ─────────────────────────────────────────────── */
  .hero-banner__subheading {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    color: var(--hero-text, #ffffff);
    opacity: 0.9;
    margin: 0;
    max-width: 580px;
  }

  /* ─── Features ───────────────────────────────────────────────── */
  .hero-banner__features {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
  }

  .hero-banner__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: var(--hero-text, #ffffff);
    max-width: 200px;

  }

  .hero-banner__feature-icon {
    flex-shrink: 0;
    margin-top: 1px;
  }
  span.hero-banner__feature-icon svg {
    width: 35px !important;
    height: 35px !important;
}

  /* ─── CTA Button ──────────────  ───────────────────────────────── */
  .hero-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
    height: 60px;
    width: 400px !important;
    background-color:  #ffffff;
    color: #218DB0;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 60px;
    border: none;
    cursor: pointer;
 
  }

  .hero-banner__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .hero-banner__cta:active {
    transform: translateY(0);
  }

  .hero-banner__cta[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.6;
  }

  /* ─── Rating ──────────────────────────────────────────────────── */
  .hero-banner__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .hero-banner__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--hero-star-color, #f5a623);
  }

  .hero-banner__rating-text {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--hero-text, #ffffff);
    opacity: 0.9;
  }

  .hero-banner__rating-text strong {
    font-weight: 700;
  }
@media (max-width: 768px) {
  .hero-banner__bg-img--mobile {
    object-fit: cover !important;
    object-position: center 85% !important;
  }
}
  /* ─── Responsive ──────────────────────────────────────────────── */
  @media (max-width: 768px) {
    .hero-banner {
      min-height: auto;
    }
      .hero-banner__heading {
        font-size: 25px;
      }
      .hero-banner__cta{
        height: 50px !important;
        font-size: 18px !important;
      }

     .hero-banner__content{
      margin-bottom: 200px;
    }
    .hero-banner__bg {
   padding-top: 0x;
}
 span.hero-banner__feature-icon svg {
    width: 22px !important;
    height: 22px !important;
}

    /* ── Image swap: hide desktop, show mobile ── */
    .hero-banner__bg-img--desktop {
      display: none;
    }

    .hero-banner__bg-img--mobile {
      display: block;
      object-position: top center; 
    }

    .hero-banner__bg-img--desktop:only-of-type {
      display: block;
      object-position: top center;
    }


    .hero-banner__container {
      padding: 48px 20px 64px;
    }

    .hero-banner__content {
      align-items: flex-start;
      text-align: left;
    }

    .hero-banner__heading {
      font-size: clamp(28px, 7vw, 38px);
    }

    .hero-banner__subheading {
      font-size: 16px;
    }

    .hero-banner__features {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      width: 100%;
      max-width: 100%;
      margin-top: 4px;
    }

    .hero-banner__feature {
      max-width: 100%;
      font-size: 14px;
    }

    .hero-banner__cta {
      min-width: 0;
      width: 100%;
      max-width: 340px;
      padding: 16px 32px;
      margin-top: 4px;
    }

    .hero-banner__rating {
      justify-content: flex-start;
    }
  }

  @media (max-width: 480px) {
    .hero-banner__container {
      padding: 10px 16px 56px;
    }

    .hero-banner__heading {
      font-size: 25px;
    }

    .hero-banner__cta {
      max-width: 100%;
    }
   
  }
  @media(min-width: 768px){
        .hero-banner__feature{
          flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    }
  }
/* END_SECTION:cw-protect */

/* START_SECTION:cw-smart-water-features (INDEX:22) */
.swf {
    --swf-accent: {{ section.settings.accent_color }};
    --swf-card-bg: #ffffff;
    --swf-text: {{ section.settings.text_color }};
    --swf-title-accent: {{ section.settings.title_accent_color }};
    --swf-font: 'Libre Franklin', sans-serif;

    background: linear-gradient(180deg, #FFFFFF 0%, #DEEEF3 100%);
    padding: 60px 20px;
    font-family: var(--swf-font);
    color: var(--swf-text);
  }

  /* ── Header ── */
  .swf__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
  }

  .swf__header-title {
    font-family: var(--swf-font);
    font-weight: 600;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--swf-text);
  }

  .swf__header-title--accent {
    display: block;
    color: var(--swf-title-accent);
  }

  .swf__header-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--swf-text);
    opacity: 0.75;
    margin: 0;
  }

  /* ── Blocks wrapper ── */
  .swf__blocks {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* ── Feature block ── */
  .swf__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .swf__block--card {
    background-color: var(--swf-card-bg);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    gap: 0;
    align-items: stretch;
  }

  .swf__block--card .swf__block-image {
    display: flex;
    align-items: stretch;
  }

  .swf__block--card .swf__block-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .swf__block--card .swf__img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
  }

  /* Image right = text first in DOM but visually on right */
  .swf__block--image_right .swf__block-image {
    order: 2;
  }

  .swf__block--image_right .swf__block-content {
    order: 1;
  }

  /* Image left = default */
  .swf__block--image_left .swf__block-image {
    order: 1;
  }

  .swf__block--image_left .swf__block-content {
    order: 2;
  }

  .swf__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
  }

  .swf__img--placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e8f0f4;
    border-radius: 14px;
  }

  /* ── Content ── */
  .swf__block-title {
    font-family: var(--swf-font);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--swf-text);
  }

  .swf__block-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    color: #222222;
    opacity: 0.8;
    margin: 0 0 20px;
  }

  /* ── Bullets ── */
  .swf__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .swf__bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--swf-text);
  }

  .swf__bullet-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .swf__bullet-icon svg {
    width: 22px;
    height: 22px;
  }

  .swf__bullet-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  /* ── CTA block ── */
  .swf__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 0 10px;
  }

  .swf__cta-btn {
    display: inline-block !important;
    color: #fff !important;
    font-family: var(--swf-font);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 18px 64px;
    border-radius: 50px;
    text-decoration: none !important;
    border: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
    min-width: 260px;
    text-align: center;
    cursor: pointer;
  }

  .swf__cta-btn:hover {
    opacity: 0.88 !important;
    transform: translateY(-1px);
    color: #fff !important;
  }

  .swf__cta-rating {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .swf__cta-stars {
    display: flex;
    gap: 2px;
    color: #f5a623;
  }

  .swf__cta-stars svg {
    width: 18px;
    height: 18px;
  }

  .swf__cta-rating-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--swf-text);
    opacity: 0.75;
  }

  /* ── Mobile (single column) ── */
  @media (max-width: 749px) {
    .swf {
      padding: 48px 16px;
    }
    .swf__block-desc{font-size: 15px;}

    .swf__header {
      margin-bottom: 40px;
    }

    .swf__header-title {
      font-size: 28px;
    }

    .swf__block {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .swf__block--card {
      padding: 0;
    }

    .swf__block--card .swf__block-content {
      padding: 24px 20px;
    }

    .swf__block--card .swf__img {
      min-height: 240px;
    }

    /* On mobile, image always on top regardless of desktop layout */
    .swf__block--image_right .swf__block-image,
    .swf__block--image_left .swf__block-image {
      order: 0;
    }

    .swf__block--image_right .swf__block-content,
    .swf__block--image_left .swf__block-content {
      order: 1;
    }

    .swf__block-title {
      font-size: 20px;
    }

    .swf__cta-btn {
      width: 100%;
      min-width: unset;
      padding: 17px 24px;
    }
  }
/* END_SECTION:cw-smart-water-features */