/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 72:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-menu-wrapper {
    width: 100%;
    z-index: 1000;
  }

  .custom-menu-bar {
    width: 100%;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--section-height);
    font-size: var(--menu-font-size);
    position: relative;
    transition: all 0.3s ease;
  }

  .custom-menu-bar.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .custom-menu-bar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .custom-menu-bar li {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .custom-menu-bar li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: inherit;
    line-height: 1;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    object-fit: contain;
  }
</style>