/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 210:0 Unexpected "<"

**/
<style>
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #1E1E1E;
  }

  .header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    grid-template-columns: 1fr auto 1fr;

  }

  /* LOGO */
  .header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
  }

  .header__logo img {
    display: block;
    height: auto;
    width: auto;
    max-height: 48px;
  }

  .header__logo-text {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    color: #fff;
  }

  /* NAV DESKTOP */
  .header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }

  .header__nav-link {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .header__nav-link:hover {
    color: #FCD116;
  }

  /* ICONS */
  .header__icons {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 8px;
  }

  .header__icon-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.2s;
  }

  .header__icon-btn:hover {
    color: #FCD116;
  }

  .header__cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #FCD116;
    color: #0A0A0A;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* MENU MOBILE TOGGLE */
  .header__menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
  }

  .header__menu-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #fff;
  }

  /* MOBILE NAV (drawer) */
  .header__mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0A0A0A;
    z-index: 200;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid #1E1E1E;
  }

  .header__mobile-nav.open {
    right: 0;
  }

  .header__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
  }

  .header__mobile-nav-link {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header__mobile-nav-link:hover {
    color: #FCD116;
  }

  /* RESPONSIVE */
  @media (max-width: 990px) {
    .header__inner {
      grid-template-columns: auto 1fr auto;
      height: 60px;
      gap: 16px;
    }

    .header__nav {
      display: none;
    }

    .header__menu-btn {
      display: flex;
    }

    .header__logo img {
      max-height: 36px;
    }
  }
</style>
