.preco-produto > :nth-child(3)  {
    color: #ffffff;
}

/* Esconde o código do produto */
.produto-info ul li:nth-child(1) {
  display: none !important;
}

/* Esconde o estoque */
.produto-info ul li:nth-child(2) {
  display: none !important;
}

/* Esconde o texto antes do <strong> com pseudo-elemento */
.produto-info ul li:nth-child(4) span::before {
  content: "";
  display: none;
}

/* Esconde visualmente o texto direto do span (grade inteira) */
.produto-info ul li:nth-child(4) span {
  font-size: 0 !important;
  color: transparent !important;
}

/* Reexibe o tamanho escolhido no <strong> */
.produto-info ul li:nth-child(4) span strong {
  font-size: 14px !important;
  color: inherit !important;
  display: inline !important;
}

/* Repete para mini carrinho se usar mesma estrutura */
.mini-cart .produto-info ul li:nth-child(1),
.mini-cart .produto-info ul li:nth-child(2) {
  display: none !important;
}

.mini-cart .produto-info ul li:nth-child(4) span::before {
  content: "";
  display: none;
}

.mini-cart .produto-info ul li:nth-child(4) span {
  font-size: 0 !important;
  color: transparent !important;
}

.mini-cart .produto-info ul li:nth-child(4) span strong {
  font-size: 14px !important;
  color: inherit !important;
  display: inline !important;
}
