/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 03 2025 | 15:33:55 */
<script>
(function(){
  var css = `
/* CSS injetado por JS — efeito dourado seguro */
.golden-js-thumb{ position:relative !important; overflow:hidden !important; }
.golden-js-thumb img{ filter: saturate(1.6) contrast(1.05) brightness(1.02) !important; transition: transform .3s ease !important; }
.golden-js-thumb::after{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(120deg, rgba(255,215,64,0.95) 0%, rgba(255,200,50,0.92) 30%, rgba(255,186,24,0.88) 60%, rgba(255,223,77,0.90) 100%);
  mix-blend-mode: color; opacity:0.92; z-index:2;
}
button, .button, a.button, .add_to_cart_button { position:relative !important; z-index:9999 !important; }
`;
  var style = document.createElement('style');
  style.type = 'text/css';
  style.appendChild(document.createTextNode(css));
  document.head.appendChild(style);

  // Adiciona classe .golden-js-thumb aos elementos que contenham imagens de produto (heurística)
  var possible = document.querySelectorAll('article, .card, .product, .course, .woocommerce ul.products li, .post');
  possible.forEach(function(el){
    // se tiver imagem como filho direto/descendente, marca
    if(el.querySelector('img')) el.classList.add('golden-js-thumb');
  });
})();
</script>

