.elementor-265 .elementor-element.elementor-element-5dab032{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-265 .elementor-element.elementor-element-56fddec{background-color:#F3EFAF;}@media(min-width:768px){.elementor-265 .elementor-element.elementor-element-5dab032{--content-width:500px;}}/* Start custom CSS for image, class: .elementor-element-56fddec */.producto-especial {
  position: relative;
  overflow: hidden;
}

/* Overlay degradado */
.producto-especial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(243, 239, 175, 0.6), rgba(242, 41, 91, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
  pointer-events: none; /* 🔑 permite que el clic pase al link */
}

/* Hover activa el degradado */
.producto-especial:hover::after {
  opacity: 1;
}

/* Título del producto */
.producto-especial + .product-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  transition: color 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

/* Hover cambia el color del título */
.producto-especial:hover + .product-title {
  color: #F2295B;
}/* End custom CSS */