.esc-sticky{
  position:fixed;
  left:0; right:0;
  padding:8px 12px;
  pointer-events:auto;
  display:none; /* oculto por defecto */
}
.esc-sticky.esc-fixed{ /* visible */
  display:block; /* aparece al superar umbral */
  transform:translateY(0);
  opacity:1;
  transition:transform .2s ease, opacity .2s ease;
}
.esc-sticky.esc-hidden{ /* oculto */
  display:none;
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
}
#stikycarrito{
  background:none;
  box-shadow:none;
  border-radius:8px;
  width:100%;
  max-width:1391px;
  margin:0 auto;
}

/* Ocultar en móviles/tablet <= 991px como refuerzo visual inmediato */
@media (max-width: 991px){
  #stikycarrito{
  background:none;
  box-shadow:none;
  border-radius:8px;
  width:100%;
  max-width:1391px;
  margin:0 auto;
}
}
