/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 368:6 Unexpected "<"

**/
/* START_SECTION:headercustom (INDEX:4) */
<style>
        .top-bar-marquee { background: #f4f4f4; padding: 10px; font-size: 14px; }
        .header-row.header-row {
          /* display: flex;  */
          /* align-items: center;  */
          /* justify-content: space-between;  */
          padding-top: 20px !important;
          /* position: fixed; */
          /* top: 0; */
          width: 100%;
          /* transition: background-color 0.3s ease; */
          /* z-index: 1000; */
          /* left:0; */
          /* right:0; */
        }

        /* .header-column { flex: 1; text-align: center; } */
      .menu-overlay {
        /* display: none; */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
      }
  .menu-overlay li:hover a {
      font-size: 26px;
  }
      .menu-overlay ul {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .menu-overlay li {
        border-bottom: 1px solid #555;
      }

      .menu-overlay li:hover {
        background-color: #FFD700;
      }

      ul.navigation li {
        padding: 0 10px;
    }

    ul.navigation li a:hover{
      color: #FFD700;
    }
    ul.navigation li a {
        color: #FFF;
        text-decoration: none;
    }
      button#menuToggleButton {
        background: #272727;
        border: 0;
        padding: 25px 15px;
        color: #FFF;
        font-size: 30px;
        line-height: 0;
        cursor: pointer;
    }
      .menu-overlay a {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 15px 20px;
        font-size: 16px;
      }

      #closeOverlayButton {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
      }

      .header-column:nth-child(1) {
      width: 40%;
      }
      .header-column:nth-child(2) {
      width: 20%;
      text-align: center;
      }
      .header-column:nth-child(3) {
      width:40%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      }
      .header-icons {
        line-height: 0;
    }
    .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: #fff;
  min-width: 180px;
  padding: 0;
  margin: 0;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

/* Sub-menu item styling */
.sub-menu li a {
  padding: 10px 15px;
  color: #333;
}

.sub-menu li a:hover {
  
}

/* Show sub-menu on hover */

      .navigation{
        display: flex;
        flex-direction: row;
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .overlay.open {
      display: inline-flex;
      flex-direction: column;
      width: 100%;
      opacity: 1;
      visibility: visible;
      justify-content: center;
      }

        .icon { margin: 0 10px; }
        .top-bar {
        overflow: hidden;
        background-color: #2f3e46;
        padding: 10px 0;
        color: #ffffff;
          margin-bottom: 20px;
      }

      .marquee {
        display: flex;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
      }

      .marquee-content {
        display: flex;
        animation: scroll-left 20s linear infinite;
      }

      .top-bar-item {
        display: flex;
        align-items: center;
        margin: 0 30px;
      }

      .top-bar-item a {
        color: inherit;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .top-bar-item i {
        margin-right: 5px;
        font-size: 16px;
      }
/* Base styles */
.custom-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.custom-navigation > li {
  position: relative;
}

.custom-navigation a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  display: block;
}
ul.custom-navigation a:hover {
    color: #f2bf53;
}
/* Submenu hidden by default */
.custom-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: black;
  min-width: 180px;
  padding: 0;
  margin: 0;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.custom-navigation .sub-menu li a {
    padding: 10px 0px;
    color: white;
}
.custom-navigation .sub-menu li a:hover {
  background: black;
  color:  #f2bf53;
}

/* Show submenu on hover (desktop) */
@media (min-width: 769px) {
  .custom-navigation li:hover > .sub-menu {
    display: block;
  }
  .submenu-toggle {
    display: none;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .custom-navigation {
    display: none;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  }

  .custom-navigation.active {
    display: flex;
      background: #2c2c2c;
      height:80vh;
  }

  .custom-navigation li {
    width: 100%;
    position: relative;
  }

  /* Mobile submenu toggle icon */
  .submenu-toggle {
    display: inline-block;
    cursor: pointer;
    padding: 8px;
    font-size: 0.8em;
    color: #666;
    position: absolute;
    right: 10px;
    top: 10px;
  }

  /* Mobile submenu */
  .custom-navigation .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }

  .custom-navigation .sub-menu.active {
    display: block;
  }

  /* Mobile buttons */
  .hamburger, .close-menu-sec {
    display: block;
    cursor: pointer;
    font-size: 24px;
    padding: 8px;
    left:0 !important; 
  }

  .close-menu-sec {
    display: none;
  }

}


      /* Keyframes for scrolling animation */
      @keyframes scroll-left {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      .icon-shipping::before {
        content: "\f0d1";
        font-family: "FontAwesome";
      }

      .icon-free-shipping::before {
        content: "\f291";
        font-family: "FontAwesome";
      }
    .slideshow__slide {
      padding: 220px 0 !important;
  }
    .slideshow__text {
      padding: 0 !important;
  }
  @media(max-width: 768px){
    .header-row.header-row {
          /* display: flex;  */
          /* align-items: center;  */
          /* justify-content: space-between;  */
          padding-top: 10px !important;
          position: fixed;
          top: 0;
          width: 100%;
          transition: background-color 0.3s ease;
          z-index: 1000;
          left:0;
          right:0;
        }
    .header-row.scrolled {
      background-color: #000;
      color: #fff;
  }
    .logo img {
    width: 100%;
}
    .submenu-toggle {
        display: inline-block;
        cursor: pointer;
        padding: 2px;
        font-size: 2em;
        color: #666;
        position: absolute;
        right: 10px;
        top: -3px;
        color: #fed847 !important;
    }

  }
      </style>
/* END_SECTION:headercustom */
