/** Shopify CDN: Minification failed

Line 41:15 Unexpected "{"
Line 41:23 Expected ":"
Line 46:15 Unexpected "{"
Line 46:23 Expected ":"
Line 47:15 Unexpected "{"
Line 47:23 Expected ":"
Line 53:15 Unexpected "{"
Line 53:23 Expected ":"
Line 54:15 Unexpected "{"
Line 54:23 Expected ":"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
#shopify-section-header {
    --z-header: 90000;
    z-index: var(--z-header);
  }

  body.shopify-section-header-sticky #shopify-section-header{
    position: sticky;
    top: 0;
  }

  body.shopify-section-header-hidden #shopify-section-header{
    top: calc(0px - var(--headerHeight));
  }
  body.overflow-hidden--tablet-down.shopify-section-header-hidden #shopify-section-header{
    top: 0;
  }

  body.animate #shopify-section-header{
    transition: top 150ms ease;
  }
.page { max-width: 60ch; }
/* Add your CSS here */
#Announcement-{{section.id}} .announcement-bar-wrapper {
  overflow: hidden;
  width: 100%;
}

#Announcement-{{section.id}} .announcement, 
#Announcement-{{section.id}} .marquee {
  min-height: 32px; /* Increase this value as needed */
  display: flex;
  align-items: center;
}

#Announcement-{{section.id}} .announcement-slide,
#Announcement-{{section.id}} .announcement-item {
  padding: 8px 0;
  line-height: 1.4;
}
#Announcement-{{section.id}} .marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  background-color: var(--backgroundColor);
  color: var(--color);
  font-size: var(--fontSize);
  font-weight: var(--fontWeight);
  padding-top: var(--paddingTop);
  padding-bottom: var(--paddingBottom);
}

#Announcement-{{section.id}} .marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
#PBarNextFrameWrapper,
    #gorgias-chat-container {
        display: none;
    }
    section[id*='__sticky_add_to_cart_'] {
        position: sticky;
        bottom: -500px;
        /* background-color: rgb(var(--color-white)); */
        background-color: #f2f2f5;
        /* box-shadow: 0 0px 4px 0 #eeeeee; */
        transition: bottom 0.3s ease-in-out;
        box-shadow: 0 0 17px 0 rgba(0,0,0,0.3);
        margin-bottom: 70px;
        
        

        .product-info-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0 16px 0;
            @media(min-width: 768px){
                justify-content: center;
            }
            img {
                width: 100%;
                max-width: 100px;
                @media(max-width: 767px){
                    order: 99;
                }
            }
            .product-info {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                flex: 1;
                @media(min-width: 768px){
                    width: 100%;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                }
                .product-title {
                    font-weight: bold;
                    font-size: 18px;
                    line-height: 1;
                    @media(min-width: 768px){
                        font-size: 22px;
                    }
                }
                .product-subtitle {
                    font-size: 14px;
                    font-weight: 600;
                    @media(min-width: 768px){
                        font-size: 18px;
                    }
                }
            }
            
            product-form {
                width: 100%;
                @media(min-width: 768px){
                    margin-top: 2rem;
                    width: auto;
                }
            }
            .cta-wrapper {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                gap: 1rem;
                width: 100%;
                margin-top: 4px;
            }
            
            quantity-input {
                min-width: 80px;
                @media(min-width: 768px){
                    min-width: 140px;
                }
                .quantity__input {
                    margin: 0 auto;
                }
                [name="plus"] {
                    padding-right: 4px;
                    @media(min-width: 764px){
                        padding-right: 1rem;
                    }
                }
                [name="minus"] {
                    padding-left: 8px;
                    @media(min-width: 768px){
                        padding-left: 1rem;
                    }
                }
            }

            quantity-input,
            [type="submit"]{
                border-radius: 12px !important;
            }
            [type="submit"] {
                background-color: #4285F4;
                width: 100%;
                max-width: 180px;
                height: 42px;
                @media(min-width: 768px){
                    height: 50px;
                    width: 290px;
                    max-width: 290px;
                }
            }
        }

    }
    section[id*='__sticky_add_to_cart_'].enable-border {
        /* box-shadow: 0 0px 4px 0 #eeeeee; */
        border-radius: 16px 16px 0 0;
    }
    section[id*='__sticky_add_to_cart_'].active {
        bottom: 0;
        transition: bottom 0.3s ease-in-out;
    }

/* CSS from snippet stylesheet tags */
.bundle-offer-container {
        margin: 20px 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .bundle-offer-banner {
        background: #f8f9fa;
        border: 2px solid #333333;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    .bundle-offer-banner:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .bundle-offer-content {
        padding: 16px 20px;
    }
    .bundle-offer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .bundle-offer-title {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        flex-grow: 1;
        text-align: center;
        padding-left: 24px;
    }
    .bundle-offer-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #666;
        transition: color 0.2s ease;
        flex-shrink: 0;
    }
    .bundle-offer-toggle:hover {
        color: #333;
    }
    .bundle-offer-description {
        color: #555;
        line-height: 1.4;
        text-align: center;
    }
    .bundle-offer-description p {
        margin: 0;
        font-size: 14px;
    }
    .bundle-offer-description p:first-child {
        margin-top: 8px;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
        .bundle-offer-content {
            padding: 5px;
        }
        
        .bundle-offer-title {
            font-size: 15px;
            line-height: 1.3;
        }
        
        .bundle-offer-description p {
            font-size: 13px;
        }
    }
    /* Animation for collapsible content */
    .bundle-offer-banner.collapsed .bundle-offer-description {
        display: none;
    }
    .bundle-offer-banner.collapsed .bundle-offer-toggle svg {
        transform: rotate(-90deg);
    }
#discount_code {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    #discount_code input[type=text] {
        padding: 0 20px;
        border-radius: 50px;
        border: 1px solid rgb(var(--color-gray-300));
        display: flex;
        height: 36px;
        align-items: center;
        justify-content: flex-start;
        width: calc(100% - 70px);
    }
    #discount_code input[type=text]:focus-visible {
        box-shadow: none;
    }
    #discount_code button {
        border: 1px solid #000;
        height: 36px;
        min-width: 125px;
        padding: 0.5rem;
        width: 70px;
        color: #fff;
        background-color: #000;
        border-radius: 50px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s linear;
    }
    #discount_code input[type=text] {
        flex-grow: 1;
    }
/* quantity-input {
    border-radius: 100px !important;
    border: 1px solid #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    button {
      border: 0;
      width: 40px !important;
    }
    input {
      width: 100%;
      max-width: 60px;
      text-align: center;
    }
  } */
  .quantity {
      display: flex;
      align-items: center;
      border-width: 1px;
      border-radius: 2px;
      width: 6.1rem;
      padding:0.25rem;
      border-radius: 100px !important;
      max-width: 100px !important;
  }

  .quantity__button {
      display: flex;
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 100px;
      padding: 0.25rem;
      align-items: center;
      justify-content: center;
      /* background-color: rgba(var(--color-gray-100)); */
  }

  .quantity__button .icon {
      width: 1rem;
      height: 1rem;
  }

  .quantity__input {
      background-color: transparent;
      text-align: center;
      margin: 0 1rem;
      width: 100%;
      flex: 1;
      font-size: 1.125rem;
      -webkit-appearance: none;
      appearance: none;
      line-height: 1rem;
      -moz-appearance:textfield;
  }
  .quantity__input[max="1"]{
      pointer-events: none;
  }
  .quantity__input::-webkit-outer-spin-button,
  .quantity__input::-webkit-inner-spin-button {
      -webkit-appearance: none;
  }
  .quantity {
    background-color: rgb(var(--color-white));
    min-width: 100px;
  }
  .quantity:before {
    display: none;
  }
/* Add your CSS here */
    .announcement-bar-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
        z-index: 100;
    }

    .announcement-slider-container,
    .marquee__content {
    height: auto;
    min-height: 30px;
    }

    .announcement-slide,
    .announcement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    }

    .announcement, .marquee {
        height: 32px;
        max-height: 32px; /* Increase this value as needed */
        display: flex;
        align-items: center;
    }

    .announcement-slide, .announcement-item {
    padding: 8px 0;
    line-height: 1.4;
    }
    .marquee {
        --gap: 1rem;
        position: relative;
        display: flex;
        overflow: hidden;
        user-select: none;
        gap: var(--gap);
        background-color: var(--backgroundColor);
        color: var(--color);
        font-size: var(--fontSize);
        font-weight: var(--fontWeight);
        padding-top: var(--paddingTop);
        padding-bottom: var(--paddingBottom);
    }

    .marquee__content {
        flex-shrink: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: var(--gap);
        min-width: 100%;
        animation: scroll 20s linear infinite;
    }

    @keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
    }

    /* Pause animation when reduced-motion is set */
    @media (prefers-reduced-motion: reduce) {
        .marquee__content {
            animation-play-state: paused !important;
        }
    }
.shipping-protection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.5rem 0.5rem;
    gap: 10px;
    border: solid 2px rgb(var(--color-gray-200));
    border-radius: 10px;
  }

  .shipping-price-wrapper {
    width:fit-content;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    flex: 1;
  }

  .shipping-protection-text .info-heading {
    font-weight: 600;
    font-size:14px;
    width:fit-content;
    text-wrap:nowrap;
  }

  .shipping-protection-price {
    font-weight:900;
    font-size: 14px;
  }

  .info-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .info-explainer-note {
    display: flex;
    position:relative;
    gap: 0.25rem;
    font-size:10px;
    flex-wrap:wrap;
  }

  .shipping-protection-text .info-explainer-note .info-explainer, .info-explainer-note span {
    color: rgb(var(--color-gray-400));
    font-size:10px;
  }

  .info-explainer-note span {
    text-decoration: underline;
    cursor: pointer;
  }

  .info-explainer-note .info-explainer-note {
    display:flex;
  }

  body .info-explainer-note .info-wrapper {
    display: flex;
    position:unset;
    align-items: center;
    gap: 0;
    font-size: 10px;
    line-height: 12px;
    margin: 0;
  }

  body .info-explainer-note .info-wrapper .info-note {
    color:rgba(var(--color-black), 1);
    top:-2rem;
    font-size:12px;
    pointer-events: none;
  }
  body .info-explainer-note .info-wrapper .info-note::after{
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBmaWxsPSIjMDAwIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4wIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNMzEyLjEgMzc1YzkuMzY5IDkuMzY5IDkuMzY5IDI0LjU3IDAgMzMuOTRzLTI0LjU3IDkuMzY5LTMzLjk0IDBMMTYwIDI4OS45bC0xMTkgMTE5Yy05LjM2OSA5LjM2OS0yNC41NyA5LjM2OS0zMy45NCAwcy05LjM2OS0yNC41NyAwLTMzLjk0TDEyNi4xIDI1Nkw3LjAyNyAxMzYuMWMtOS4zNjktOS4zNjktOS4zNjktMjQuNTcgMC0zMy45NHMyNC41Ny05LjM2OSAzMy45NCAwTDE2MCAyMjIuMWwxMTktMTE5YzkuMzY5LTkuMzY5IDI0LjU3LTkuMzY5IDMzLjk0IDBzOS4zNjkgMjQuNTcgMCAzMy45NEwxOTMuOSAyNTZMMzEyLjEgMzc1eiIvPjwvc3ZnPg==);
    background-size: 6px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -7.5px;
    right: -7.5px;
    border-radius: 100px;
    background-color: rgb(var(--color-white));
    border: 1px solid rgb(var(--color-border));
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    line-height: 14px;
  }

  /* Toggle */

  .shippingProtectionControlWrapper {
    display:flex;
    flex-direction:column;
    align-items: end;
    justify-content:center;
    gap:0.5rem;
  }

  .shipping-protection-price {
    text-align:right;
  }

  .shippingProtectionControlWrapper input[type='checkbox'] {
    visibility: hidden;
    display:none;
  }

  label[for='toggle'] {
    display: block;
    position: relative;
    width: 42px;
    height: 21px;
    border-radius: 100px;
    transition:all 300ms ease-out;
    cursor: pointer;
  }

  label[for='toggle'] {
    background: #e9e9ea;
  }

  .shippingProtectionControlWrapper input:checked + label[for='toggle'] {
    background: var(--color-link);
  }

  [for='toggle']::before {
    content: '';
    background: white;
    width: 13px;
    height: 13px;
    border-radius: 100px;
    margin-top: 4px;
    left: 4px;
    display: block;
    transition:left 300ms ease-out;
    position: absolute;
    cursor:pointer;
  }

  .shippingProtectionControlWrapper input:checked + label[for='toggle']::before {
    left: 25px;
  }

  .shipping-protection .info-callout {
    background: var(--color-link);
    display: flex;
    color: rgba(var(--color-white), 1);
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    line-height: 12px;
    width: fit-content;
    font-weight: 600;
    border-radius: 100px;
}
  
  .shipping-protection .info-callout svg {
    width:9px;
  }

  .shipping-protection .info-callout p {
    text-wrap:nowrap;
    font-size: 8px;
  }

  .cart-items tr.hidden + tr {
    margin-top:0;
  }

  @media(max-width:465px){
    .info-heading-wrapper {
      flex-wrap:wrap;
      gap:0.5rem;
    }
  }
  @media(max-width:390px){
    .shipping-protection {
      justify-content: space-around;
    }
    .shipping-price-wrapper {
      flex-direction: row;
      gap: 0.5rem;
      align-items: center;
      justify-content: center;
    }
    .shipping-price-wrapper .shipping-protection-price{
      order: 2;
    }
    .shipping-price-wrapper .info-callout {
      order: 1;
    }
  }