/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 13:30 Expected identifier but found "!"
Line 160:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
    .custom-header {
      background-color: #000; !important
      color: #fff;
      border-bottom: 1px solid #222;
      width: 100%;
      position: relative; /* Adicionado para posicionar o cart-count-bubble */
    }
    .custom-header__wrapper {
      max-width: var(--layout-max-width);
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .custom-header__logo img {
      height: 40px;
      object-fit: contain;
      display: block; /* Para evitar espaço extra abaixo da imagem */
    }
    .custom-header__nav ul {
      display: flex;
      gap: 32px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .custom-header__nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      transition: color 0.3s;
    }
    .custom-header__nav a:hover {
      color: #FF7245;
    }
    .custom-header__actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .custom-header__search { /* Adicionado para posicionar o botão de busca */
      position: relative;
      display: flex; /* Para alinhar input e botão */
      align-items: center;
    }
    .custom-header__search input[type="search"] {
      padding: 6px 12px 6px 12px; /* Removido padding direito para o botão */
      font-size: 14px;
      border: 1px solid #444;
      border-radius: 4px;
      background: #222;
      color: #fff;
      /* Adicionado para fazer o botão sobrepor um pouco se necessário ou ajustar */
      padding-right: 30px; /* Espaço para o ícone do botão */
    }
    .custom-header__search button { /* Estilo para o botão de busca */
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      position: absolute;
      right: 8px; /* Posição do ícone dentro do input */
      top: 50%;
      transform: translateY(-50%);
      display: flex; /* Para centralizar o SVG se necessário */
      align-items: center;
      justify-content: center;
    }
    .custom-header__search button svg {
      stroke: #fff;
      width: 16px; /* Definir tamanho explícito */
      height: 16px; /* Definir tamanho explícito */
    }
    .custom-header__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      color: #fff;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.3s;
      position: relative; /* Para o cart-count-bubble */
    }
    .custom-header__icon:hover {
      color: #FF7245;
    }
    .custom-header__icon .cart-count-bubble { /* Estilo para a bolha de contagem */
      position: absolute;
      top: -2px;      /* Ajuste conforme necessário */
      right: -2px;     /* Ajuste conforme necessário */
      background-color: #FF7245;
      color: white;
      border-radius: 50%;
      font-size: 10px;
      min-width: 16px; /* Usar min-width para números com mais de 1 dígito */
      height: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      padding: 0 3px; /* Espaçamento interno para a bolha */
      font-weight: bold;
    }
    .visually-hidden { /* Classe auxiliar para acessibilidade, caso não exista no tema */
      position: absolute !important;
      overflow: hidden !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    @media screen and (max-width: 740px) {
      .custom-header__wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
      }
      .custom-header__nav { /* Ocultar menu principal no mobile, exemplo */
        display: none; /* Você precisaria de um menu hamburguer aqui */
      }
      /* Se você quiser mostrar o menu no mobile, ajuste o estilo abaixo: */
      /*
      .custom-header__nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }
      */
      .custom-header__actions {
        justify-content: center;
      }
      .custom-header__search {
        width: 100%; /* Fazer a busca ocupar mais espaço */
      }
      .custom-header__search input[type="search"] {
        width: 100%;
      }
    }
  </style>