.product-item-card-preview {
  padding: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;

  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    height: 1px;
    background: #F1F1F1;
  }

  &:last-child {
    &::before {
      display: none;
    }
  }

  .product-item-card-preview-cover {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
  }

  .product-item-card-preview-content {
    flex: 1;

    .product-item-card-preview-title {
      color: var(--text-text-1, #1B1B1B);


      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 20px;
    }

  }

  .product-item-card-preview-close-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;

    .product-item-card-close {
      font-size: 30px;

    }
  }


}