/** Shopify CDN: Minification failed

Line 22:12 Expected identifier but found whitespace
Line 22:14 Unexpected "{"
Line 22:23 Expected ":"
Line 22:51 Unexpected "{"
Line 22:60 Expected ":"
Line 22:89 Unexpected "{"
Line 22:98 Expected ":"
Line 22:129 Unexpected "{"
Line 22:138 Expected ":"
Line 22:165 Expected ":"
... and 69 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:powerful-repellents (INDEX:122) */
.powerful-repellents {
    padding: {{ section.settings.padding_top }}px {{ section.settings.padding_left }}px {{ section.settings.padding_bottom }}px {{ section.settings.padding_left }}px;
    background-color: {{ section.settings.background_color }};
    {% if section.settings.background_image %}
      background-image: url('{{ section.settings.background_image | img_url: "1920x" }}');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    {% endif %}
    background-attachment: {{ section.settings.background_attachment }};
    position: relative;
  }

  .powerful-repellents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, {{ section.settings.background_overlay_opacity }});
    pointer-events: none;
    z-index: 1;
  }

  .repellents-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .repellents-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .repellents-title {
    font-size: {{ section.settings.title_size }}px;
    font-weight: {{ section.settings.title_weight }};
    color: {{ section.settings.title_color }};
    line-height: 1.2;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
  }

  .repellents-subtitle {
    font-size: {{ section.settings.subtitle_size }}px;
    color: {{ section.settings.subtitle_color }};
    line-height: 1.6;
    margin: 0;
  }

  .repellents-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

#shopify-section-template--27388962865438__powerful_repellents_WW8RV3 {
  background-image: url(/cdn/shop/files/Group_447_1.png?v=1779910193);
}
.repellent-card-name {
  text-align: center;
  color: #fff;
}
.repellent-card-label {
  text-align: center;
  text-decoration: underline;
}
.powerful-repellents {
  padding-block: 50px 50px !important;
}
.powerful-repellents .carousel-button {
  display: none;
}

  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: {{ section.settings.button_bg_color }};
    border: none;
    color: {{ section.settings.button_text_color }};
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .carousel-button:hover {
    background: {{ section.settings.button_hover_color }};
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-button.prev {
    left: 10px;
  }

  .carousel-button.next {
    right: 10px;
  }

  .repellents-carousel {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
  }

  .carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .repellent-card {
    flex: 0 0 430px;
    height: 580px;
    position: relative;
    overflow: hidden;
    border-radius: {{ section.settings.card_border_radius }}px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .repellent-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  }

  .repellent-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    z-index: 4;
  }

  .repellent-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .repellent-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .repellent-card:hover .repellent-card-overlay {
    background: linear-gradient(135deg, 
      {{ section.settings.hover_gradient_start }} 0%, 
      {{ section.settings.hover_gradient_end }} 100%);
  }

  .repellent-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    z-index: 3;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
  }

  .repellent-card-name {
    font-size: {{ section.settings.card_title_size }}px;
    font-weight: {{ section.settings.card_title_weight }};
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .repellent-card-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
    font-weight: 600;
    transition: opacity 0.3s ease;
  }

  .repellent-card:hover .repellent-card-label {
    opacity: 1;
  }

  @media (max-width: 1024px) {
    .carousel-button.prev,
    .carousel-button.next {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .repellents-carousel {
      max-width: 100%;
      padding: 0 60px;
    }

    .repellent-card {
      flex: 0 0 380px;
      height: 520px;
    }
  }

  @media (max-width: 768px) {
    .powerful-repellents {
      padding: {{ section.settings.padding_top | times: 0.6 }}px {{ section.settings.padding_left | times: 0.6 }}px {{ section.settings.padding_bottom | times: 0.6 }}px {{ section.settings.padding_left | times: 0.6 }}px;
    }

    .repellents-header {
      margin-bottom: 40px;
    }

    .repellents-title {
      font-size: {{ section.settings.title_size | times: 0.75 }}px;
    }

    .repellents-subtitle {
      font-size: {{ section.settings.subtitle_size | times: 0.85 }}px;
    }

    .repellents-carousel {
      max-width: 100%;
      padding: 0 50px;
    }

    .carousel-button.prev {
      left: 5px;
    }

    .carousel-button.next {
      right: 5px;
    }

    .repellent-card {
      flex: 0 0 100%;
      height: 400px;
    }

    .carousel-track {
      gap: 16px;
    }

    .repellent-card-content {
      padding: 24px;
    }

    .repellent-card-name {
      font-size: {{ section.settings.card_title_size | times: 0.85 }}px;
    }
  }
/* END_SECTION:powerful-repellents */

/* CSS from block stylesheet tags */
/* START_BLOCK:button (INDEX:145) */
.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);
            }
        }
    }
/* END_BLOCK:button */

/* START_BLOCK:media (INDEX:146) */
@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;
    }
/* END_BLOCK:media */

/* START_BLOCK:special-heading (INDEX:147) */
: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;
    }
/* END_BLOCK:special-heading */

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

  .background-image-fit img {
    object-fit: contain;
  }
/* END_SNIPPET:background-image */

/* START_SNIPPET:background-video (INDEX:161) */
.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;
    }
  }
/* END_SNIPPET:background-video */

/* START_SNIPPET:overlay (INDEX:445) */
.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));
  }
/* END_SNIPPET:overlay */

/* START_SNIPPET:section (INDEX:526) */
.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);
        }
    }
/* END_SNIPPET:section */

/* START_SNIPPET:text (INDEX:535) */
: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);
  }
/* END_SNIPPET:text */