/** Shopify CDN: Minification failed

Line 420:0 Expected "}" to go with "{"

**/
/* Custom overrides for PDP button styling */
.action_button.action_button--secondary,
.cart-button-update.action_button.action_button--secondary {
  background-color: #FFE500 !important;
  color: #282828 !important;
  border: none !important;
  width: 100% !important;
}
.action_button.action_button--secondary:hover {
  background-color: #e6cf00 !important;
  color: #ffffff !important;
}
.atc-btn-container {
  width: 100%;
}
.atc-btn-container .action_button.add_to_cart {
  display: block;
  width: 100%;
  max-width: none;
  text-align: center;
}

.shopify-section--slideshow.under-menu.parallax-banner,
.shopify-section--image-with-text-overlay.under-menu.parallax-banner {
  background-color: #000 !important;
}
@media screen and (max-width: 1024px) {
  /* Remove all potential borders */
  * {
    border-top: none !important;
    border-bottom: none !important;
  }
  
  /* Specifically target header borders */
  header, .header, .site-header, .navigation {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }
}
/* View Cart button */
a.action_button.edit_cart.left {
  background: #AEAEAE !important;
  color: #000 !important;
}

/*───────────────────────────────────────────────
  Make product images sticky on tablet and desktop
────────────────────────────────────────────────*/
@media (min-width: 800px) and (max-width: 1030px) {
  .product-gallery {
    position: sticky;
    top: calc(var(--header-height, 100px) + 125px) !important;
    max-height: calc(100vh - var(--header-height, 100px) - 125px);
    overflow: auto;
    margin-top: 0 !important;
    
    /* hide the scrollbar */
    padding-right: 16px;
    margin-right: -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .product-gallery::-webkit-scrollbar { width: 0; height: 0; }
}
@media (min-width: 1031px) and (max-width: 1199px) {
  .product-gallery {
    position: sticky;
    top: calc(var(--header-height, 100px) + 20px) !important;
    max-height: calc(100vh - var(--header-height, 100px) - 20px);
    overflow: auto;
    margin-top: 0 !important;
    
    /* hide the scrollbar */
    padding-right: 16px;
    margin-right: -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .product-gallery::-webkit-scrollbar { width: 0; height: 0; }

  /* Resize images inside the gallery */
  .product-gallery img,
  .product-gallery .product__media img,
  .product-gallery [data-product-image],
  .product-gallery .product-single__photo img {
    max-width: 80% !important; /* Adjust this percentage */
    height: auto !important;
    margin: 0 auto !important; /* Center the images */
    display: block !important;
  }
  
  /* Resize thumbnail images too */
  .product-gallery .product__media--thumbnail img,
  .product-gallery .thumbnail img,
  .product-gallery [data-thumbnail] img {
    max-width: 80% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

}
@media (min-width: 1200px) {
  .product-gallery {
    position: sticky;
    top: calc(var(--header-height, 100px) + 20px) !important;
    max-height: calc(100vh - var(--header-height, 100px) - 20px);
    overflow: auto;
    margin-top: 0 !important;
    
    /* hide the scrollbar */
    padding-right: 16px;
    margin-right: -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .product-gallery::-webkit-scrollbar { width: 0; height: 0; }

  /* Resize images inside the gallery */
  .product-gallery img,
  .product-gallery .product__media img,
  .product-gallery [data-product-image],
  .product-gallery .product-single__photo img {
    max-width: 80% !important; /* Adjust this percentage */
    height: auto !important;
    margin: 0 auto !important; /* Center the images */
    display: block !important;
  }
  
  /* Resize thumbnail images too */
  .product-gallery .product__media--thumbnail img,
  .product-gallery .thumbnail img,
  .product-gallery [data-thumbnail] img {
    max-width: 80% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

}

/* “Contact a commercial rep” button styles */
.commercial-jotform-button {
  background-color: #FECB03;
  color: #000;
}
.commercial-jotform-button:hover {
  background-color: #e6cf00 !important;
  color: #ffffff !important;
}

/* —————————————————————————————————————————— */
/* Footer Customizations */
/* —————————————————————————————————————————— */

/* Footer: 3-column menus full-bleed */
.footer-menu-wrapper {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background: #000;
  padding: 2rem 0;
}

/* columns layout */
.footer-columns {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 2rem;
}

/* headings & links */
.footer-column h4,
.footer-newsletter-heading {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 0.75rem;
}
.footer-column a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  display: block;
}
.footer-column a:hover {
  text-decoration: underline;
}

/* Newsletter + credits container under columns */
.footer .container:last-of-type {
  max-width: 1200px;
  padding: 0;
  background: #000;
}

/* newsletter form */
.footer .contact-form input[type="email"] {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 4px 0 0 4px;
  max-width: 300px;
}
.footer .contact-form button[type="submit"] {
  background: #FFE500;
  color: #282828;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin-left: -1px; /* desktop only */
}

/* grid-stack to keep everything under the first column */
.newsletter-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 2rem;
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0 1rem;
}
.newsletter-container > * {
  grid-column: 1;
}

/* tweak spacing */
.footer-newsletter-copy {
  color: #fff;
  line-height: 1.4;
  margin: 0 0 0.25rem;
}
.footer-newsletter-form {
  margin: 0 0 0.5rem;
}
.footer__info {
  margin-top: 0.5rem;
}
.footer__info .credits {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Style the square separator between footer credits */
.square-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px;        /* space left & right of the dot */
  border-radius: 50%;   /* makes it a circle */
  background-color: #fff; /* or #999 for subtle */
  vertical-align: middle;
}

/* Tablet: stack into two “columns” */
@media (max-width: 992px) {
  .footer-columns {
    flex-wrap: wrap;
    gap: 2rem 1rem;
    padding: 0 1.25rem;
  }
  .footer-column {
    flex: 0 0 48%;     /* two columns side by side */
    max-width: 48%;
    margin-bottom: 2rem;
  }
  /* Newsletter & credits grid → two columns too */
  .newsletter-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1rem;
    padding: 0 1.25rem; 
  }

  .footer-columns .footer-column:nth-child(1) { order: 1; } /* Company */
  .footer-columns .footer-column:nth-child(3) { order: 2; } /* Grow With Us */
  .footer-columns .footer-column:nth-child(2) { order: 3; } /* Customer Support */

}

/* ===== Mobile footer (≤600px) ===== */
@media (max-width: 600px) {
  /* Same inner frame for menus + newsletter */
  .footer-columns,
  .newsletter-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    min-width: 0;                 /* prevents right-edge clipping */
  }

  /* Stack the menu columns */
  .footer-columns { display: block; }
  .footer-column {
    width: 100% !important;
    max-width: none;
    margin-bottom: 1rem;
  }

  /* Newsletter container: make it a plain block (no grid) */
  .newsletter-container { display: block; }
  .newsletter-container > * { grid-column: auto; }

  /* Newsletter heading + copy — full width, readable */
  .footer-newsletter-heading { margin: 1rem 0 0.5rem; }
  .footer-newsletter-copy {
    margin: 0 0 0.875rem;
    line-height: 1.6;
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    max-width: none;              /* remove any width cap */
  }

  /* Form: full width of the container; no overflow */
  .footer .contact-form {
    display: block;
    width: 100%;
    max-width: none;              /* remove any width cap on the form */
    min-width: 0;
  }
  .footer .contact-form input[type="email"],
  .footer .contact-form button[type="submit"] {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 1rem;
    border-radius: 8px;
  }
  .footer .contact-form button[type="submit"] { margin-left: 0; } /* stop the spill */

  /* Credits: allow wrap on phones */
  .footer__info { margin-top: 0.75rem; }
  .footer__copyright { white-space: normal; }
}

/* ===== Tablet and up ===== */
@media (min-width: 601px) {
  .footer-newsletter-copy { 
    white-space: nowrap; 
    overflow-wrap: normal; 
    word-break: normal; 
  }
  .footer__copyright { 
    white-space: nowrap; 
  }

  .footer .contact-form {
    display: flex;
    align-items: center; 
    flex-wrap: nowrap;
    gap: 20px;            
  }

  .footer .contact-form input[type="email"],
  .footer .contact-form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    height: 44px;           
    border: 1px solid rgba(255,255,255,0.2);
    box-sizing: border-box;

    font-family: inherit;
    font-size: inherit;
    line-height: normal;

    margin: 0;
  }

  .footer .contact-form input[type="email"] {
    flex: 1 1 auto;
    background: rgba(0,0,0,0.3);
    color: #fff;
    padding: 0 16px;
    border-radius: 4px;
  }

  .footer .contact-form input[type="submit"] {
    flex: 0 0 auto;
    background: #FFE500;
    color: #282828;
    border: 1px solid #FFE500;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 12px;

    display: flex;
    align-items: center;   
    justify-content: center; 
    padding: 0 20px;       
    white-space: nowrap;
  }
