/* ===== Vineta Actions – FitAccesorios ===== */

/* Contenedor de los iconos flotantes */
.vineta-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9;
}

/* Aseguramos posición relativa del producto por si acaso */
.products li.product {
  position: relative;
}

/* Botones circulares blancos */
.vineta-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  text-decoration: none;
  color: #111111;
}

/* Iconos SVG dentro del círculo */
.vineta-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Corazón rojo */
.vineta-btn--wishlist svg {
  fill: red;
}

/* Hover suave */
.vineta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

/* Ocultar el botón "Vista rápida" original de YITH, pero dejarlo en el DOM */
.products .button.yith-wcqv-button {
  display: none !important;
}


/* Contenedor oculto con el botón real de YITH */
.vineta-wl-hit {
  display: none!important; /* no afecta, sólo oculta el HTML extra */
}

.vineta-wl-icon svg {
  display: block;
}
