/* Divi kosár ikon lecserélése talicskára */
.et-cart-info {
    display: inline-block;
    width: 40px;  /* ikon szélessége */
    height: 40px; /* ikon magassága */
    background-image: url('https://equusline-transylvania.ro/wp-content/uploads/2026/02/wheelbarrow-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px; /* elrejti a szöveget */
}

/* Hover-effekt */
.et-cart-info:hover {
    transform: translateY(-3px);
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: brightness(1.2);
}
@media (max-width: 980px) {
  .et-cart-info {
    display: inline-block;
    visibility: visible;
  }

  .et-cart-info::after {
    content: "";
    display: block;
    width: 42px;
    height: 42px;
    background-image: url("https://equusline-transylvania.ro/wp-content/uploads/2026/02/wheelbarrow-2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}