/* ========== SLIDER SUPERIOR ========== */

.zscustom-slider-heading {
    background: transparent !important;
    padding: 10px 5px !important;
    text-align: left !important;
    padding-left: 5px !important;
}

.zscustom-slider-heading h2,
.zscustom-slider-heading p {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 900 !important;
    line-height: 0.95 !important;
    margin: 2px 0 !important;
    letter-spacing: -2px !important;
    font-stretch: expanded !important;
}

.zscustom-slider-heading h2 {
    font-size: 48px !important;
}

.zscustom-slider-heading a {
    padding-left: 30px !important;
}



/* ========== WEBFORM DE ABAJO (BOLETÍN) ========== */

/* Boletín Final Tuned */
.zsfooter-newsletter {
  background: #eef1f4;
  padding: 32px 24px;
  max-width: 640px;
  margin: 0 auto;
}

/* Título */
.zsfooter-newsletter h1,
.zsfooter-newsletter h2,
.zsfooter-newsletter h3 {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #111;
}

/* Formulario alineado */
.zsfooter-newsletter form,
.zsfooter-newsletter .newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
  margin-left: 0px;
}

/* Input largo y limpio */
.zsfooter-newsletter input[type="email"],
.zsfooter-newsletter input[type="text"] {
  flex: 1;
  width: 120%;
  max-width: 500px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #111;
  padding: 10px 6px 8px 0;
  font-size: 16px;
  color: #111;
  outline: none;
}

/* Placeholder */
.zsfooter-newsletter ::placeholder {
  color: #7a7a7a;
}

/* Botón limpio */
.zsfooter-newsletter button,
.zsfooter-newsletter input[type="submit"],
.zsfooter-newsletter .btn,
.zsfooter-newsletter .zform-submit {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #111 !important;
  padding: 0 6px;
  line-height: 1;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease;
}

/* Hover botón boletín */
.zsfooter-newsletter button:hover,
.zsfooter-newsletter input[type="submit"]:hover {
  transform: translateX(3px);
}

/* Responsive boletín */
@media (max-width: 560px) {
  .zsfooter-newsletter form {
    margin-left: 0;
    flex-direction: row;
  }
}



/* ========== PRODUCTOS (SOLO ELEVACIÓN, SIN ROMPER EL TEMA) ========== */

/* Contenedor principal del producto: pequeño efecto de elevación */
.theme-prod-box {
  position: relative;
  transition: transform 0.3s ease;
}

/* Elevación suave en hover, sin tocar overlays del tema */
.theme-prod-box:hover {
  transform: translateY(-5px);
}



/* ========== HOVER DE IMAGEN PERSONALIZADA SOLO PARA UN PRODUCTO ========== */
/* Veland Artesanal 200G (ajusta el ID si es otro) */

/* 1. Preparamos el contenedor de la imagen */
.theme-product-ratio 
  .theme-prod-box.theme-product-list-style-01[data-zs-product-id="7482676000000429058"]
  .theme-prod-img-container {
    position: relative;
    overflow: hidden;
}

/* 2. Capa con la imagen de hover (navideña o la que quieras) */
.theme-product-ratio 
  .theme-prod-box.theme-product-list-style-01[data-zs-product-id="7482676000000429058"]
  .theme-prod-img-container::after {
    content: "";
    position: absolute;
    inset: 0;                           /* top/right/bottom/left = 0 */
    background-size: cover;
    background-position: center;
    background-image: url("http://www.veland.mx//Im%C3%A1genes%20Sitio%20Web/Navidad%20en%20familia%20SKU.png");
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

/* 3. En hover mostramos la imagen nueva y escondemos la original */
.theme-product-ratio 
  .theme-prod-box.theme-product-list-style-01[data-zs-product-id="7482676000000429058"]
  .theme-prod-img-container:hover::after {
    opacity: 1;
}

.theme-product-ratio 
  .theme-prod-box.theme-product-list-style-01[data-zs-product-id="7482676000000429058"]
  .theme-prod-img-container:hover img {
    opacity: 0;
    transition: opacity 0.35s ease;
}
