/**
 * Hide product features tab (#product-details-tab) on desktop.
 * The tab pane exists in DOM but has no tab header — customer doesn't want it visible.
 */
@media (min-width: 576px) {
    #product-details-tab {
        display: none;
    }
}
/*@keyframes highlightProduct {
  0% {
    outline: 5px solid #ff0000;
    background: rgba(255, 0, 0, 0.2);
  }
  100% {
    outline: 2px solid transparent;
    background: transparent;
  }
}

.js-remember-target {
  animation: highlightProduct 2s ease forwards;
}*/


.js-remember-target::before {
  content: "Dernier produit vu";
  position: absolute;
  top: 0;
  left: 0;
  background: #ff0000;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  z-index: 10;
}