/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 03 2025 | 15:34:27 */
function meu_estilo_dourado() {
  wp_register_style('golden-style', false);
  wp_enqueue_style('golden-style');
  $custom_css = "
    .golden-php-thumb{ position:relative; overflow:hidden; }
    .golden-php-thumb img{ filter: saturate(1.6) contrast(1.05) brightness(1.02); }
    .golden-php-thumb::after{ content:''; position:absolute; inset:0; pointer-events:none; background: linear-gradient(120deg, rgba(255,215,64,0.95), rgba(255,186,24,0.88)); 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; }
  ";
  wp_add_inline_style('golden-style', $custom_css);
}
add_action('wp_enqueue_scripts', 'meu_estilo_dourado', 99);
