:root {
  --cor_primaria: #ca3434;
  --cor_secundaria: #444;
  --cor_botao: #ca3434;
  --cor_botao_hover: #444;
  --cor_texto_botao: #fff;
  --cor_titulos: #000;
  --cor_texto_botao_hover: #fff;
  --cor_botao_comprar: #31b15f;
  --pre_cabecalho: #ca3434;
  --cor_texto_pre_cabecalho: #fff;
  --cor_cabecalho: #ffffff;
  --cor_icones: #ca3434;
  --cor_icones_hover: #444;
  --cor_texto_icones: #444;
  --cor_menu: #ca3434;
  --cor_texto_menu: #fff;
  --cor_newsletter: #ca3434;
  --cor_footer: #fff;
  --cor_texto_footer: #444;
  --cor_tag_frete_gratis: #444;
  --texto_global: #444;
  --texto_background: #ffffff;
}

/* Corrigido nome do produto */
.listagem .listagem-item .nome-produto {
  display: block;
  max-height: none !important;
  min-height: none !important;
  width: 100%;
}

/* Estilo da footer padrão */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background-color: #f8f8f8;
}

/* BLOCO MOBILE-ONLY: frase + logos de pagamento */
@media (max-width: 768px) {
  .mobile-payment-title {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #ca3434;
    margin: 20px 10px 10px 10px;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
  }

  .mobile-only img {
    height: 30px;
    object-fit: contain;
  }
}

/* ESCONDE EM TELAS MAIORES */
@media (min-width: 769px) {
  .mobile-only,
  .mobile-payment-title {
    display: none;
  }
}

<style>
  .custom-footer {
    background-color: #f8f8f8;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    color: #444;
    text-align: center;
  }

  .custom-footer h3 {
    color: #b22222;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .payment-icons img {
    height: 30px;
    object-fit: contain;
  }

  .location-block {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .location-block strong {
    display: block;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
  }

  .copyright {
    font-size: 13px;
    color: #777;
    margin-top: 20px;
  }

  /* Oculta o rodapé padrão da Loja Integrada */
  .footer .container {
    display: none !important;
  }
</style>