/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 03 2025 | 15:33:22 */
/* ===== FORÇAR OVERLAY DOURADO (alto impacto, seguro) ===== */
body.home img,
body img,
.site img,
img {
  /* garante imagens com boa saturação antes do overlay */
  -webkit-filter: saturate(1.6) contrast(1.05) brightness(1.02) !important;
  filter: saturate(1.6) contrast(1.05) brightness(1.02) !important;
}

/* cria wrapper overlay para qualquer elemento que contenha imagem */
body.home .golden-forced-wrapper,
body .golden-forced-wrapper,
.golden-forced-wrapper {
  position: relative !important;
  overflow: hidden !important;
}

/* se o tema não tem wrapper, aplicamos overlay diretamente em containers comuns */
body.home .post img::after,
body.home .product img::after,
body.home .card img::after,
body.home .course-thumb::after,
.post img::after,
.product img::after,
.card img::after,
.course-thumb::after {
  /* fallback: alguns navegadores não permitem ::after em img, então abaixo temos JS também */
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(120deg, rgba(255,215,64,0.96) 0%, rgba(255,200,50,0.94) 30%, rgba(255,186,24,0.90) 60%, rgba(255,223,77,0.92) 100%) !important;
  mix-blend-mode: color !important;
  opacity: 0.94 !important;
  z-index: 2 !important;
}

/* garante botões e badges sempre acima do overlay */
button, .button, a.button, .add_to_cart_button, .course-actions .btn, .product .button, .badge, .price {
  position: relative !important;
  z-index: 9999 !important;
}

/* Proteção: se o overlay ocultar algo, diminua a opacidade */
body.home .golden-force-soft { opacity: 0.85 !important; }

/* Força display em botões caso tenham sido escondidos */
button, a.button, .btn, .add_to_cart_button { display: inline-block !important; visibility: visible !important; opacity: 1 !important; }
