/* ============================================================
   TRAPE ZAPE — tz-loja.css v1 (25/08/2026)

   Arquivo separado, e nao um bloco no fim do stylesheet.css.
   O motivo NAO e mais o cache de servidor de 19/08 (esse ja
   passou: bump no ?v= chega no navegador na hora). E que o
   stylesheet.css tem ~10 camadas historicas brigando com
   !important, e este trabalho toca sete telas de uma vez —
   num arquivo proprio da para ler o que e novo sem garimpar
   169 KB. Mesma saida do tz-cards.css.

   ⚠️ O stylesheet.css tem `#content h2 { ... !important }`.
   ID + !important ganha de qualquer classe: regra nova que
   estilize titulo dentro de #content precisa repetir o escopo
   (ver secao 7b).

   Cobre, na ordem:
   1) botao unico "Ver Mais" de toda vitrine (home, categoria,
      busca, relacionados, promocoes, fabricante);
   2) etiquetas de tamanho em estoque no card;
   3) barra de subcategorias e de tamanhos no topo da categoria;
   4) blindagem do filtro: a regra .bf-hidden mora so no
      brainyfilter.css, que o servidor entrega com
      cache-control de 1 ANO. Celular com copia velha em cache
      perde a regra e o ID do filtro cola no nome ("46RN",
      "511"). Repetir a regra aqui resolve, porque este arquivo
      e novo e nenhum navegador tem copia velha dele.
   ============================================================ */

/* ---- 1. Ver Mais ------------------------------------------ */
.tz-vermais {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 0;
    border-radius: 999px;
    background: #F39C44;
    color: #fff !important;
    font-family: 'Questrial', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color .18s ease, transform .12s ease;
}

.tz-vermais:hover,
.tz-vermais:focus {
    background: #E0851F;
    color: #fff !important;
    text-decoration: none !important;
}

.tz-vermais:active {
    transform: translateY(1px);
}

/* Na home o card e mais estreito: encolhe o texto em vez de quebrar. */
@media (max-width: 576px) {
    .tz-vermais {
        padding: 9px 10px;
        font-size: 11px;
        letter-spacing: .5px;
    }
}

/* O botao do carrossel da home vivia sobre a foto (aparecia no
   hover). Agora e um CTA fixo embaixo do preco, igual ao resto. */
.product-thumb .tz-card-actions {
    padding: 10px 8px 4px;
}

/* Rede de seguranca: qualquer botao antigo que sobreviva em
   modulo HTML cadastrado no painel some da vitrine. Nao pega a
   pagina do produto, que usa #button-cart. */
.product-thumb .btn-add-cart,
.tz-card .tz-btn-solid,
.tz-card .tz-btn-outline {
    display: none !important;
}

/* ---- 2. etiquetas de tamanho em estoque ------------------- */
.tz-sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
    min-height: 22px;
}

.tz-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    border: 1px solid #EADFD2;
    border-radius: 999px;
    background: #FFFAF3;
    color: #8A7A67;
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.tz-size-more {
    border-style: dashed;
    color: #B0A392;
}

@media (max-width: 576px) {
    .tz-size {
        min-width: 23px;
        height: 20px;
        padding: 0 5px;
        font-size: 10px;
    }
}

/* ---- 2b. parcelamento, agora em toda vitrine --------------- */
/* Ate agora "3x de R$X sem juros" so existia no carrossel da home,
   estilizado sob #common-home. Numa saida de maternidade de R$248
   esse e o dado que mais pesa, e ele sumia justo na categoria e na
   busca, onde a cliente compara. A regra sai do escopo da home.

   A altura e FIXA e o elemento e sempre desenhado, mesmo vazio:
   card de produto a vista ao lado de um parcelado nao pode ficar
   mais baixo, senao os botoes "Ver Mais" saem tortos na fileira. */
.tz-parcelas {
    display: block;
    min-height: 16px;
    margin-top: 4px;
    color: #8C8279;
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    letter-spacing: .2px;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .tz-parcelas {
        min-height: 14px;
        margin-top: 3px;
        font-size: 10.5px;
    }
}

/* ---- 3. barras do topo da categoria ----------------------- */
.tz-subnav {
    max-width: 1180px;
    margin: 0 auto 22px;
    padding: 0 4px;
}

.tz-subnav-block + .tz-subnav-block {
    margin-top: 8px;
}

.tz-subnav-label {
    display: block;
    margin: 0 0 6px 2px;
    color: #A2988A;
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tz-subnav-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tz-subnav-row::-webkit-scrollbar {
    display: none;
}

/* Pilula da subnav. A de CATEGORIA e preenchida de pessego: escolher
   Menina/Menino e o primeiro passo, entao ela carrega o peso visual. A de
   TAMANHO fica com anel, porque e o refino. A separacao e feita pelo
   #tz-size-block e nao por :first-child de proposito — em categoria sem
   subcategoria o bloco de tamanho passa a ser o primeiro filho. */
.tz-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding: 8px 15px;
    border: 1.6px solid #F39C44;
    border-radius: 999px;
    background: #F39C44;
    color: #fff !important;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(243, 156, 68, .3);
    transition: border-color .18s ease, color .18s ease, background-color .18s ease,
                transform .18s ease, box-shadow .18s ease;
}

.tz-pill:hover,
.tz-pill:focus {
    border-color: #E0851F;
    background: #E0851F;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(224, 133, 31, .38);
}

/* Tamanho: anel pessego sobre branco. */
#tz-size-block .tz-pill {
    border-color: #F3C892;
    background: #fff;
    color: #A96A1C !important;
    box-shadow: none;
}

#tz-size-block .tz-pill:hover,
#tz-size-block .tz-pill:focus {
    border-color: #F39C44;
    background: #FFF0DC;
    color: #E0851F !important;
    box-shadow: 0 6px 14px rgba(243, 156, 68, .25);
}

/* Marcado vence os dois casos, por isso vem depois e repete o seletor do
   bloco de tamanho — senao a especificidade do #id derruba o estado ativo. */
.tz-pill.is-active,
#tz-size-block .tz-pill.is-active {
    border-color: #E0851F;
    background: #E0851F;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(224, 133, 31, .35);
}

/* Limpar filtro nao e uma escolha, e um desfazer: fica discreto. */
.tz-pill-clear,
#tz-size-block .tz-pill-clear {
    border-style: dashed;
    border-color: #E0D3C2;
    background: #fff;
    color: #A2988A !important;
    box-shadow: none;
}

.tz-pill-clear:hover,
#tz-size-block .tz-pill-clear:hover {
    border-color: #C9BBA8;
    background: #FAF6F1;
    color: #8A7E72 !important;
    box-shadow: none;
}

/* Com a categoria preenchida, marcada (#E0851F) e nao-marcada (#F39C44) sao
   dois laranjas parecidos demais — nao da pra ver qual esta escolhida. Entao
   quando existe uma marcada na linha, as irmas desbotam. Navegador sem :has()
   simplesmente ignora e nada quebra. */
.tz-subnav-row:has(.tz-pill.is-active) .tz-pill:not(.is-active):not(.tz-pill-clear) {
    opacity: .45;
}

/* Na linha de tamanho a pilula nao-marcada ja e branca com texto #A96A1C;
   desbotar igual a categoria derruba o contraste abaixo do legivel, e ela
   continua clicavel. Entao aqui o desbote e mais leve. */
#tz-size-block .tz-subnav-row:has(.tz-pill.is-active) .tz-pill:not(.is-active) {
    opacity: .72;
}

.tz-subnav-row:has(.tz-pill.is-active) .tz-pill:not(.is-active):hover {
    opacity: 1;
}

/* Teclado precisa enxergar o foco, e a pilula ja usa box-shadow pro relevo. */
.tz-pill:focus-visible {
    outline: 2px solid #8A5A1B;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .tz-pill { transition: none; }
    .tz-pill:hover, .tz-pill:focus { transform: none; }
}

/* Icone de traco da pilula de subcategoria. Herda a cor do texto
   (currentColor), entao acompanha sozinho os estados hover e ativo
   sem precisar de uma regra por estado. */
.tz-pill-ic {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    opacity: .85;
}

.tz-pill:hover .tz-pill-ic,
.tz-pill.is-active .tz-pill-ic {
    opacity: 1;
}

/* O sprite fica no HTML so para o <use> apontar; nunca desenha. */
.tz-icon-sprite {
    display: none;
}

@media (max-width: 576px) {
    .tz-pill {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* ---- 4. blindagem do BrainyFilter ------------------------- */
/* O ID do filtro colado no nome ("209Conjunto", "46RN", "511") vem
   de um <span> que o BrainyFilter deixa no HTML so para o JS dele
   ler. Ele nasce com duas classes, `bf-hidden bf-attr-val`, e quem
   esconde e a regra .bf-hidden — que mora SO no brainyfilter.css.
   Dois problemas empilhados:

   1) esse arquivo e servido com cache-control de 1 ANO, entao
      celular com copia velha nunca recebe a regra;
   2) quando o filtro redesenha as linhas (depois do AJAX que traz
      as contagens, e de novo ao abrir o painel no celular) o span
      volta so com `bf-attr-val` — a classe bf-hidden se perde, e
      ai nem o arquivo certo salvaria.

   Por isso a regra abaixo mira no ELEMENTO, nao na classe que some.
   Escopo em `span` de proposito: o mesmo bf-attr-val aparece em
   <option> dentro dos filtros em lista suspensa, e esconder option
   quebraria o select. */
span.bf-attr-val {
    display: none !important;
}

.bf-hidden {
    display: none !important;
}

/* Opcao sem NENHUM produto na tela atual: o BrainyFilter marca a linha com
   `bf-disabled` depois que a contagem chega por AJAX. Esconder e o que a
   opcao "Hide empty attribute values" do painel dele deveria fazer — mas a
   regra que ele gera sai com um `>` solto na frente do seletor (defeito do
   proprio modulo), e um seletor invalido derruba a regra inteira. Entao ela
   mora aqui. Sem isso o filtro de tamanho de uma categoria de sapatinho
   listava os 34 tamanhos da loja. */
.bf-form .bf-row.bf-disabled {
    display: none !important;
}

/* ---- 5. busca no padrao da categoria ---------------------- */
/* A busca passou a usar o mesmo wrapper .tz-category, entao
   herda grade, card e tipografia da categoria. So o cabecalho
   proprio da busca fica aqui. */
.tz-busca-head {
    text-align: center;
    padding: 34px 20px 6px;
}

.tz-busca-form {
    position: relative;
    max-width: 560px;
    margin: 18px auto 6px;
}

.tz-busca-form input {
    width: 100%;
    height: 52px;
    padding: 0 58px 0 20px;
    border: 1px solid #EADFD2;
    border-radius: 999px;
    background: #fff;
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    color: #2E2A26;
}

.tz-busca-form input:focus {
    outline: none;
    border-color: #F39C44;
}

.tz-busca-form button {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    width: 40px;
    border: 0;
    border-radius: 999px;
    background: #F39C44;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tz-busca-form button:hover {
    background: #E0851F;
}

/* ---- 6. paginacao: nao existe mais em lugar nenhum -------- */
/* A rolagem infinita esconde a paginacao por JS. Esta regra
   cobre o intervalo antes do JS rodar e as paginas onde a
   paginacao so servia de rodape morto. */
.tz-pagination,
.pagination-wrapper,
#product-search-page .pagination,
#product-special .pagination,
#product-manufacturer .pagination {
    display: none !important;
}

/* ============================================================
   7. PAGINAS INSTITUCIONAIS
   Entrega, Privacidade, Termos, Trocas, SAC e Mapa do site
   estavam no template cru do OpenCart: <h1> do navegador e o
   texto do admin solto na largura inteira da tela. Linha de
   140 caracteres ninguem le.

   O cabecalho e o MESMO da categoria de proposito — a cliente
   nao deve sentir que saiu da loja ao clicar no rodape.
   ============================================================ */
.tz-inst {
    padding-bottom: 90px;
    color: #2E2A26;
    font-family: 'Questrial', sans-serif;
}

.tz-inst-head {
    padding: 34px 20px 8px;
    text-align: center;
}

.tz-inst-bc {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.tz-inst-bc a {
    color: #9A9082;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.tz-inst-head h1 {
    margin: 0;
    color: #F39C44;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    text-wrap: balance;
}

/* Fio curto no lugar de um sublinhado de ponta a ponta: marca o
   fim do titulo sem cortar a pagina em duas. */
.tz-inst-fio {
    width: 54px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 3px;
    background: #F39C44;
}

/* ---- corpo do texto vindo do painel --------------------- */
/* Tudo aqui e HTML que a loja escreve no admin, entao a regra
   precisa alcancar tag solta, sem classe nenhuma. */
.tz-inst-corpo {
    max-width: 68ch;
    margin: 34px auto 0;
    font-size: 16.5px;
    line-height: 1.75;
    color: #4A4239;
}

.tz-inst-corpo > *:first-child { margin-top: 0; }

.tz-inst-corpo h1,
.tz-inst-corpo h2,
.tz-inst-corpo h3,
.tz-inst-corpo h4 {
    margin: 38px 0 12px;
    color: #2E2A26;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
    text-wrap: balance;
}

.tz-inst-corpo h1,
.tz-inst-corpo h2 { font-size: 24px; }
.tz-inst-corpo h3 { font-size: 19px; }
.tz-inst-corpo h4 { font-size: 17px; }

.tz-inst-corpo p { margin: 0 0 17px; }

.tz-inst-corpo a {
    color: #E0851F;
    text-underline-offset: 3px;
}

.tz-inst-corpo strong,
.tz-inst-corpo b { color: #2E2A26; font-weight: 700; }

.tz-inst-corpo ul,
.tz-inst-corpo ol { margin: 0 0 18px; padding-left: 22px; }
.tz-inst-corpo li { margin-bottom: 8px; }
.tz-inst-corpo li::marker { color: #F39C44; }

.tz-inst-corpo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.tz-inst-corpo blockquote {
    margin: 22px 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid #F39C44;
    color: #6B6158;
    font-style: normal;
}

/* Tabela de prazo de entrega e a mais comum aqui; ela precisa
   rolar sozinha, senao estoura a largura da pagina no celular. */
.tz-inst-tabela { overflow-x: auto; margin: 0 0 20px; }

.tz-inst-corpo table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.tz-inst-corpo th,
.tz-inst-corpo td {
    padding: 11px 14px;
    border-bottom: 1px solid #EFE7DD;
    text-align: left;
    vertical-align: top;
}

.tz-inst-corpo th {
    color: #8A7A67;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tz-inst-corpo td { font-variant-numeric: tabular-nums; }

/* ---- cartoes de contato / mapa do site ------------------ */
.tz-inst-grade {
    display: grid;
    gap: 18px;
    max-width: 1000px;
    margin: 34px auto 0;
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .tz-inst-grade { grid-template-columns: repeat(3, 1fr); }
    .tz-inst-grade-2 { grid-template-columns: repeat(2, 1fr); }
}

.tz-inst-cartao {
    padding: 22px 24px;
    border: 1px solid #EFE7DD;
    border-radius: 16px;
    background: #fff;
}

.tz-inst-cartao-ic {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    stroke: #F39C44;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.tz-inst-cartao h2 {
    margin: 0 0 8px;
    color: #8A7A67;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.tz-inst-cartao p,
.tz-inst-cartao address {
    margin: 0;
    color: #4A4239;
    font-size: 15.5px;
    font-style: normal;
    line-height: 1.6;
}

.tz-inst-cartao a { color: #E0851F; }

.tz-inst-cartao ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tz-inst-cartao li { margin-bottom: 9px; }

.tz-inst-cartao li a {
    color: #4A4239 !important;
    font-size: 15px;
    text-decoration: none;
}

.tz-inst-cartao li a:hover { color: #E0851F !important; }

/* Arvore do mapa do site: nivel 2 e 3 recuados por um fio, nao
   por bolinha — a lista tem 200 itens e bolinha vira sujeira. */
.tz-mapa-arvore ul {
    margin: 8px 0 0;
    padding-left: 14px;
    border-left: 1px solid #EFE7DD;
    list-style: none;
}

.tz-mapa-arvore > li { margin-bottom: 16px; }

.tz-mapa-arvore > li > a {
    color: #2E2A26 !important;
    font-size: 15.5px;
    font-weight: 700;
}

.tz-mapa-arvore ul a { color: #6B6158 !important; font-size: 14.5px; }

/* ---- chamada final -------------------------------------- */
.tz-inst-ajuda {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1000px;
    margin: 44px auto 0;
    padding: 24px 28px;
    border-radius: 18px;
    background: #FFF6EC;
}

.tz-inst-ajuda p {
    margin: 0;
    color: #6B6158;
    font-size: 15.5px;
}

.tz-inst-ajuda strong {
    display: block;
    margin-bottom: 3px;
    color: #2E2A26;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.tz-inst-ajuda .tz-vermais { width: auto; padding: 11px 26px; }

/* ---- 7b. desempate contra o CSS antigo do tema ------------ */
/* O stylesheet.css principal tem `#content h2 { ... !important }`
   com fonte Pompiere de 28px. Isso atropela qualquer classe: ID
   mais !important nao perde para seletor de classe. Por isso as
   regras abaixo repetem o escopo #content e o !important — nao e
   preguica, e a unica forma de ganhar a disputa sem editar o
   stylesheet.css, que esta preso num cache de servidor. */
#content .tz-inst-cartao h2 {
    margin: 0 0 8px !important;
    color: #8A7A67 !important;
    font-family: 'Questrial', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: .11em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#content .tz-inst-corpo h2,
#content .tz-inst-corpo h3,
#content .tz-inst-corpo h4 {
    font-family: 'Playfair Display', serif !important;
    color: #2E2A26 !important;
    text-transform: none !important;
}

#content .tz-inst-corpo h2 { font-size: 24px !important; }
#content .tz-inst-corpo h3 { font-size: 19px !important; }
#content .tz-inst-corpo h4 { font-size: 17px !important; }

#content .tz-inst-ajuda strong {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
}

/* ============================================================
   8. AREA DA CONTA (historico e detalhe do pedido)

   As duas telas estavam no template cru do OpenCart: `<table
   class="table table-bordered">` com grade cinza em volta de
   cada celula, e no celular a tabela de 6 colunas espremia
   "Aguardando Pagamento" em quatro linhas.

   Aqui a tabela vira cartao, e ATE 768px cada linha vira um
   bloco empilhado usando o rotulo guardado em data-rotulo no
   proprio <td> — sem duplicar markup para celular.
   ============================================================ */
.tz-conta { padding-bottom: 80px; font-family: 'Questrial', sans-serif; }

.tz-conta-cartao {
    margin: 0 0 22px;
    border: 1px solid #EFE7DD;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.tz-conta-cartao > h2,
.tz-conta-titulo {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #EFE7DD;
    background: #FFFAF3;
    color: #8A7A67;
    font-family: 'Questrial', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

#content .tz-conta-cartao > h2 {
    font-family: 'Questrial', sans-serif !important;
    font-size: 11.5px !important;
    color: #8A7A67 !important;
    text-transform: uppercase !important;
}

.tz-conta-corpo { padding: 18px 20px; }

.tz-conta-rolagem { overflow-x: auto; }

.tz-conta-tabela {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.tz-conta-tabela th {
    padding: 13px 18px;
    border-bottom: 1px solid #EFE7DD;
    background: #FFFAF3;
    color: #8A7A67;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.tz-conta-tabela td {
    padding: 15px 18px;
    border-bottom: 1px solid #F5EFE7;
    color: #4A4239;
    vertical-align: middle;
}

.tz-conta-tabela tbody tr:last-child td { border-bottom: 0; }
.tz-conta-tabela tbody tr:hover td { background: #FFFCF8; }

.tz-conta-num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.tz-conta-forte { color: #2E2A26; font-weight: 700; }
.tz-conta-dir { text-align: right; }

.tz-conta-tabela tfoot td {
    border-bottom: 0;
    border-top: 1px solid #EFE7DD;
    padding: 10px 18px;
}
.tz-conta-tabela tfoot tr:last-child td {
    color: #2E2A26;
    font-size: 17px;
    font-weight: 700;
}

/* ---- selo de situacao ------------------------------------- */
.tz-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: #F3EFE9;
    color: #6B6158;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}
.tz-status-ok    { background: #E7F4EC; color: #2F7A4D; }
.tz-status-espera{ background: #FFF3E0; color: #B26A08; }
.tz-status-alerta{ background: #FCEBEA; color: #A93B32; }

/* ---- botao redondo de acao (comprar de novo) -------------- */
.tz-conta-acao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #EADFD2;
    border-radius: 999px;
    background: #fff;
    color: #E0851F !important;
    text-decoration: none !important;
    transition: border-color .18s ease, background-color .18s ease;
}
.tz-conta-acao:hover {
    border-color: #F39C44;
    background: #FFF6EC;
}
.tz-conta-acao svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ---- pares rotulo/valor (endereco, pagamento) ------------- */
.tz-conta-pares {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 620px) {
    .tz-conta-pares { grid-template-columns: 1fr 1fr; }
}

.tz-conta-par dt {
    margin: 0 0 5px;
    color: #A2988A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.tz-conta-par dd {
    margin: 0;
    color: #4A4239;
    font-size: 15px;
    line-height: 1.6;
}
.tz-conta-par dd b { color: #2E2A26; }

/* ---- celular: cada linha vira um bloco -------------------- */
/* O rotulo vem do data-rotulo do proprio <td>, entao nao existe
   uma segunda copia do markup so para telas pequenas. */
@media (max-width: 768px) {
    .tz-conta-tabela,
    .tz-conta-tabela tbody,
    .tz-conta-tabela tr,
    .tz-conta-tabela td { display: block; width: 100%; }

    .tz-conta-tabela thead { display: none; }

    .tz-conta-tabela tbody tr {
        padding: 6px 0;
        border-bottom: 1px solid #EFE7DD;
    }
    .tz-conta-tabela tbody tr:last-child { border-bottom: 0; }

    .tz-conta-tabela td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 8px 18px;
        border-bottom: 0;
        text-align: right;
    }

    .tz-conta-tabela td[data-rotulo]::before {
        content: attr(data-rotulo);
        flex: 0 0 auto;
        color: #A2988A;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .09em;
        text-align: left;
        text-transform: uppercase;
    }

    .tz-conta-tabela tfoot td { padding: 6px 18px; }
}

/* Celulas vazias de alinhamento do rodape da tabela: no
   celular, onde a linha vira bloco, elas viravam faixas em
   branco entre os totais. */
@media (max-width: 768px) {
    .tz-conta-esconde-celular { display: none !important; }
}

/* ============================================================
   9. CABECALHO DE LISTAGEM — categoria E busca

   Estas regras moravam num <style> dentro do category.twig.
   Quando a busca passou a usar o mesmo wrapper .tz-category
   (25/08), ela herdou as CLASSES mas nao as REGRAS: a `.tz-bc`
   nao existe em lugar nenhum do stylesheet.css, entao o
   caminho de navegacao voltou a ser uma <ul> com bolinha e o
   titulo saiu preto e a esquerda.

   Agora moram aqui, num lugar so, e valem para as duas telas.
   O <style> do category.twig foi removido junto — dois donos
   da mesma regra e como o bug volta.
   ============================================================ */
.tz-category {
    padding-bottom: 80px;
    background: #fff;
    color: var(--tz-ink, #2E2A26);
    font-family: 'Questrial', sans-serif;
}

.tz-cat-head {
    padding: 34px 20px 6px;
    text-align: center;
}

.tz-cat-head .tz-bc {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.tz-cat-head .tz-bc a {
    color: var(--tz-ink-soft, #9A9082);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.tz-cat-head h1 {
    margin: 0;
    color: var(--tz-peach, #F39C44);
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    text-wrap: balance;
}

/* O #content h1 do stylesheet.css e ID + !important; sem repetir
   o escopo o titulo da busca volta a sair preto e a esquerda. */
#content .tz-cat-head h1,
.tz-category .tz-cat-head h1 {
    color: var(--tz-peach, #F39C44) !important;
    font-family: 'Playfair Display', serif !important;
    text-align: center !important;
    text-transform: none !important;
}

.tz-cat-desc {
    max-width: 1000px;
    margin: 14px auto 0;
    color: #5b5347;
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.tz-cat-desc p { margin: 0 0 10px; font-family: 'Questrial', sans-serif !important; }
.tz-cat-desc a { color: var(--tz-peach-dark, #E0851F); }

.tz-cat-desc h1,
.tz-cat-desc h2,
.tz-cat-desc h3 {
    color: var(--tz-peach, #F39C44) !important;
    font-family: 'Playfair Display', cursive !important;
}

.tz-cat-modules { max-width: 1180px; margin: 0 auto; }

/* ============================================================
   TZ v85 — cartao da categoria/busca com a cara da home
   A home usa .product-thumb (tz-cards.css) e a categoria usa
   .tz-card. Eram dois desenhos: a categoria centralizava o
   texto, punha preco preto de 18px e separava os cards por
   22px em toda volta. Aqui o .tz-card passa a repetir os
   valores medidos no card da home: texto a esquerda, preco
   laranja, e o mesmo vao (10px na horizontal, 18px na
   vertical no celular).
   ============================================================ */

.tz-grid,
.tz-category .tz-grid { gap: 26px 18px !important; }

.tz-card,
.tz-category .tz-card { border-radius: 0 !important; }

.tz-card-img,
.tz-category .tz-card-img { border-radius: 0 !important; }

/* corpo do card: alinhado a esquerda e sem recuo lateral, como na home */
.tz-card-body { padding: 12px 0 0 !important; text-align: left !important; }
.tz-card-actions,
.tz-category .tz-card-actions { padding: 10px 0 0 !important; }

/* etiquetas de tamanho encostam na esquerda */
.tz-card-body .tz-sizes { justify-content: flex-start !important; }

/* nome: mesmo tamanho, cor e caixa de 2 linhas da home */
.tz-card-name {
  font-size: 12.5px !important;
  line-height: 18px !important;
  letter-spacing: .6px !important;
  font-weight: 400 !important;
  color: #6B6158 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 0 7px !important;
}
.tz-card-name:hover { color: #2D2520 !important; }

/* preco laranja, do mesmo tamanho da home */
.tz-card-price,
.tz-card .tz-price-new {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #E0851F !important;
}
.tz-card .tz-price-old {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #A79C90 !important;
}
.tz-card .tz-parcelas {
  display: block;
  margin-top: 4px;
  font-family: 'Questrial', sans-serif;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .2px;
  color: #8C8279;
}

@media (max-width: 576px) {
  .tz-grid,
  .tz-category .tz-grid { gap: 18px 10px !important; }

  .tz-card-name {
    font-size: 11.5px !important;
    line-height: 16px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    margin: 0 0 5px !important;
  }
  .tz-card-price,
  .tz-card .tz-price-new { font-size: 15px !important; }
  .tz-card .tz-parcelas { font-size: 10.5px; margin-top: 3px; }
}

/* ============================================================
   TZ v86 — foto do card em pé (3:4)
   As fotos de origem sao quadradas (1600x1600), entao o quadro
   vertical corta as laterais (12,5% de cada lado) em vez de
   deixar tarja. 3:4 foi o limite testado: em 9:16 a manga do
   macacao sai do quadro. Vale para a home (.product-thumb) e
   para categoria/busca (.tz-card).
   ============================================================ */

.tz-card-img,
.tz-category .tz-card-img { aspect-ratio: 3/4 !important; }

#common-home .product-thumb .image { aspect-ratio: 3/4 !important; }
#common-home .product-thumb .image > a { display: block; width: 100%; height: 100%; }
#common-home .product-thumb .image > a > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ============================================================
   TZ v87 — alinhar cards com e sem etiqueta de tamanho
   Produto sem grade (manta, saida de maternidade) nao imprime
   o .tz-sizes, entao nome, preco e botao subiam 30px e
   desalinhavam contra o vizinho que tem tamanho. Aqui a linha
   das etiquetas vira altura reservada: quem tem, ocupa; quem
   nao tem, ganha o mesmo espaco em branco.
   ============================================================ */

.product-thumb .caption > .tz-sizes,
.tz-card-body > .tz-sizes { min-height: 22px !important; margin-bottom: 8px !important; }

#common-home .product-carousel-rows .item .product-thumb .caption > h4:first-child,
.product-thumb .caption > h4:first-child { margin-top: 30px !important; }

.tz-card-body > .tz-card-name:first-child { margin-top: 30px !important; }

/* ============================================================
   TZ v88 — mesmo card em toda a loja
   O tz-cards.css so alcanca a home (#common-home). Relacionados
   do produto, /promocoes e qualquer outra grade de
   .product-thumb ficavam com o desenho velho: nome preto
   grande, preco preto, texto centralizado. Aqui as mesmas
   medidas valem em todo .product-thumb.
   ============================================================ */

.product-thumb .caption { text-align: left !important; align-items: flex-start !important; }

.product-thumb .caption h4,
.product-thumb .caption h4 a {
  font-size: 12.5px !important;
  line-height: 18px !important;
  letter-spacing: .6px !important;
  font-weight: 400 !important;
  color: #6B6158 !important;
}
.product-thumb .caption h4 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 0 7px !important;
}
.product-thumb:hover .caption h4 a { color: #2D2520 !important; }

.product-thumb .caption .price {
  margin: 0 !important;
  min-height: 0 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: #E0851F !important;
  justify-content: flex-start !important;
  align-items: baseline !important;
  gap: 8px !important;
}
.product-thumb .caption .price-old {
  font-size: 13px !important;
  color: #A79C90 !important;
  font-weight: 400 !important;
}
.product-thumb .tz-parcelas {
  display: block;
  margin-top: 4px;
  font-family: 'Questrial', sans-serif;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .2px;
  color: #8C8279;
}

/* foto em pe tambem fora da home */
.product-thumb .image { aspect-ratio: 3/4 !important; overflow: hidden; }
.product-thumb .image > a { display: block; width: 100%; height: 100%; }
.product-thumb .image > a > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 576px) {
  .product-thumb .caption h4,
  .product-thumb .caption h4 a { font-size: 11.5px !important; line-height: 16px !important; }
  .product-thumb .caption h4 {
    height: 32px !important; min-height: 32px !important; max-height: 32px !important;
    margin: 0 0 5px !important;
  }
  .product-thumb .caption .price { font-size: 15px !important; }
  .product-thumb .tz-parcelas { font-size: 10.5px; margin-top: 3px; }
}

/* ============================================================
   TZ v89 — relacionados sem teto
   O stylesheet.css escondia por CSS tudo depois do 8º card no
   desktop (6 no tablet, 4 no celular). O controller ja entrega
   40; aqui os 40 aparecem e a pessoa rola.
   ============================================================ */
.related-products .product-grid-inv > .product-thumb:nth-child(n+5),
.related-products .product-grid-inv > .product-thumb:nth-child(n+7),
.related-products .product-grid-inv > .product-thumb:nth-child(n+9) { display: block !important; }

/* ============================================================
   TZ v90 — filtro fora da tela na busca
   A busca não tem coluna lateral. O BrainyFilter entra só para
   alimentar a barra "Tamanho" e receber o clique, então fica
   fora da tela — nunca some com display:none, senão o filtro
   não mede nada e as pílulas não aparecem.
   ============================================================ */
.tz-filtro-fonte {
  position: absolute !important;
  left: -9999px !important;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   TZ v91 — hover nas bolinhas do "Compre por tamanho" da home
   O bloco e um modulo HTML com estilo inline (nao tem classe),
   entao a regra mira pelo href e precisa de !important para
   vencer o style= do proprio link. Mesmo movimento das pilulas
   de dentro da loja: escurece, sobe 2px e ganha sombra.
   ============================================================ */
#common-home a[href*="bfilter=o11:"] {
  box-shadow: 0 4px 12px rgba(243, 156, 68, .3);
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#common-home a[href*="bfilter=o11:"]:hover,
#common-home a[href*="bfilter=o11:"]:focus {
  background: #E0851F !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(224, 133, 31, .38);
}

#common-home a[href*="bfilter=o11:"]:focus-visible {
  outline: 2px solid #A96A1C;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  #common-home a[href*="bfilter=o11:"] { transition: none; }
  #common-home a[href*="bfilter=o11:"]:hover,
  #common-home a[href*="bfilter=o11:"]:focus { transform: none; }
}
