/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:34 Unexpected "{"
Line 25:22 Unexpected "{"
Line 25:31 Expected ":"
Line 34:22 Unexpected "{"
Line 34:31 Expected ":"
Line 48:22 Unexpected "{"
Line 48:31 Expected ":"
Line 52:22 Unexpected "{"
... and 116 more hidden warnings

**/


/* CSS from section stylesheet tags */
.feature-section-{{ section.id }} {
      padding: 60px 20px;
      background:#fafafa
    }

    /* Use descendant selector with the unique section class */
    .feature-section-{{ section.id }} .feature-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 60px;
      flex-wrap: wrap;
      padding: 0 20px;
    }

    .feature-section-{{ section.id }} .feature-tab {
      padding: 13px 26px;
      background: #e8e8e8;
      border: none;
      border-radius: 30px;
      font-size: 20px !important;
      color:rgb(30, 23, 23);
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      white-space: nowrap;
      max-width: fit-content;
    }

    .feature-section-{{ section.id }} .feature-tab:hover {
      background: #d5d5d5;
    }

    .feature-section-{{ section.id }} .feature-tab.active {
      background: #1a1a1a;
      color: white;
    }

    .feature-section-{{ section.id }} .slider-container {
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
      padding: 0 20px;
    }

    .feature-section-{{ section.id }} .slider-wrapper {
      overflow: hidden;
      cursor: grab;
      user-select: none;
    }

    .feature-section-{{ section.id }} .slider-wrapper.dragging {
      cursor: grabbing;
    }

    .feature-section-{{ section.id }} .slider-track {
      display: flex;
      will-change: transform;
    }

    .feature-section-{{ section.id }} .slider-track.animated {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-section-{{ section.id }} .slide {
      min-width: 100%;
      display: flex;
      align-items: center;
      gap: 80px;
      padding: 20px 0px;
      flex-shrink: 0;
    }

    .feature-section-{{ section.id }} .slide-image {
      flex: 1;
      max-width: 620px;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 24px;
      background: #f5f5f5;
    }

    .feature-section-{{ section.id }} .slide-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 24px;
    }

    .feature-section-{{ section.id }} .slide-content {
      flex: 1;
      max-width: 480px;
    }

    .feature-section-{{ section.id }} .slide-content h2 {
      font-size: 34px !important;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 22px;
      line-height: 1.2;
    }
    .slide-content h2 {
      font-size: 34px !important;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 22px;
      line-height: 1.2;
  }

    .feature-section-{{ section.id }} .slide-content p {
      font-size: 17px !important;
      line-height: 1.7;
      color: #5a5a5a;
    }

    .feature-section-{{ section.id }} .slider-controls {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 50px;
    }

    .feature-section-{{ section.id }} .slider-arrow {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1.5px solid #d0d0d0;
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      position: relative;
    }

    .feature-section-{{ section.id }} .slider-arrow:hover {
      border-color: #1a1a1a;
      transform: scale(1.05);
    }

    .feature-section-{{ section.id }} .slider-arrow svg {
      width: 18px;
      height: 18px;
      stroke: #1a1a1a;
      stroke-width: 2.5;
      transition: opacity 0.3s ease;
    }

    .feature-section-{{ section.id }} .slider-arrow.loading svg {
      opacity: 0;
    }

    .feature-section-{{ section.id }} .slider-arrow .spinner {
      position: absolute;
      width: 24px;
      height: 24px;
      border: 2.5px solid #e0e0e0;
      border-top-color: #1a1a1a;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .feature-section-{{ section.id }} .slider-arrow.loading .spinner {
      opacity: 1;
      animation: spin 0.6s linear infinite;
    }


    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Tablet styles */
    @media (max-width: 1024px) {
      .feature-section-{{ section.id }} .slide {
        gap: 50px;
        padding: 20px 40px;
      }

      .feature-section-{{ section.id }} .slide-image {
        height: 420px;
      }

      .feature-section-{{ section.id }} .slide-content h2 {
        font-size: 32px;
      }

      .feature-section-{{ section.id }} .slide-content p {
        font-size: 16px;
      }
    }

    /* Mobile landscape and smaller tablets */
    @media (max-width: 968px) {
      .feature-section-{{ section.id }} {
        padding: 50px 15px;
      }

      .feature-section-{{ section.id }} .feature-tabs {
        margin-bottom: 50px;
      }

      .feature-section-{{ section.id }} .slide {
        flex-direction: column;
        gap: 40px;
        padding: 20px 30px;
      }

      .feature-section-{{ section.id }} .slide-image {
        max-width: 100%;
        height: 380px;
        width: 100%;
      }

      .feature-section-{{ section.id }} .slide-content {
        max-width: 100%;
        text-align: center;
      }

      .feature-section-{{ section.id }} .slide-content h2 {
        font-size: 28px;
        margin-bottom: 18px;
      }

      .feature-section-{{ section.id }} .slide-content p {
        font-size: 16px;
      }

      .feature-section-{{ section.id }} .slider-arrow {
        width: 48px;
        height: 48px;
      }

      .feature-section-{{ section.id }} .slider-arrow .spinner {
        width: 22px;
        height: 22px;
      }
    }

    /* Mobile portrait */
    @media (max-width: 640px) {
      .feature-section-{{ section.id }} {
        padding: 40px 10px;
      }


      .feature-section-{{ section.id }} .feature-tabs {
        gap: 6px;
        margin-bottom: 40px;
        padding: 0 10px;
      }

      .feature-section-{{ section.id }} .feature-tab {
        padding: 10px 18px;
        font-size: 20px;
      }

      .feature-section-{{ section.id }} .slide {
        padding: 10px 15px;
        gap: 30px;
      }

      .feature-section-{{ section.id }} .slide-image {
        height: 300px;
      }

      .feature-section-{{ section.id }} .slide-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
      }

      .feature-section-{{ section.id }} .slide-content p {
        font-size: 15px;
        line-height: 1.6;
      }

      .feature-section-{{ section.id }} .slide-content {
        flex: 0;
        max-width: 100% !important; /* Adjusted for better mobile display */
      }

      .feature-section-{{ section.id }} .slider-controls {
        margin-top: 35px;
        gap: 12px;
      }

      .feature-section-{{ section.id }} .slider-arrow {
        width: 44px;
        height: 44px;
      }

      .feature-section-{{ section.id }} .slider-arrow svg {
        width: 16px;
        height: 16px;
      }

      .feature-section-{{ section.id }} .slider-arrow .spinner {
        width: 20px;
        height: 20px;
      }
    }

    /* Small mobile devices */
    @media (max-width: 480px) {
      .feature-section-{{ section.id }} {
        padding: 30px 5px;
      }

      .feature-section-{{ section.id }} .feature-tab {
        padding: 9px 16px;
        font-size: 12px;
      }

      .feature-section-{{ section.id }} .slide {
        padding: 10px 10px;
      }

      .feature-section-{{ section.id }} .slide-image {
        height: 280px;
        border-radius: 16px;
      }

      .feature-section-{{ section.id }} .slide-image img {
        border-radius: 16px;
        max-width: 100%; /* Changed from 300px for responsiveness */
      }

      .feature-section-{{ section.id }} .slide-content h2 {
        font-size: 22px;
      }

      .feature-section-{{ section.id }} .slide-content p {
        font-size: 14px;
      }
    }

    /* Very small devices */
    @media (max-width: 360px) {
      .feature-section-{{ section.id }} .feature-tabs {
        gap: 5px;
      }

      .feature-section-{{ section.id }} .feature-tab {
        padding: 8px 14px;
        font-size: 11px;
      }

      .feature-section-{{ section.id }} .slide-image {
        height: 250px;
      }

      .feature-section-{{ section.id }} .slide-content h2 {
        font-size: 20px;
      }

      .feature-section-{{ section.id }} .slider-arrow {
        width: 40px;
        height: 40px;
      }

      .feature-section-{{ section.id }} .slider-arrow .spinner {
        width: 18px;
        height: 18px;
      }
    }
.feature-slider-section {
    padding: 60px 20px;
    background: #fafafa;
  }

  .feature-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .feature-tab {
    padding: 13px 26px;
    background: #e8e8e8;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    color: #5a5a5a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
  }

  .feature-tab:hover {
    background: #d5d5d5;
  }

  .feature-tab.active {
    background: #1a1a1a;
    color: white;
  }

  .slider-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
  }

  .slider-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
  }

  .slider-wrapper.dragging {
    cursor: grabbing;
  }

  .slider-track {
    display: flex;
    will-change: transform;
  }

  .slider-track.animated {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 20px 60px;
    flex-shrink: 0;
  }

  .slide-image {
    flex: 1;
    max-width: 620px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f5f5;
  }

  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
  }

  .slide-content {
    flex: 1;
    max-width: 480px;
  }
  .slide-content p {
    font-size: 17px !important;
    line-height: 1.7;
    color: #5a5a5a;
  }
  .product-features-section-template--25785126715657__cs_left_behind_gRRNP6 .pf-icon-item p {
    font-size: 18px !important;
  }
.product-features-section-template--25785126715657__cs_left_behind_gRRNP6 .pf-text-left p {
    font-size: 18px !important;
}
  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
  }

  .slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
  }

  .slider-arrow:hover {
    border-color: #1a1a1a;
    transform: scale(1.05);
  }

  .slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
    transition: opacity 0.3s ease;
  }

  .slider-arrow.loading svg {
    opacity: 0;
  }

  .slider-arrow .spinner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2.5px solid #e0e0e0;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .slider-arrow.loading .spinner {
    opacity: 1;
    animation: spin 0.6s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* Tablet styles */
  @media (max-width: 1024px) {
    .slide {
      gap: 50px;
      padding: 20px 40px;
    }

    .slide-image {
      height: 420px;
    }

    .slide-content h2 {
      font-size: 32px;
    }

    .slide-content p {
      font-size: 16px;
    }
  }

  /* Mobile landscape and smaller tablets */
  @media (max-width: 968px) {
    .feature-slider-section {
      padding: 50px 15px;
    }

    .feature-tabs {
      margin-bottom: 50px;
    }

    .slide {
      flex-direction: column;
      gap: 40px;
      padding: 20px 30px;
    }

    .slide-image {
      max-width: 100%;
      height: 380px;
      width: 100%;
    }

    .slide-content {
      max-width: 100%;
      text-align: center;
    }

    .slide-content h2 {
      font-size: 28px;
      margin-bottom: 18px;
    }

    .slide-content p {
      font-size: 16px;
    }

    .slider-arrow {
      width: 48px;
      height: 48px;
    }

    .slider-arrow .spinner {
      width: 22px;
      height: 22px;
    }
  }

  /* Mobile portrait */
  @media (max-width: 640px) {
    .feature-slider-section {
      padding: 40px 10px;
    }
    

    .feature-tabs {
      gap: 6px;
      margin-bottom: 40px;
      padding: 0 10px;
    }

    .feature-tab {
      padding: 10px 18px;
      font-size: 13px;
    }

    .slide {
      padding: 10px 15px;
      gap: 30px;
    }

    .slide-image {
      height: 300px;
    }

    .slide-content h2 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .slide-content p {
      font-size: 15px;
      line-height: 1.6;
    }

      .slide-content {
    flex: 0;
    max-width: 50vw!important;
  }

    .slider-controls {
      margin-top: 35px;
      gap: 12px;
    }

    .slider-arrow {
      width: 44px;
      height: 44px;
    }

    .slider-arrow svg {
      width: 16px;
      height: 16px;
    }

    .slider-arrow .spinner {
      width: 20px;
      height: 20px;
    }
  }

  /* Small mobile devices */
  @media (max-width: 480px) {
    .feature-slider-section {
      padding: 30px 5px;
    }

    .feature-tab {
      padding: 9px 16px;
      font-size: 12px;
    }

    .slide {
      padding: 10px 10px;
    }

    .slide-image {
      height: 280px;
      border-radius: 16px;
    }

    .slide-image img {
      border-radius: 16px;
      max-width: 300px;
    }

    .slide-content h2 {
      font-size: 22px;
    }

    .slide-content p {
      font-size: 14px;
    }
  }

  /* Very small devices */
  @media (max-width: 360px) {
    .feature-tabs {
      gap: 5px;
    }

    .feature-tab {
      padding: 8px 14px;
      font-size: 11px;
    }

    .slide-image {
      height: 250px;
    }

    .slide-content h2 {
      font-size: 20px;
    }

    .slider-arrow {
      width: 40px;
      height: 40px;
    }

    .slider-arrow .spinner {
      width: 18px;
      height: 18px;
    }
  }

/* CSS from block stylesheet tags */
.button.button--style {
        color: var(--color-button-style);
        background: var(--bg-button-style);
        border: 1px solid var(--border-button-style);
        max-width: var(--width-button-style);

        @media (min-width: 1025px) {
            &:hover {
                color: var(--color-button-hover-style);
                background: var(--bg-button-hover-style);
                border-color: var(--border-button-hover-style);
            }
        }
    }
@media screen and (width >= 1025px) {
        .media-block.container-full {
            padding-left: var(--padding-left-full-width);
            padding-right: var(--padding-right-full-width);
        }
    }

    .media-block {
        min-height: var(--section-min-height, 'auto');
    }

    .media-block.container {
        margin: 0;
    }
:root {
        --text-align-default: left;
    }

    [style*='--horizontal-alignment: center'] .special-heading-block {
        --text-align-default: center;
    }

    [style*='--horizontal-alignment: flex-end'] .special-heading-block {
        --text-align-default: right;
    }

    [style*='--horizontal-alignment: flex-start'] > .special-heading-block {
        --text-align-default: left;
    }

    [style*='--horizontal-alignment: center'] > .special-heading-block {
        --text-align-default: center;
    }

    [style*='--horizontal-alignment: flex-end'] > .special-heading-block {
        --text-align-default: right;
    }

    .special-heading-block {
        background-color: var(--background-color, transparent);
        border-radius: var(--corner-radius, 0rem);
    }

    .special-heading-block.h2 > * {
        font-size: var(--heading-size);
        color: var(--color-heading);
        line-height: var(--heading-line-height);
        text-align: var(--text-align, var(--text-align-default));
        overflow-wrap: anywhere;

        @media (max-width: 767px) {
            font-size: var(--heading-size-mb);
        }
    }

    .special-heading-block.h2 p {
        margin: unset;
    }

    .special-heading-block.h2 .special_text--color {
        color: var(--special_heading_color);
    }

    .special-heading-block.h2 .special_text--background {
        color: transparent;
        background-image: var(--special_heading_image);
        background-clip: text;
        -webkit-background-clip: text;
        background-position: center;
        background-size: cover;
    }

/* CSS from snippet stylesheet tags */
.background-image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .background-image-fit img {
    object-fit: contain;
  }
.video-background,
  .video-background * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .video-background--cover * {
    object-fit: cover;
  }

  .video-background--contain * {
    object-fit: contain;
  }

  @media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0px);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }
.section-content-wrapper.section-content-wrapper {
        min-height: calc(var(--section-min-height, 'auto') - var(--section-height-offset, 0px));
        position: relative;
        width: 100%;
        height: 100%;
    }

    .section-wrapper .section {
        min-height: var(--section-min-height, 'auto');
    }

    .section[data-shopify-visual-preview] {
        min-height: var(--section-preview-height);
        padding-top: 0;
    }

    .section[data-shopify-visual-preview] .custom-section-background {
        display: none;
    }

    body:has(> #header-group > .header-section > #header-component[transparent]):not(
        :has(> #header-group > .header-section + .shopify-section)
        )
        > main
        > .section-wrapper:first-child {
        --section-height-offset: var(--header-group-height, 0);
    }

    .section-wrapper .custom-section-background {
        grid-column: 1 / -1;
    }

    .custom-section-content {
        z-index: var(--layer-flat);
    }

    @media screen and (width >= 1025px) {
        .custom-section .container-full {
            padding-left: var(--padding-left-full-width);
            padding-right: var(--padding-right-full-width);
        }
    }

    .layout-panel-flex {
        display: flex !important;
        gap: var(--gap);
        height: 100%;
    }

    .layout-panel-flex--row {
        flex-flow: row var(--flex-wrap);
        justify-content: var(--horizontal-alignment);
        align-items: var(--vertical-alignment);
    }

    .layout-panel-flex--column {
        flex-flow: column var(--flex-wrap);
        align-items: var(--horizontal-alignment);
        justify-content: var(--vertical-alignment);
    }

    @media screen and (width < 750px) {
        .mobile-column {
            flex-flow: column nowrap;
            align-items: var(--horizontal-alignment);
            justify-content: var(--vertical-alignment-mobile);
        }

        .layout-panel-flex--row:not(.mobile-column) {
            .text-block {
                flex: 1 1 var(--max-width--display-tight);
            }

            .image-block {
                flex: 1 1 var(--size-style-width-mobile-min);
            }

            .button {
                flex: 0 0 fit-content;
            }
        }
    }

    @media (width >= 750px) {
        .layout-panel-flex {
            flex-direction: var(--flex-direction);
        }
    }
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block,
  .text-block > * {
    width: var(--width);
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block,
  .text-block > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color-text);
    font-size: var(--font-size-text);
    line-height: var(--text-line-height);
    font-weight: var(--font-weight-text);
    max-width: var(--cus-width-text);
    overflow-wrap: break-word;
    margin-top: 0;
    margin-bottom: 0;

    @media (max-width: 1024px) {
      font-size: var(--font-size-text-mb);
    }
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block > * + * {
    margin-top: 2rem;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);
  }