/** Shopify CDN: Minification failed

Line 132:14 Expected identifier but found whitespace
Line 132:16 Unexpected "{"
Line 132:25 Expected ":"
Line 132:64 Expected ":"
Line 133:16 Expected identifier but found whitespace
Line 133:18 Unexpected "{"
Line 133:27 Expected ":"
Line 138:14 Expected identifier but found whitespace
Line 138:16 Unexpected "{"
Line 138:25 Expected ":"
... and 11 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Custom CSS for the Feature Icons Slider */

.frame-parent {
    width: 100%;
    position: relative;
    background-color: #f6f5f3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    box-sizing: border-box;
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--color-silver);
    font-family: var(--font-montserrat);
}

/* Flexbox styling for icon and text */
.fi-1356698-parent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-xs);
}

.fi-1356698-icon {
    width: 20px;
    height: 20px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right:10px;
}

.certified {
    position: relative;
    line-height: 24px;
    text-transform: uppercase;
    padding-right:20px !important;
}

/* Slider Styles */
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: transform 0.5s linear;
}

.slider-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 20%; /* Adjust for desktop */
    box-sizing: border-box;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .slider-slide {
        min-width: 25%; /* Show 4 items per row */
    }

    .fi-1356698-icon {
        width: 18px;
        height: 18px;
    }

    .certified {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 768px) {
    .slider-slide {
        min-width: 33.33%; /* Show 3 items per row */
    }

    .fi-1356698-icon {
        width: 16px;
        height: 16px;
    }

    .certified {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .slider-slide {
        min-width: 50%; /* Show 2 items per row */
    }

    .fi-1356698-icon {
        width: 14px;
        height: 14px;
    }

    .certified {
        font-size: var(--font-size-xs);
    }
}
@media (max-width: 768px) {
  /* Mobile heading styles */
  .promo-grid-heading {
    font-size: {{ section.settings.mobile_heading_font_size }}px;
    font-weight: {{ section.settings.mobile_heading_font_weight }};
  }

  /* Mobile title styles */
  .promo-grid-title {
    font-size: {{ section.settings.mobile_title_font_size }}px;
    font-weight: {{ section.settings.mobile_title_font_weight }};
  }

  /* Mobile button styles */
  .promo-grid-button {
    font-size: {{ section.settings.mobile_button_font_size }}px;
    font-weight: {{ section.settings.mobile_button_font_weight }};
  }
}