/** Shopify CDN: Minification failed

Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:26 Expected ":"
Line 24:10 Expected identifier but found whitespace
Line 24:12 Unexpected "{"
Line 24:21 Expected ":"
Line 39:15 Expected identifier but found whitespace
Line 39:17 Unexpected "{"
Line 39:26 Expected ":"
Line 58:15 Expected identifier but found whitespace
... and 8 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:brand-navigation (INDEX:3) */
/* Container */
  .custom-top-nav {
    background: {{ section.settings.nav_background_color }};
    color: {{ section.settings.nav_text_color }};
    width: 100%;
    box-sizing: border-box;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  /* Right accent stripe */
  .custom-top-nav::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: {{ section.settings.accent_color }};
  }

  /* Outer wrapper */
  .custom-top-nav .nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
  }

  /* Sticky brand section */
  .custom-top-nav .brand-section {
    position: sticky;
    left: 0;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: {{ section.settings.nav_background_color }};
    z-index: 10;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.18);
  }

  /* Brand heading styles */
  .custom-top-nav .brand-heading {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: {{ section.settings.nav_text_color }};
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .custom-top-nav .brand-arrow {
    flex-shrink: 0;
    margin-left: 2px;
  }

  /* Inner wrapper for scrollable items */
  .custom-top-nav .nav-inner {
    flex: 1;
    padding: 12px 16px 12px 0;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 48px;
  }

  /* Hide scrollbar but keep functionality */
  .custom-top-nav .nav-inner::-webkit-scrollbar {
    height: 4px;
  }

  .custom-top-nav .nav-inner::-webkit-scrollbar-track {
    background: transparent;
  }

  .custom-top-nav .nav-inner::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
  }

  .custom-top-nav .nav-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.4);
  }

  /* List styling */
  .custom-top-nav ul {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
  }

  /* Each item */
  .custom-top-nav .nav-item {
    position: relative;
    padding: 6px 0;
    font-size: 16px;
    color: {{ section.settings.nav_text_color }};
    display: inline-flex;
    align-items: center;
  }

  /* Separator */
  .custom-top-nav .nav-item:first-child::before {
    content: "";
    display: block;
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.18);
    margin-right: 24px;
    margin-left: 0;
  }

  .custom-top-nav .nav-item + .nav-item::before {
    content: "";
    display: block;
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.18);
    margin-right: 24px;
    margin-left: -24px;
  }

  /* Link reset */
  .custom-top-nav a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  /* Hover */
  .custom-top-nav a:hover {
    opacity: 0.85;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .custom-top-nav .nav-container {
      gap: 8px;
    }

    .custom-top-nav .brand-section {
      padding: 10px 12px 10px 8px;
      border-right: 1px solid rgba(255,255,255,0.18);
    }

    .custom-top-nav .brand-heading {
      font-size: 14px;
    }

    .custom-top-nav .nav-inner {
      padding: 10px 8px 10px 0;
      gap: 20px;
    }

    .custom-top-nav ul {
      gap: 20px;
    }

    .custom-top-nav .nav-item {
      font-size: 14px;
    }

    .custom-top-nav .nav-item:first-child::before {
      height: 18px;
      margin-right: 16px;
    }

    .custom-top-nav .nav-item + .nav-item::before {
      height: 18px;
      margin-left: -16px;
      margin-right: 16px;
    }
  }
/* END_SECTION:brand-navigation */