.loop-item {
  position: relative;

  .product-wishlist {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
  }

  .loop-item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
  }

  .thumbnail {
    border-radius: 30px;
    display: flex;
    height: 300px;
    background: linear-gradient(#441a0a 0%, #000 100%);
    width: 100%;
    padding: 50px 20px 20px 20px;
    transition: 0.3s ease-in-out;
    position: relative;
    .product-flags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      position: absolute;
      left: 20px;
      top: 20px;
      img {
        width: 25px;
        height: 25px;
      }
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      text-align: center;
    }
  }

  .title {
    min-height: 100px;
  }

  .loop-item-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;

    a {
      width: 100%;

      button {
        width: 100%;
      }
    }
  }
}
